From 20fb21ac504d1ecd8669d2492f3850aceee0cd8e Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Tue, 18 Aug 2026 21:11:43 -0400 Subject: [PATCH 1/8] Add game plugin registry, installs and game modes --- generated/schema.graphql | 5572 +- generated/schema.ts | 29752 +++--- generated/types.ts | 88031 +++++++++------- hasura/enums/game-modes.sql | 48 + hasura/enums/game-plugin-channels.sql | 4 + hasura/enums/game-plugin-install-statuses.sql | 7 + hasura/enums/game-plugin-kinds.sql | 5 + .../functions/game-plugins/install_state.sql | 76 + .../functions/game-plugins/mode_runtimes.sql | 59 + .../functions/leaderboard/get_leaderboard.sql | 9 + hasura/functions/match/match_player_elo.sql | 8 + hasura/metadata/actions.graphql | 66 + hasura/metadata/actions.yaml | 48 + .../default/tables/public_custom_pages.yaml | 10 + .../tables/public_e_game_plugin_channels.yaml | 19 + ...public_e_game_plugin_install_statuses.yaml | 19 + .../tables/public_e_game_plugin_kinds.yaml | 19 + .../tables/public_game_mode_plugins.yaml | 127 + .../default/tables/public_game_modes.yaml | 280 + .../tables/public_game_plugin_installs.yaml | 49 + .../tables/public_game_plugin_versions.yaml | 174 + .../default/tables/public_game_plugins.yaml | 321 + .../public_game_server_node_plugins.yaml | 77 + .../tables/public_game_server_nodes.yaml | 8 + .../default/tables/public_match_options.yaml | 6 + .../default/tables/public_matches.yaml | 2 + .../default/tables/public_servers.yaml | 10 + .../databases/default/tables/tables.yaml | 9 + .../down.sql | 3 + .../1878000000000_game_plugin_registry/up.sql | 58 + .../down.sql | 3 + .../1878000000100_game_plugin_installs/up.sql | 46 + .../default/1878000000200_game_modes/down.sql | 2 + .../default/1878000000200_game_modes/up.sql | 44 + .../down.sql | 7 + .../up.sql | 9 + .../1878000000400_servers_game_mode/down.sql | 13 + .../1878000000400_servers_game_mode/up.sql | 19 + .../down.sql | 2 + .../up.sql | 5 + .../down.sql | 4 + .../1878000000600_game_plugin_desired/up.sql | 27 + .../down.sql | 2 + .../up.sql | 6 + .../down.sql | 4 + .../up.sql | 14 + .../down.sql | 6 + .../up.sql | 9 + .../down.sql | 5 + .../up.sql | 9 + hasura/triggers/game_modes.sql | 136 + hasura/triggers/match_options.sql | 9 + package.json | 1 - src/app.module.spec.ts | 76 + src/app.module.ts | 2 + .../dedicated-servers.module.ts | 2 + .../dedicated-servers.service.ts | 32 +- src/draft-games/draft-game.service.ts | 1 + src/game-plugins/enums/GamePluginQueues.ts | 4 + src/game-plugins/game-modes.service.spec.ts | 104 + src/game-plugins/game-modes.service.ts | 225 + src/game-plugins/game-plugins.controller.ts | 173 + src/game-plugins/game-plugins.module.ts | 67 + src/game-plugins/game-plugins.service.ts | 872 + .../jobs/CheckGamePluginUpdates.ts | 95 + .../jobs/SyncGamePluginRegistry.ts | 25 + src/game-plugins/types/Registry.ts | 47 + .../game-server-node.controller.ts | 44 + .../game-server-node.module.ts | 2 + .../game-server-node.service.ts | 11 +- src/hasura/metadata-permissions.spec.ts | 70 + src/k8s/logging/bootDiagnostics.spec.ts | 2 +- .../match-assistant.service.spec.ts | 3 + .../match-assistant.service.ts | 31 +- src/matches/matches.controller.spec.ts | 1 + src/matches/matches.controller.ts | 22 + src/matches/matches.module.ts | 2 + .../push/push-notifications.service.spec.ts | 3 +- .../push/push-notifications.service.ts | 6 +- src/system/enums/SystemSettingName.ts | 3 + src/telemetry/telemetry.service.ts | 124 +- src/telemetry/types/TelemetryPayload.ts | 28 +- src/utilities/QueueProcessors.ts | 1 + test/app.e2e-spec.ts | 16 - test/game-modes.spec.ts | 594 + test/game-plugin-install-state.spec.ts | 142 + test/jest-e2e.json | 9 - test/utils/fixtures.ts | 6 +- 88 files changed, 75452 insertions(+), 52651 deletions(-) create mode 100644 hasura/enums/game-modes.sql create mode 100644 hasura/enums/game-plugin-channels.sql create mode 100644 hasura/enums/game-plugin-install-statuses.sql create mode 100644 hasura/enums/game-plugin-kinds.sql create mode 100644 hasura/functions/game-plugins/install_state.sql create mode 100644 hasura/functions/game-plugins/mode_runtimes.sql create mode 100644 hasura/metadata/databases/default/tables/public_e_game_plugin_channels.yaml create mode 100644 hasura/metadata/databases/default/tables/public_e_game_plugin_install_statuses.yaml create mode 100644 hasura/metadata/databases/default/tables/public_e_game_plugin_kinds.yaml create mode 100644 hasura/metadata/databases/default/tables/public_game_mode_plugins.yaml create mode 100644 hasura/metadata/databases/default/tables/public_game_modes.yaml create mode 100644 hasura/metadata/databases/default/tables/public_game_plugin_installs.yaml create mode 100644 hasura/metadata/databases/default/tables/public_game_plugin_versions.yaml create mode 100644 hasura/metadata/databases/default/tables/public_game_plugins.yaml create mode 100644 hasura/metadata/databases/default/tables/public_game_server_node_plugins.yaml create mode 100644 hasura/migrations/default/1878000000000_game_plugin_registry/down.sql create mode 100644 hasura/migrations/default/1878000000000_game_plugin_registry/up.sql create mode 100644 hasura/migrations/default/1878000000100_game_plugin_installs/down.sql create mode 100644 hasura/migrations/default/1878000000100_game_plugin_installs/up.sql create mode 100644 hasura/migrations/default/1878000000200_game_modes/down.sql create mode 100644 hasura/migrations/default/1878000000200_game_modes/up.sql create mode 100644 hasura/migrations/default/1878000000300_match_options_game_mode/down.sql create mode 100644 hasura/migrations/default/1878000000300_match_options_game_mode/up.sql create mode 100644 hasura/migrations/default/1878000000400_servers_game_mode/down.sql create mode 100644 hasura/migrations/default/1878000000400_servers_game_mode/up.sql create mode 100644 hasura/migrations/default/1878000000500_game_plugins_pairs_with/down.sql create mode 100644 hasura/migrations/default/1878000000500_game_plugins_pairs_with/up.sql create mode 100644 hasura/migrations/default/1878000000600_game_plugin_desired/down.sql create mode 100644 hasura/migrations/default/1878000000600_game_plugin_desired/up.sql create mode 100644 hasura/migrations/default/1878000000700_game_plugin_always_load/down.sql create mode 100644 hasura/migrations/default/1878000000700_game_plugin_always_load/up.sql create mode 100644 hasura/migrations/default/1878000000800_matches_counts_toward_ranking/down.sql create mode 100644 hasura/migrations/default/1878000000800_matches_counts_toward_ranking/up.sql create mode 100644 hasura/migrations/default/1878000000900_game_mode_runtime_derived/down.sql create mode 100644 hasura/migrations/default/1878000000900_game_mode_runtime_derived/up.sql create mode 100644 hasura/migrations/default/1878000001000_servers_loaded_plugins/down.sql create mode 100644 hasura/migrations/default/1878000001000_servers_loaded_plugins/up.sql create mode 100644 hasura/triggers/game_modes.sql create mode 100644 src/app.module.spec.ts create mode 100644 src/game-plugins/enums/GamePluginQueues.ts create mode 100644 src/game-plugins/game-modes.service.spec.ts create mode 100644 src/game-plugins/game-modes.service.ts create mode 100644 src/game-plugins/game-plugins.controller.ts create mode 100644 src/game-plugins/game-plugins.module.ts create mode 100644 src/game-plugins/game-plugins.service.ts create mode 100644 src/game-plugins/jobs/CheckGamePluginUpdates.ts create mode 100644 src/game-plugins/jobs/SyncGamePluginRegistry.ts create mode 100644 src/game-plugins/types/Registry.ts create mode 100644 src/hasura/metadata-permissions.spec.ts delete mode 100644 test/app.e2e-spec.ts create mode 100644 test/game-modes.spec.ts create mode 100644 test/game-plugin-install-state.spec.ts delete mode 100644 test/jest-e2e.json diff --git a/generated/schema.graphql b/generated/schema.graphql index ccb43cf89..e3386c1fa 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -479,6 +479,13 @@ type PendingMatchImportActionOutput { success: Boolean! } +type PluginReadmeOutput { + content: String + format: String + repo: String + url: String +} + type PodStats { cpu: CpuStat memory: MemoryStat @@ -486,6 +493,12 @@ type PodStats { node: String! } +type PreviewGameModeOutput { + cfg: String + enabledPlugins: String! + extraGameParams: String +} + type PreviewTournamentMatchResetOutput { impacts: [TournamentMatchResetImpact!]! } @@ -531,6 +544,10 @@ type RecomputeEloStatusOutput { total: Int! } +type ReconcileNodePluginsOutput { + detected: Int! +} + type ReindexStartedOutput { running: Boolean! success: Boolean! @@ -736,6 +753,11 @@ type SuccessOutput { success: Boolean! } +type SyncPluginRegistryOutput { + plugins: Int! + versions: Int! +} + type TableIOStat { cache_hit_ratio: Float heap_blks_hit: Int! @@ -808,6 +830,9 @@ type TelemetryFleetTotals { dedicatedServers: Int! eventTeams: Int! events: Int! + gameModes: Int! + gameModesEnabled: Int! + gameModesUnranked: Int! gameServerNodes: Int! gameServerNodesEnabled: Int! gameServerNodesOnline: Int! @@ -839,6 +864,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 +3932,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 +3994,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 +4013,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 +4071,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 +4090,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 +4108,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 +4149,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 +4203,9 @@ enum custom_pages_select_column { """column name""" nav_order + """column name""" + plugin_slug + """column name""" profile_tab_label @@ -4199,6 +4242,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 +4290,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 +4339,9 @@ enum custom_pages_update_column { """column name""" nav_order + """column name""" + plugin_slug + """column name""" profile_tab_label @@ -9258,6 +9306,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 +19850,2787 @@ 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 object relationship""" + map_pool: map_pools + map_pool_id: uuid + match_option_defaults( + """JSON select path""" + path: String + ): jsonb! + + """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 +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input game_modes_append_input { + match_option_defaults: jsonb +} + +""" +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 + map_pool: map_pools_bool_exp + map_pool_id: uuid_comparison_exp + match_option_defaults: jsonb_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 +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input game_modes_delete_at_path_input { + match_option_defaults: [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_modes_delete_elem_input { + match_option_defaults: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input game_modes_delete_key_input { + match_option_defaults: String +} + +""" +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 + map_pool: map_pools_obj_rel_insert_input + map_pool_id: uuid + match_option_defaults: jsonb + 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 + map_pool_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 + map_pool_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 + map_pool: map_pools_order_by + map_pool_id: order_by + match_option_defaults: 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! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input game_modes_prepend_input { + match_option_defaults: jsonb +} + +""" +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""" + map_pool_id + + """column name""" + match_option_defaults + + """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 + map_pool_id: uuid + match_option_defaults: jsonb + 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 + map_pool_id: uuid + match_option_defaults: jsonb + 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""" + map_pool_id + + """column name""" + match_option_defaults + + """column name""" + name + + """column name""" + slug + + """column name""" + updated_at +} + +input game_modes_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_modes_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_modes_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_modes_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_modes_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_modes_prepend_input + + """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! + 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 + 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 + 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 + 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""" + 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 + 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 + 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""" + 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_service: String + slug: 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_service: String_comparison_exp + slug: 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_service: String + slug: 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 + 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 + 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_service: order_by + slug: 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_service + + """column name""" + slug + + """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_service: String + slug: 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_service: String + slug: 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_service + + """column name""" + slug + + """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 +22700,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 +22972,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 +23096,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 +23135,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 +23169,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 +23200,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 +23234,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 +23310,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 +23436,9 @@ enum game_server_nodes_select_column { """column name""" pin_plugin_version + """column name""" + plugins_synced_at + """column name""" public_ip @@ -20158,6 +23567,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 +23753,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 +23902,9 @@ enum game_server_nodes_update_column { """column name""" pin_plugin_version + """column name""" + plugins_synced_at + """column name""" public_ip @@ -33702,6 +37116,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 +37204,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 +37248,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 +37287,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 +37316,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 +37384,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 +37418,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 +37431,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 +37467,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 +37526,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 +37590,9 @@ enum match_options_select_column { """column name""" default_models + """column name""" + game_mode_id + """column name""" halftime_pausematch @@ -34122,6 +37657,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 +37745,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 +37781,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 +37807,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 +37833,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 +37868,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 +37904,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 +37946,9 @@ enum match_options_update_column { """column name""" default_models + """column name""" + game_mode_id + """column name""" halftime_pausematch @@ -34364,6 +38036,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 +38062,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 +38088,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 +39300,7 @@ type matches { A computed field, executes function "get_match_connection_string" """ connection_string: String + counts_toward_ranking: Boolean! created_at: timestamptz! """ @@ -36346,9 +40061,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 +40172,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 +40301,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 +40626,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 +40708,9 @@ enum matches_select_column { """column name""" cancels_at + """column name""" + counts_toward_ranking + """column name""" created_at @@ -37038,11 +40775,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 +40896,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 +40948,9 @@ enum matches_update_column { """column name""" cancels_at + """column name""" + counts_toward_ranking + """column name""" created_at @@ -38001,6 +41759,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 +42344,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 +43616,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 +44196,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 +45186,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 +47344,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 +47402,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 +47444,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 +47647,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 +48560,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 +49856,312 @@ 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( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_modes_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_modes_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_modes_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_modes_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_modes_prepend_input + + """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( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: game_modes_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: game_modes_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_modes_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: game_modes_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: game_modes_prepend_input + + """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 +52611,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 +52646,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 +77044,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 +79041,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 +80674,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 +80692,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 +85732,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 +85743,10 @@ type servers { id: uuid! is_dedicated: Boolean! label: String! + loaded_plugins( + """JSON select path""" + path: String + ): jsonb """An array relationship""" matches( @@ -80859,6 +85787,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 +85871,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 +85919,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 +85962,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 +86004,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 +86048,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 +86056,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 +86074,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 +86082,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 +86108,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 +86116,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 +86134,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 +86142,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 +86193,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 +86225,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 +86255,9 @@ enum servers_select_column { """column name""" game + """column name""" + game_mode_id + """column name""" game_server_node_id @@ -81290,6 +86273,9 @@ enum servers_select_column { """column name""" label + """column name""" + loaded_plugins + """column name""" max_players @@ -81302,6 +86288,9 @@ enum servers_select_column { """column name""" plugin_version + """column name""" + plugins_checked_at + """column name""" port @@ -81375,15 +86364,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 +86455,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 +86519,9 @@ enum servers_update_column { """column name""" game + """column name""" + game_mode_id + """column name""" game_server_node_id @@ -81539,6 +86537,9 @@ enum servers_update_column { """column name""" label + """column name""" + loaded_plugins + """column name""" max_players @@ -81551,6 +86552,9 @@ enum servers_update_column { """column name""" plugin_version + """column name""" + plugins_checked_at + """column name""" port @@ -81580,9 +86584,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 +89008,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 +91635,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 +93664,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 +93682,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..60071fa4c 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -452,6 +452,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 +468,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 +525,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 +675,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 +760,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 +794,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 +2009,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 +2054,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 +2066,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 +2086,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 +2108,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 +2140,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 +3973,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 +7484,4948 @@ 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 object relationship */ + map_pool: (map_pools | null) + map_pool_id: (Scalars['uuid'] | null) + match_option_defaults: Scalars['jsonb'] + /** 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) + map_pool_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) + map_pool_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' | 'map_pool_id' | 'match_option_defaults' | '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' | 'map_pool_id' | 'match_option_defaults' | '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'] + 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' | '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' | '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_service: (Scalars['String'] | null) + slug: 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) + 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) + 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_service' | 'slug' | '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_service' | 'slug' | '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' -} - - -/** select columns of table "league_divisions" */ -export type league_divisions_select_column = 'created_at' | 'id' | 'name' | 'tier' - - -/** aggregate stddev on columns */ -export interface league_divisions_stddev_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_stddev_fields' -} - - -/** aggregate stddev_pop on columns */ -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_divisions_stddev_samp_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_stddev_samp_fields' -} - - -/** aggregate sum on columns */ -export interface league_divisions_sum_fields { - tier: (Scalars['smallint'] | null) - __typename: 'league_divisions_sum_fields' + returning: game_server_node_plugins[] + __typename: 'game_server_node_plugins_mutation_response' } -/** update columns of table "league_divisions" */ -export type league_divisions_update_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 var_pop on columns */ -export interface league_divisions_var_pop_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_var_pop_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 var_samp on columns */ -export interface league_divisions_var_samp_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_var_samp_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 variance on columns */ -export interface league_divisions_variance_fields { - tier: (Scalars['Float'] | null) - __typename: 'league_divisions_variance_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' -/** columns and relationships of "league_match_weeks" */ -export interface league_match_weeks { - closes_at: Scalars['timestamptz'] - created_at: Scalars['timestamptz'] - default_match_at: Scalars['timestamptz'] - id: Scalars['uuid'] - league_season_id: Scalars['uuid'] - opens_at: Scalars['timestamptz'] +/** columns and relationships of "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 */ - season: league_seasons - week_number: Scalars['Int'] - __typename: 'league_match_weeks' + 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' } -/** aggregated selection of "league_match_weeks" */ -export interface league_match_weeks_aggregate { - aggregate: (league_match_weeks_aggregate_fields | null) - nodes: league_match_weeks[] - __typename: 'league_match_weeks_aggregate' +/** aggregated selection of "game_server_nodes" */ +export interface game_server_nodes_aggregate { + aggregate: (game_server_nodes_aggregate_fields | null) + nodes: game_server_nodes[] + __typename: 'game_server_nodes_aggregate' } -/** aggregate fields of "league_match_weeks" */ -export interface league_match_weeks_aggregate_fields { - avg: (league_match_weeks_avg_fields | null) +/** aggregate fields of "game_server_nodes" */ +export interface game_server_nodes_aggregate_fields { + avg: (game_server_nodes_avg_fields | null) count: Scalars['Int'] - max: (league_match_weeks_max_fields | null) - min: (league_match_weeks_min_fields | null) - stddev: (league_match_weeks_stddev_fields | null) - stddev_pop: (league_match_weeks_stddev_pop_fields | null) - stddev_samp: (league_match_weeks_stddev_samp_fields | null) - sum: (league_match_weeks_sum_fields | null) - var_pop: (league_match_weeks_var_pop_fields | null) - var_samp: (league_match_weeks_var_samp_fields | null) - variance: (league_match_weeks_variance_fields | null) - __typename: 'league_match_weeks_aggregate_fields' + max: (game_server_nodes_max_fields | null) + min: (game_server_nodes_min_fields | null) + stddev: (game_server_nodes_stddev_fields | null) + stddev_pop: (game_server_nodes_stddev_pop_fields | null) + stddev_samp: (game_server_nodes_stddev_samp_fields | null) + sum: (game_server_nodes_sum_fields | null) + var_pop: (game_server_nodes_var_pop_fields | null) + var_samp: (game_server_nodes_var_samp_fields | null) + variance: (game_server_nodes_variance_fields | null) + __typename: 'game_server_nodes_aggregate_fields' } /** aggregate avg on columns */ -export interface league_match_weeks_avg_fields { - week_number: (Scalars['Float'] | null) - __typename: 'league_match_weeks_avg_fields' +export interface game_server_nodes_avg_fields { + /** A computed field, executes function "available_node_server_count" */ + available_server_count: (Scalars['Int'] | null) + build_id: (Scalars['Float'] | null) + cpu_cores_per_socket: (Scalars['Float'] | null) + cpu_sockets: (Scalars['Float'] | null) + cpu_threads_per_core: (Scalars['Float'] | null) + csgo_build_id: (Scalars['Float'] | null) + demo_network_limiter: (Scalars['Float'] | null) + disk_available_gb: (Scalars['Float'] | null) + disk_used_percent: (Scalars['Float'] | null) + end_port_range: (Scalars['Float'] | null) + pin_build_id: (Scalars['Float'] | null) + shader_bake_progress: (Scalars['Float'] | null) + start_port_range: (Scalars['Float'] | null) + /** A computed field, executes function "total_node_server_count" */ + total_server_count: (Scalars['Int'] | null) + __typename: 'game_server_nodes_avg_fields' } -/** unique or primary key constraints on table "league_match_weeks" */ -export type league_match_weeks_constraint = 'league_match_weeks_league_season_id_week_number_key' | 'league_match_weeks_pkey' +/** unique or primary key constraints on table "game_server_nodes" */ +export type game_server_nodes_constraint = 'game_server_nodes_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' +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' - - -/** update columns of table "lobbies" */ -export type lobbies_update_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' -/** 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 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' } -/** 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_pop on columns */ +export interface league_seasons_stddev_pop_fields { + created_by_steam_id: (Scalars['Float'] | null) + default_best_of: (Scalars['Float'] | null) + direct_promote_count: (Scalars['Float'] | null) + direct_relegate_count: (Scalars['Float'] | null) + games_per_week: (Scalars['Float'] | null) + match_weeks_count: (Scalars['Float'] | null) + max_roster_size: (Scalars['Float'] | null) + min_roster_size: (Scalars['Float'] | null) + playoff_best_of: (Scalars['Float'] | null) + playoff_seats: (Scalars['Float'] | null) + promote_count: (Scalars['Float'] | null) + relegate_count: (Scalars['Float'] | null) + relegation_down_count: (Scalars['Float'] | null) + relegation_up_count: (Scalars['Float'] | null) + season_number: (Scalars['Float'] | null) + __typename: 'league_seasons_stddev_pop_fields' } -/** aggregate 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 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 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' +/** 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' } -/** unique or primary key constraints on table "lobby_players" */ -export type lobby_players_constraint = 'lobby_players_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' -} +/** 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 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' +/** 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' } -/** 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: lobby_players[] - __typename: 'lobby_players_mutation_response' +/** 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' } -/** select columns of table "lobby_players" */ -export type lobby_players_select_column = 'captain' | 'invited_by_steam_id' | 'lobby_id' | 'status' | 'steam_id' +/** 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' +} -/** 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' +/** 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' +} -/** 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' +/** 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 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 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 "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: league_team_movements[] + __typename: 'league_team_movements_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' /** 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' + tournament_team: (tournament_teams | null) + tournament_team_id: (Scalars['uuid'] | null) + __typename: 'league_team_seasons' } -/** aggregated selection of "match_clips" */ -export interface match_clips_aggregate { - aggregate: (match_clips_aggregate_fields | null) - nodes: match_clips[] - __typename: 'match_clips_aggregate' +/** aggregated selection of "league_team_seasons" */ +export interface league_team_seasons_aggregate { + aggregate: (league_team_seasons_aggregate_fields | null) + nodes: league_team_seasons[] + __typename: 'league_team_seasons_aggregate' } -/** aggregate fields of "match_clips" */ -export interface match_clips_aggregate_fields { - avg: (match_clips_avg_fields | null) +/** aggregate fields of "league_team_seasons" */ +export interface league_team_seasons_aggregate_fields { + avg: (league_team_seasons_avg_fields | null) count: Scalars['Int'] - max: (match_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) +export interface lobby_players_min_fields { + invited_by_steam_id: (Scalars['bigint'] | null) + lobby_id: (Scalars['uuid'] | null) steam_id: (Scalars['bigint'] | null) - __typename: 'match_lineup_players_min_fields' + __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) - size: (Scalars['Float'] | null) - tick_rate: (Scalars['Float'] | null) - total_ticks: (Scalars['Float'] | null) - __typename: 'match_map_demos_stddev_samp_fields' +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' } /** 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) +/** 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 */ - 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'] + captain: (v_match_captains | null) /** An object relationship */ - match: matches - /** An array relationship */ - match_clips: match_clips[] - /** An aggregate relationship */ - match_clips_aggregate: match_clips_aggregate - match_id: Scalars['uuid'] - /** An array relationship */ - objectives: player_objectives[] - /** An aggregate relationship */ - objectives_aggregate: player_objectives_aggregate - order: Scalars['Int'] - /** An array relationship */ - player_assists: player_assists[] - /** An aggregate relationship */ - player_assists_aggregate: player_assists_aggregate - /** An array relationship */ - player_damages: player_damages[] - /** An aggregate relationship */ - player_damages_aggregate: player_damages_aggregate - /** An array relationship */ - player_kills: player_kills[] - /** An aggregate relationship */ - player_kills_aggregate: player_kills_aggregate - /** An array relationship */ - player_unused_utilities: player_unused_utility[] - /** An aggregate relationship */ - player_unused_utilities_aggregate: player_unused_utility_aggregate - public_clips_count: Scalars['Int'] - public_latest_clip_at: (Scalars['timestamptz'] | null) - /** An array relationship */ - rounds: match_map_rounds[] - /** An aggregate relationship */ - rounds_aggregate: match_map_rounds_aggregate - started_at: (Scalars['timestamptz'] | null) - status: e_match_map_status_enum + 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 { +/** 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' + returning: match_map_veto_picks[] + __typename: 'match_map_veto_picks_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 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 "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 "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,605 +12435,1585 @@ 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' -} - - -/** 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_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 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" */ - 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) - /** delete single row from the table: "e_match_party_sources" */ - delete_e_match_party_sources_by_pk: (e_match_party_sources | null) - /** delete data from the table: "e_match_status" */ +/** 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) + /** 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) + /** delete single row from the table: "e_match_party_sources" */ + delete_e_match_party_sources_by_pk: (e_match_party_sources | null) + /** delete data from the table: "e_match_status" */ delete_e_match_status: (e_match_status_mutation_response | null) /** delete single row from the table: "e_match_status" */ delete_e_match_status_by_pk: (e_match_status | null) @@ -13062,6 +14133,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 +14524,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 +14633,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 +14813,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 +15213,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 +15237,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 +15249,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 +15339,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 +15512,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 +15782,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 +24960,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 +25230,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 +25472,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 +26360,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 +26378,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 +26443,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 +26451,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 +26473,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 +26481,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 +26503,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 +26551,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 +27104,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 +27464,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 +27734,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) @@ -33347,649 +34679,1358 @@ export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_avg_argum export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_corr_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'rating_for_expected' | 'team_avg_kda' -/** select "v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_player_elo" */ -export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | 'rating_for_expected' | 'team_avg_kda' +/** select "v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_player_elo" */ +export type v_player_elo_select_column_v_player_elo_aggregate_bool_exp_covar_samp_arguments_columns = 'actual_score' | 'damage_percent' | 'expected_score' | 'impact' | 'kda' | 'opponent_team_elo_avg' | 'performance_multiplier' | 'player_team_elo_avg' | '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' +} -/** 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' +/** 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) @@ -33998,7293 +36039,7896 @@ export interface v_player_match_map_hltv { match: (matches | null) match_id: (Scalars['uuid'] | null) /** An object relationship */ - match_map: (match_maps | null) - match_map_id: (Scalars['uuid'] | null) - /** An object relationship */ player: (players | null) 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) + + +/** 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) - 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' + 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' } -/** 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' +/** 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_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 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 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_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' -/** columns and relationships of "v_player_multi_kills" */ -export interface v_player_multi_kills { - attacker_steam_id: (Scalars['bigint'] | null) - kills: (Scalars['bigint'] | null) - match_id: (Scalars['uuid'] | null) - round: (Scalars['Int'] | null) - __typename: 'v_player_multi_kills' +/** select "v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns" columns of table "v_pool_maps" */ +export type v_pool_maps_select_column_v_pool_maps_aggregate_bool_exp_bool_or_arguments_columns = 'active_pool' + + +/** columns and relationships of "v_steam_account_pool_status" */ +export interface v_steam_account_pool_status { + busy_accounts: (Scalars['Int'] | null) + free_accounts: (Scalars['Int'] | null) + id: (Scalars['Int'] | null) + total_accounts: (Scalars['Int'] | null) + __typename: 'v_steam_account_pool_status' } -/** aggregated selection of "v_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' + + +/** 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_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' +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 ApiKeyResponseGenqlSelection{ + key?: 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 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 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 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 } -/** 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' -} +/** Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. */ +export interface Boolean_comparison_exp {_eq?: (Scalars['Boolean'] | null),_gt?: (Scalars['Boolean'] | null),_gte?: (Scalars['Boolean'] | null),_in?: (Scalars['Boolean'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['Boolean'] | null),_lte?: (Scalars['Boolean'] | null),_neq?: (Scalars['Boolean'] | null),_nin?: (Scalars['Boolean'][] | null)} +export interface ClipAudioInput {duck_game_audio?: (Scalars['Boolean'] | null),fade_in_ms?: (Scalars['Int'] | null),fade_out_ms?: (Scalars['Int'] | null),track_url?: (Scalars['String'] | null),volume?: (Scalars['Float'] | null)} -/** select columns of table "v_team_reputation" */ -export type v_team_reputation_select_column = 'late_cancels' | 'no_shows' | 'reliability_pct' | 'scrims_completed' | 'team_id' +export interface 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 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 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_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 ConnectionByStateGenqlSelection{ + count?: boolean | number + state?: boolean | number + wait_event_type?: boolean | number + waiting_count?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number } - -/** aggregate stddev_samp on columns */ -export interface v_team_reputation_stddev_samp_fields { - late_cancels: (Scalars['Float'] | null) - no_shows: (Scalars['Float'] | null) - reliability_pct: (Scalars['Float'] | null) - scrims_completed: (Scalars['Float'] | null) - __typename: 'v_team_reputation_stddev_samp_fields' +export interface 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 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 CpuStatGenqlSelection{ + time?: boolean | number + total?: boolean | number + used?: boolean | number + window?: 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 CreateClipRenderOutputGenqlSelection{ + job_id?: boolean | number + success?: 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 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)} +/** 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 incrementing numeric columns in table "clip_render_jobs" */ -export interface clip_render_jobs_inc_input {progress?: (Scalars['numeric'] | null),sort_index?: (Scalars['Int'] | null),user_steam_id?: (Scalars['bigint'] | null)} +/** Boolean expression to filter rows from the table "draft_game_players". All fields are combined with a logical 'AND'. */ +export interface draft_game_players_bool_exp {_and?: (draft_game_players_bool_exp[] | null),_not?: (draft_game_players_bool_exp | null),_or?: (draft_game_players_bool_exp[] | null),draft_game?: (draft_games_bool_exp | null),draft_game_id?: (uuid_comparison_exp | null),e_draft_game_player_status?: (e_draft_game_player_status_bool_exp | null),elo_snapshot?: (Int_comparison_exp | null),is_captain?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),joined_at?: (timestamptz_comparison_exp | null),lineup?: (Int_comparison_exp | null),pick_order?: (Int_comparison_exp | null),player?: (players_bool_exp | null),status?: (e_draft_game_player_status_enum_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} -/** input type for inserting data into table "clip_render_jobs" */ -export interface clip_render_jobs_insert_input {clip?: (match_clips_obj_rel_insert_input | null),clip_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),error_message?: (Scalars['String'] | null),game_server_node?: (game_server_nodes_obj_rel_insert_input | null),game_server_node_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),k8s_job_name?: (Scalars['String'] | null),last_status_at?: (Scalars['timestamptz'] | null),match_map?: (match_maps_obj_rel_insert_input | null),match_map_demo?: (match_map_demos_obj_rel_insert_input | null),match_map_demo_id?: (Scalars['uuid'] | null),match_map_id?: (Scalars['uuid'] | null),paused?: (Scalars['Boolean'] | null),progress?: (Scalars['numeric'] | null),session_token?: (Scalars['String'] | null),sort_index?: (Scalars['Int'] | null),spec?: (Scalars['jsonb'] | null),status?: (Scalars['String'] | null),status_history?: (Scalars['jsonb'] | null),user?: (players_obj_rel_insert_input | null),user_steam_id?: (Scalars['bigint'] | null)} +/** input type for 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)} -/** 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 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 custom_pages_stddev_samp_fieldsGenqlSelection{ - nav_order?: boolean | number +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 } -/** Streaming cursor of the table "custom_pages" */ -export interface custom_pages_stream_cursor_input { +/** order by stddev_samp() on columns of table "draft_games" */ +export interface draft_games_stddev_samp_order_by {capacity?: (order_by | null),current_pick_lineup?: (order_by | null),host_steam_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null)} + + +/** Streaming cursor of the table "draft_games" */ +export interface draft_games_stream_cursor_input { /** Stream column input with initial value */ -initial_value: 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)} +/** 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)} -/** 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)} +/** Ordering options when selecting data from "e_award_sources". */ +export interface e_award_sources_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: db_backups */ -export interface db_backups_pk_columns_input {id: Scalars['uuid']} +/** primary key columns input for table: e_award_sources */ +export interface e_award_sources_pk_columns_input {value: Scalars['String']} -/** 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)} +/** 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)} -/** aggregate stddev on columns */ -export interface db_backups_stddev_fieldsGenqlSelection{ - size?: boolean | number +/** Streaming cursor of the table "e_award_sources" */ +export interface e_award_sources_stream_cursor_input { +/** Stream column input with initial value */ +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 e_award_sources_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_award_sources_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_award_sources_set_input | null), +/** filter the rows which have to be updated */ +where: e_award_sources_bool_exp} + + +/** 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 stddev_pop on columns */ -export interface db_backups_stddev_pop_fieldsGenqlSelection{ - size?: boolean | number +/** 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 stddev_samp on columns */ -export interface db_backups_stddev_samp_fieldsGenqlSelection{ - size?: 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 } -/** Streaming cursor of the table "db_backups" */ -export interface db_backups_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: db_backups_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - +/** 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)} -/** 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)} +/** 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)} -/** aggregate sum on columns */ -export interface db_backups_sum_fieldsGenqlSelection{ - size?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} -export interface db_backups_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (db_backups_inc_input | null), -/** sets the columns of the filtered rows to the given values */ -_set?: (db_backups_set_input | null), -/** filter the rows which have to be updated */ -where: db_backups_bool_exp} +/** 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 var_pop on columns */ -export interface db_backups_var_pop_fieldsGenqlSelection{ - size?: boolean | number +/** aggregate max on columns */ +export interface e_award_tiers_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate var_samp on columns */ -export interface db_backups_var_samp_fieldsGenqlSelection{ - size?: boolean | number +/** aggregate min on columns */ +export interface e_award_tiers_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate variance on columns */ -export interface db_backups_variance_fieldsGenqlSelection{ - size?: boolean | number +/** 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?: e_award_tiersGenqlSelection __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 -} +/** 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)} -/** aggregated selection of "direct_conversations" */ -export interface direct_conversations_aggregateGenqlSelection{ - aggregate?: direct_conversations_aggregate_fieldsGenqlSelection - nodes?: direct_conversationsGenqlSelection +/** 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: e_award_tiers */ +export interface e_award_tiers_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)} + + +/** 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 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_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 avg on columns */ -export interface direct_conversations_avg_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 } -/** 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_check_in_settings". All fields are combined with a logical 'AND'. */ +export interface e_check_in_settings_bool_exp {_and?: (e_check_in_settings_bool_exp[] | null),_not?: (e_check_in_settings_bool_exp | null),_or?: (e_check_in_settings_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** input type for incrementing numeric columns in table "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_check_in_settings_enum". All fields are combined with logical 'AND'. */ +export interface e_check_in_settings_enum_comparison_exp {_eq?: (e_check_in_settings_enum | null),_in?: (e_check_in_settings_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_check_in_settings_enum | null),_nin?: (e_check_in_settings_enum[] | null)} -/** input type for inserting data into table "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_check_in_settings" */ +export interface e_check_in_settings_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface direct_conversations_max_fieldsGenqlSelection{ - last_message_at?: boolean | number - position?: boolean | number - room_id?: boolean | number - steam_id?: boolean | number +export interface e_check_in_settings_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } /** 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_check_in_settings_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_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?: direct_conversationsGenqlSelection + returning?: e_check_in_settingsGenqlSelection __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_check_in_settings" */ +export interface e_check_in_settings_on_conflict {constraint: e_check_in_settings_constraint,update_columns?: e_check_in_settings_update_column[],where?: (e_check_in_settings_bool_exp | null)} -/** Ordering options when selecting data from "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_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: direct_conversations */ -export interface direct_conversations_pk_columns_input {room_id: Scalars['String'],steam_id: Scalars['bigint']} +/** 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 "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_check_in_settings" */ +export interface e_check_in_settings_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregate stddev on columns */ -export interface direct_conversations_stddev_fieldsGenqlSelection{ - position?: boolean | number - steam_id?: boolean | number +/** Streaming cursor of the table "e_check_in_settings" */ +export interface e_check_in_settings_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_check_in_settings_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** 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 stddev_pop on columns */ -export interface direct_conversations_stddev_pop_fieldsGenqlSelection{ - position?: boolean | number - steam_id?: boolean | number +/** aggregated selection of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregateGenqlSelection{ + aggregate?: e_draft_game_captain_selection_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_captain_selectionGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate stddev_samp on columns */ -export interface direct_conversations_stddev_samp_fieldsGenqlSelection{ - position?: boolean | number - steam_id?: boolean | number +/** aggregate fields of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_captain_selection_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_captain_selection_max_fieldsGenqlSelection + min?: e_draft_game_captain_selection_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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_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)} -/** 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_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)} -/** 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_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_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_draft_game_captain_selection_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_draft_game_captain_selection_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_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_captain_selectionGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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 -} +/** input type for inserting object relation for remote table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_obj_rel_insert_input {data: e_draft_game_captain_selection_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_captain_selection_on_conflict | null)} + + +/** on_conflict condition type for table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_on_conflict {constraint: e_draft_game_captain_selection_constraint,update_columns?: e_draft_game_captain_selection_update_column[],where?: (e_draft_game_captain_selection_bool_exp | null)} + + +/** Ordering options when selecting data from "e_draft_game_captain_selection". */ +export interface e_draft_game_captain_selection_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_draft_game_captain_selection */ +export interface e_draft_game_captain_selection_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_captain_selection_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} -/** aggregated selection of "direct_messages" */ -export interface direct_messages_aggregateGenqlSelection{ - aggregate?: direct_messages_aggregate_fieldsGenqlSelection - nodes?: direct_messagesGenqlSelection +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_captain_selection_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_captain_selection_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_captain_selection_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_captain_selection_bool_exp} + + +/** columns and relationships of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_orderGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "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_draft_order" */ +export interface e_draft_game_draft_order_aggregateGenqlSelection{ + aggregate?: e_draft_game_draft_order_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_draft_orderGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate avg on columns */ -export interface direct_messages_avg_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 } -/** 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_draft_order". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_draft_order_bool_exp {_and?: (e_draft_game_draft_order_bool_exp[] | null),_not?: (e_draft_game_draft_order_bool_exp | null),_or?: (e_draft_game_draft_order_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** input type for incrementing numeric columns in table "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_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 "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_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 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_draft_order_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_draft_order_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_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?: direct_messagesGenqlSelection + returning?: e_draft_game_draft_orderGenqlSelection __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_draft_order" */ +export interface e_draft_game_draft_order_obj_rel_insert_input {data: e_draft_game_draft_order_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_draft_order_on_conflict | null)} -/** input type for updating data in table "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_draft_order" */ +export interface e_draft_game_draft_order_on_conflict {constraint: e_draft_game_draft_order_constraint,update_columns?: e_draft_game_draft_order_update_column[],where?: (e_draft_game_draft_order_bool_exp | null)} -/** aggregate stddev on columns */ -export interface 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_draft_order". */ +export interface e_draft_game_draft_order_order_by {description?: (order_by | null),value?: (order_by | null)} -/** aggregate stddev_pop on columns */ -export interface 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_draft_order */ +export interface e_draft_game_draft_order_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_draft_order" */ +export interface e_draft_game_draft_order_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_draft_order" */ +export interface e_draft_game_draft_order_stream_cursor_input { /** Stream column input with initial value */ -initial_value: direct_messages_stream_cursor_value_input, +initial_value: e_draft_game_draft_order_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface 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 direct_messages_sum_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +export interface e_draft_game_draft_order_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface direct_messages_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (direct_messages_inc_input | null), +export interface e_draft_game_draft_order_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (direct_messages_set_input | null), +_set?: (e_draft_game_draft_order_set_input | null), /** filter the rows which have to be updated */ -where: direct_messages_bool_exp} +where: e_draft_game_draft_order_bool_exp} -/** aggregate var_pop on columns */ -export interface direct_messages_var_pop_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: boolean | number +/** columns and relationships of "e_draft_game_mode" */ +export interface e_draft_game_modeGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate var_samp on columns */ -export interface direct_messages_var_samp_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: boolean | number +/** aggregated selection of "e_draft_game_mode" */ +export interface e_draft_game_mode_aggregateGenqlSelection{ + aggregate?: e_draft_game_mode_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_modeGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate variance on columns */ -export interface direct_messages_variance_fieldsGenqlSelection{ - from_steam_id?: boolean | number - seq?: boolean | number +/** aggregate fields of "e_draft_game_mode" */ +export interface e_draft_game_mode_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_mode_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_mode_max_fieldsGenqlSelection + min?: e_draft_game_mode_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** columns and relationships of "draft_game_picks" */ -export interface draft_game_picksGenqlSelection{ - auto_picked?: boolean | number - /** An object relationship */ - captain?: playersGenqlSelection - captain_steam_id?: boolean | number - created_at?: boolean | number - /** An object relationship */ - draft_game?: draft_gamesGenqlSelection - draft_game_id?: boolean | number - id?: boolean | number - is_organizer?: boolean | number - lineup?: boolean | number - /** An object relationship */ - picked?: playersGenqlSelection - picked_steam_id?: boolean | number +/** Boolean expression to filter rows from the table "e_draft_game_mode". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_mode_bool_exp {_and?: (e_draft_game_mode_bool_exp[] | null),_not?: (e_draft_game_mode_bool_exp | null),_or?: (e_draft_game_mode_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_draft_game_mode_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_mode_enum_comparison_exp {_eq?: (e_draft_game_mode_enum | null),_in?: (e_draft_game_mode_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_mode_enum | null),_nin?: (e_draft_game_mode_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_mode" */ +export interface e_draft_game_mode_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_mode_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "draft_game_picks" */ -export interface draft_game_picks_aggregateGenqlSelection{ - aggregate?: draft_game_picks_aggregate_fieldsGenqlSelection - nodes?: draft_game_picksGenqlSelection +/** aggregate min on columns */ +export interface e_draft_game_mode_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface draft_game_picks_aggregate_bool_exp {bool_and?: (draft_game_picks_aggregate_bool_exp_bool_and | null),bool_or?: (draft_game_picks_aggregate_bool_exp_bool_or | null),count?: (draft_game_picks_aggregate_bool_exp_count | null)} - -export interface draft_game_picks_aggregate_bool_exp_bool_and {arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface draft_game_picks_aggregate_bool_exp_bool_or {arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface draft_game_picks_aggregate_bool_exp_count {arguments?: (draft_game_picks_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Int_comparison_exp} - -/** aggregate fields of "draft_game_picks" */ -export interface draft_game_picks_aggregate_fieldsGenqlSelection{ - avg?: draft_game_picks_avg_fieldsGenqlSelection - count?: { __args: {columns?: (draft_game_picks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: draft_game_picks_max_fieldsGenqlSelection - min?: draft_game_picks_min_fieldsGenqlSelection - stddev?: draft_game_picks_stddev_fieldsGenqlSelection - stddev_pop?: draft_game_picks_stddev_pop_fieldsGenqlSelection - stddev_samp?: draft_game_picks_stddev_samp_fieldsGenqlSelection - sum?: draft_game_picks_sum_fieldsGenqlSelection - var_pop?: draft_game_picks_var_pop_fieldsGenqlSelection - var_samp?: draft_game_picks_var_samp_fieldsGenqlSelection - variance?: draft_game_picks_variance_fieldsGenqlSelection +/** response of any mutation on the table "e_draft_game_mode" */ +export interface e_draft_game_mode_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_modeGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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 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)} -/** 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)} +/** 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)} -/** aggregate avg on columns */ -export interface draft_game_picks_avg_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** 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)} -/** 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)} +/** primary key columns input for table: e_draft_game_mode */ +export interface e_draft_game_mode_pk_columns_input {value: Scalars['String']} -/** 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 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 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)} +/** 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)} -/** 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)} +/** 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} -/** aggregate max on columns */ -export interface draft_game_picks_max_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - created_at?: boolean | number - draft_game_id?: boolean | number - id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number +/** columns and relationships of "e_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 max() on columns of table "draft_game_picks" */ -export interface draft_game_picks_max_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface draft_game_picks_min_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - created_at?: boolean | number - draft_game_id?: boolean | number - id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number +/** aggregated selection of "e_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 } -/** order by min() on columns of table "draft_game_picks" */ -export interface draft_game_picks_min_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} - - -/** response of any mutation on the table "draft_game_picks" */ -export interface draft_game_picks_mutation_responseGenqlSelection{ - /** number of rows affected by the mutation */ - affected_rows?: boolean | number - /** data from the rows affected by the mutation */ - returning?: draft_game_picksGenqlSelection +/** aggregate fields of "e_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 } -/** on_conflict condition type for table "draft_game_picks" */ -export interface draft_game_picks_on_conflict {constraint: draft_game_picks_constraint,update_columns?: draft_game_picks_update_column[],where?: (draft_game_picks_bool_exp | null)} - - -/** Ordering options when selecting data from "draft_game_picks". */ -export interface draft_game_picks_order_by {auto_picked?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game?: (draft_games_order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),is_organizer?: (order_by | null),lineup?: (order_by | null),picked?: (players_order_by | null),picked_steam_id?: (order_by | null)} +/** Boolean expression to filter rows from the table "e_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)} -/** primary key columns input for table: draft_game_picks */ -export interface draft_game_picks_pk_columns_input {id: Scalars['uuid']} +/** Boolean expression to compare columns of type "e_draft_game_player_status_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_player_status_enum_comparison_exp {_eq?: (e_draft_game_player_status_enum | null),_in?: (e_draft_game_player_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_player_status_enum | null),_nin?: (e_draft_game_player_status_enum[] | null)} -/** input type for updating data in table "draft_game_picks" */ -export interface draft_game_picks_set_input {auto_picked?: (Scalars['Boolean'] | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} +/** input type for inserting data into table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregate stddev on columns */ -export interface draft_game_picks_stddev_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number +/** aggregate max on columns */ +export interface e_draft_game_player_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by stddev() on columns of table "draft_game_picks" */ -export interface draft_game_picks_stddev_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} +/** aggregate min on columns */ +export interface e_draft_game_player_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate stddev_pop on columns */ -export interface draft_game_picks_stddev_pop_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number +/** response of any mutation on the table "e_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 stddev_pop() on columns of table "draft_game_picks" */ -export interface draft_game_picks_stddev_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} +/** input type for inserting object relation for remote table "e_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 stddev_samp on columns */ -export interface draft_game_picks_stddev_samp_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** on_conflict condition type for table "e_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 stddev_samp() on columns of table "draft_game_picks" */ -export interface draft_game_picks_stddev_samp_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} +/** Ordering options when selecting data from "e_draft_game_player_status". */ +export interface e_draft_game_player_status_order_by {description?: (order_by | null),value?: (order_by | null)} -/** Streaming cursor of the table "draft_game_picks" */ -export interface draft_game_picks_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: draft_game_picks_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | 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']} -/** 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 updating data in table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** aggregate sum on columns */ -export interface draft_game_picks_sum_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** 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)} -/** 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)} +/** 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 draft_game_picks_updates { -/** increments the numeric columns with given value of the filtered values */ -_inc?: (draft_game_picks_inc_input | null), +export interface e_draft_game_player_status_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (draft_game_picks_set_input | null), +_set?: (e_draft_game_player_status_set_input | null), /** filter the rows which have to be updated */ -where: draft_game_picks_bool_exp} +where: e_draft_game_player_status_bool_exp} -/** aggregate var_pop on columns */ -export interface draft_game_picks_var_pop_fieldsGenqlSelection{ - captain_steam_id?: boolean | number - lineup?: boolean | number - picked_steam_id?: boolean | number +/** columns and relationships of "e_draft_game_status" */ +export interface e_draft_game_statusGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** order by 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)} +/** aggregated selection of "e_draft_game_status" */ +export interface e_draft_game_status_aggregateGenqlSelection{ + aggregate?: e_draft_game_status_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} -/** aggregate 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 +/** aggregate fields of "e_draft_game_status" */ +export interface e_draft_game_status_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_status_max_fieldsGenqlSelection + min?: e_draft_game_status_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** order by 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)} +/** 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 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 -} +/** 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)} -/** 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 inserting data into table "e_draft_game_status" */ +export interface e_draft_game_status_insert_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 +/** aggregate max on columns */ +export interface e_draft_game_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregated selection of "draft_game_players" */ -export interface draft_game_players_aggregateGenqlSelection{ - aggregate?: draft_game_players_aggregate_fieldsGenqlSelection - nodes?: draft_game_playersGenqlSelection +/** aggregate min on columns */ +export interface e_draft_game_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -export interface draft_game_players_aggregate_bool_exp {bool_and?: (draft_game_players_aggregate_bool_exp_bool_and | null),bool_or?: (draft_game_players_aggregate_bool_exp_bool_or | null),count?: (draft_game_players_aggregate_bool_exp_count | null)} - -export interface draft_game_players_aggregate_bool_exp_bool_and {arguments: draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface draft_game_players_aggregate_bool_exp_bool_or {arguments: draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Boolean_comparison_exp} - -export interface draft_game_players_aggregate_bool_exp_count {arguments?: (draft_game_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Int_comparison_exp} - -/** aggregate fields of "draft_game_players" */ -export interface draft_game_players_aggregate_fieldsGenqlSelection{ - avg?: draft_game_players_avg_fieldsGenqlSelection - count?: { __args: {columns?: (draft_game_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: draft_game_players_max_fieldsGenqlSelection - min?: draft_game_players_min_fieldsGenqlSelection - stddev?: draft_game_players_stddev_fieldsGenqlSelection - stddev_pop?: draft_game_players_stddev_pop_fieldsGenqlSelection - stddev_samp?: draft_game_players_stddev_samp_fieldsGenqlSelection - sum?: draft_game_players_sum_fieldsGenqlSelection - var_pop?: draft_game_players_var_pop_fieldsGenqlSelection - var_samp?: draft_game_players_var_samp_fieldsGenqlSelection - variance?: draft_game_players_variance_fieldsGenqlSelection +/** 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 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 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)} -/** 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)} +/** 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)} -/** aggregate avg on columns */ -export interface draft_game_players_avg_fieldsGenqlSelection{ - elo_snapshot?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} +/** 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)} -/** 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)} +/** primary key columns input for table: e_draft_game_status */ +export interface e_draft_game_status_pk_columns_input {value: Scalars['String']} -/** Boolean expression to filter rows from the table "draft_game_players". All fields are combined with a logical 'AND'. */ -export interface draft_game_players_bool_exp {_and?: (draft_game_players_bool_exp[] | null),_not?: (draft_game_players_bool_exp | null),_or?: (draft_game_players_bool_exp[] | null),draft_game?: (draft_games_bool_exp | null),draft_game_id?: (uuid_comparison_exp | null),e_draft_game_player_status?: (e_draft_game_player_status_bool_exp | null),elo_snapshot?: (Int_comparison_exp | null),is_captain?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),joined_at?: (timestamptz_comparison_exp | null),lineup?: (Int_comparison_exp | null),pick_order?: (Int_comparison_exp | null),player?: (players_bool_exp | null),status?: (e_draft_game_player_status_enum_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} +/** input type for 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 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)} +/** 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)} -/** 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)} +/** 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} -/** 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 + +/** 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 max() on columns of table "draft_game_players" */ -export interface draft_game_players_max_order_by {draft_game_id?: (order_by | null),elo_snapshot?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} - - -/** aggregate min on columns */ -export interface draft_game_players_min_fieldsGenqlSelection{ - draft_game_id?: boolean | number - elo_snapshot?: boolean | number - joined_at?: boolean | number - lineup?: boolean | number - pick_order?: boolean | number - steam_id?: boolean | number +/** 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 } -/** 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 +/** 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 } -/** on_conflict condition type for table "draft_game_players" */ -export interface draft_game_players_on_conflict {constraint: draft_game_players_constraint,update_columns?: draft_game_players_update_column[],where?: (draft_game_players_bool_exp | null)} - - -/** Ordering options when selecting data from "draft_game_players". */ -export interface draft_game_players_order_by {draft_game?: (draft_games_order_by | null),draft_game_id?: (order_by | null),e_draft_game_player_status?: (e_draft_game_player_status_order_by | null),elo_snapshot?: (order_by | null),is_captain?: (order_by | null),is_organizer?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),player?: (players_order_by | null),status?: (order_by | null),steam_id?: (order_by | null)} +/** 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)} -/** 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)} +/** 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)} -/** 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 - __typename?: boolean | number - __scalar?: boolean | number -} +/** 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)} -/** 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 max on columns */ +export interface e_friend_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} /** 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 +43936,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 +43977,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 +43985,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 +44039,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 +44080,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 +44088,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 +44142,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 +44183,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 +44191,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 +44245,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 +44286,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 +44294,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 +44354,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 +44395,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 +44403,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 +44463,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 +44504,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 +44512,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 +44572,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 +44613,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 +44621,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 +44681,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 +44722,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 +44730,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 +44790,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 +44831,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 +44839,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 +44899,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 +44940,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 +44948,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 +45002,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 +45043,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 +45051,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 +45176,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 +45184,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 +45303,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 +45311,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 +45371,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 +45412,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 +45420,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 +45539,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 +45547,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 +45666,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 +45674,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 +45799,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 +45807,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 +45867,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 +45908,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 +45916,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 +46035,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 +46043,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 +46097,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 +46138,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 +46146,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 +46241,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 +46249,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 +46344,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 +46352,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 +46406,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 +46447,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 +46455,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 +46580,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 +46588,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 +46707,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 +46715,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 +46858,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 +46866,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 +46920,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 +46961,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 +46969,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 +47112,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 +47120,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 +47180,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 +47221,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 +47229,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 +47283,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 +47324,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 +47332,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 +47451,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 +47459,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 +47584,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 +47592,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 +47717,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 +47725,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 +47850,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 +47858,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 +47977,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 +47985,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 +48039,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 +48080,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 +48088,3381 @@ 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 "e_team_roster_statuses" */ -export interface e_team_roster_statuses_aggregateGenqlSelection{ - aggregate?: e_team_roster_statuses_aggregate_fieldsGenqlSelection - nodes?: e_team_roster_statusesGenqlSelection +/** aggregated selection of "event_media" */ +export interface event_media_aggregateGenqlSelection{ + aggregate?: event_media_aggregate_fieldsGenqlSelection + nodes?: event_mediaGenqlSelection __typename?: boolean | number __scalar?: boolean | number } +export interface event_media_aggregate_bool_exp {count?: (event_media_aggregate_bool_exp_count | null)} -/** aggregate fields of "e_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 +export interface event_media_aggregate_bool_exp_count {arguments?: (event_media_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_media_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_media" */ +export interface event_media_aggregate_fieldsGenqlSelection{ + avg?: event_media_avg_fieldsGenqlSelection + count?: { __args: {columns?: (event_media_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_media_max_fieldsGenqlSelection + min?: event_media_min_fieldsGenqlSelection + stddev?: event_media_stddev_fieldsGenqlSelection + stddev_pop?: event_media_stddev_pop_fieldsGenqlSelection + stddev_samp?: event_media_stddev_samp_fieldsGenqlSelection + sum?: event_media_sum_fieldsGenqlSelection + var_pop?: event_media_var_pop_fieldsGenqlSelection + var_samp?: event_media_var_samp_fieldsGenqlSelection + variance?: event_media_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_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 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)} + + +/** 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 +} + + +/** 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)} -/** 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 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 "e_team_roster_statuses" */ -export interface e_team_roster_statuses_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | 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 - __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 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 +/** aggregate stddev_samp on columns */ +export interface event_media_players_stddev_samp_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 stddev_samp() on columns of table "event_media_players" */ +export interface event_media_players_stddev_samp_order_by {steam_id?: (order_by | 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)} +/** 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)} -/** 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)} +/** 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 max on columns */ -export interface e_tournament_categories_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregate sum on columns */ +export interface event_media_players_sum_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 - __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} -/** 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 + +/** 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 object relation for remote table "e_tournament_categories" */ -export interface e_tournament_categories_obj_rel_insert_input {data: e_tournament_categories_insert_input, -/** upsert condition */ -on_conflict?: (e_tournament_categories_on_conflict | null)} - - -/** on_conflict condition type for table "e_tournament_categories" */ -export interface e_tournament_categories_on_conflict {constraint: e_tournament_categories_constraint,update_columns?: e_tournament_categories_update_column[],where?: (e_tournament_categories_bool_exp | null)} - +/** 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)} -/** 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)} +/** aggregate var_samp on columns */ +export interface event_media_players_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** primary key columns input for table: e_tournament_categories */ -export interface e_tournament_categories_pk_columns_input {value: Scalars['String']} +/** 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)} -/** 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)} +/** aggregate variance on columns */ +export interface event_media_players_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** Streaming cursor of the table "e_tournament_categories" */ -export interface e_tournament_categories_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: e_tournament_categories_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} +/** order by variance() on columns of table "event_media_players" */ +export interface event_media_players_variance_order_by {steam_id?: (order_by | 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} +/** 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)} -/** 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 stddev on columns */ +export interface event_media_stddev_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 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 __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 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 __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 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)} -/** 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)} +/** Streaming cursor of the table "event_media" */ +export interface event_media_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: event_media_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | 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)} +/** 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)} -/** aggregate max on columns */ -export interface e_tournament_stage_types_max_fieldsGenqlSelection{ - description?: boolean | number - 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 } -/** aggregate min on columns */ -export interface e_tournament_stage_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: 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 { +/** 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} -/** 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 +/** 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 } -/** 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)} - - -/** 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)} - +/** 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)} -/** 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 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 +} -/** primary key columns input for table: e_tournament_stage_types */ -export interface e_tournament_stage_types_pk_columns_input {value: Scalars['String']} +/** 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)} -/** 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)} +/** aggregate variance on columns */ +export interface event_media_variance_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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)} +/** 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)} -/** 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} +/** 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 +} -/** 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 +/** 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)} -/** aggregated selection of "e_tournament_status" */ -export interface e_tournament_status_aggregateGenqlSelection{ - aggregate?: e_tournament_status_aggregate_fieldsGenqlSelection - nodes?: e_tournament_statusGenqlSelection +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 } -/** 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 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 __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_tournament_status". All fields are combined with a logical 'AND'. */ -export interface e_tournament_status_bool_exp {_and?: (e_tournament_status_bool_exp[] | null),_not?: (e_tournament_status_bool_exp | null),_or?: (e_tournament_status_bool_exp[] | null),description?: (String_comparison_exp | null),tournaments?: (tournaments_bool_exp | null),tournaments_aggregate?: (tournaments_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** order by avg() on columns of table "event_organizers" */ +export interface event_organizers_avg_order_by {steam_id?: (order_by | null)} -/** Boolean expression to compare columns of type "e_tournament_status_enum". All fields are combined with logical 'AND'. */ -export interface e_tournament_status_enum_comparison_exp {_eq?: (e_tournament_status_enum | null),_in?: (e_tournament_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_tournament_status_enum | null),_nin?: (e_tournament_status_enum[] | null)} +/** 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)} -/** 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)} +/** input type for incrementing numeric columns in table "event_organizers" */ +export interface event_organizers_inc_input {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)} /** aggregate max on columns */ -export interface e_tournament_status_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +export interface event_organizers_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_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 e_tournament_status_min_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +export interface event_organizers_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_tournament_status" */ -export interface e_tournament_status_mutation_responseGenqlSelection{ +/** 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?: e_tournament_statusGenqlSelection + returning?: event_organizersGenqlSelection __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)} - +/** 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)} -/** Ordering options when selecting data from "e_tournament_status". */ -export interface e_tournament_status_order_by {description?: (order_by | null),tournaments_aggregate?: (tournaments_aggregate_order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "event_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)} -/** primary key columns input for table: e_tournament_status */ -export interface e_tournament_status_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: event_organizers */ +export interface event_organizers_pk_columns_input {event_id: Scalars['uuid'],steam_id: Scalars['bigint']} -/** input type for updating data in table "e_tournament_status" */ -export interface e_tournament_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "event_organizers" */ +export interface event_organizers_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | 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_tournament_status_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} +/** aggregate stddev on columns */ +export interface event_organizers_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_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} +/** order by stddev() on columns of table "event_organizers" */ +export interface event_organizers_stddev_order_by {steam_id?: (order_by | 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 stddev_pop on columns */ +export interface event_organizers_stddev_pop_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 stddev_pop() on columns of table "event_organizers" */ +export interface event_organizers_stddev_pop_order_by {steam_id?: (order_by | null)} -/** aggregate fields of "e_utility_types" */ -export interface e_utility_types_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_utility_types_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_utility_types_max_fieldsGenqlSelection - min?: e_utility_types_min_fieldsGenqlSelection +/** aggregate stddev_samp on columns */ +export interface event_organizers_stddev_samp_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 stddev_samp() on columns of table "event_organizers" */ +export interface event_organizers_stddev_samp_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)} +/** Streaming cursor of the table "event_organizers" */ +export interface event_organizers_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: event_organizers_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | 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)} +/** 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)} -/** aggregate max on columns */ -export interface e_utility_types_max_fieldsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregate sum on columns */ +export interface event_organizers_sum_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** aggregate min on columns */ -export interface e_utility_types_min_fieldsGenqlSelection{ - description?: boolean | number - value?: 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 { +/** 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} -/** 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 +/** aggregate var_pop on columns */ +export interface event_organizers_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_utility_types" */ -export interface e_utility_types_on_conflict {constraint: e_utility_types_constraint,update_columns?: e_utility_types_update_column[],where?: (e_utility_types_bool_exp | null)} - +/** order by var_pop() on columns of table "event_organizers" */ +export interface event_organizers_var_pop_order_by {steam_id?: (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)} +/** aggregate var_samp on columns */ +export interface event_organizers_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** primary key columns input for table: e_utility_types */ -export interface e_utility_types_pk_columns_input {value: Scalars['String']} +/** order by var_samp() on columns of table "event_organizers" */ +export interface event_organizers_var_samp_order_by {steam_id?: (order_by | 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)} +/** aggregate variance on columns */ +export interface event_organizers_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} -/** 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)} +/** order by variance() on columns of table "event_organizers" */ +export interface event_organizers_variance_order_by {steam_id?: (order_by | null)} -/** Initial value of the column from where the streaming should start */ -export interface e_utility_types_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface 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} +/** 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 +} -/** 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 +/** 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)} -/** 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 +export interface event_players_aggregate_bool_exp_count {arguments?: (event_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_players_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_players" */ +export interface event_players_aggregate_fieldsGenqlSelection{ + avg?: event_players_avg_fieldsGenqlSelection + count?: { __args: {columns?: (event_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_players_max_fieldsGenqlSelection + min?: event_players_min_fieldsGenqlSelection + stddev?: event_players_stddev_fieldsGenqlSelection + stddev_pop?: event_players_stddev_pop_fieldsGenqlSelection + stddev_samp?: event_players_stddev_samp_fieldsGenqlSelection + sum?: event_players_sum_fieldsGenqlSelection + var_pop?: event_players_var_pop_fieldsGenqlSelection + var_samp?: event_players_var_samp_fieldsGenqlSelection + variance?: event_players_variance_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** 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 +/** 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)} + + +/** 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)} + + +/** aggregate avg on columns */ +export interface event_players_avg_fieldsGenqlSelection{ + steam_id?: boolean | number __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_veto_pick_types". All fields are combined with a logical 'AND'. */ -export interface e_veto_pick_types_bool_exp {_and?: (e_veto_pick_types_bool_exp[] | null),_not?: (e_veto_pick_types_bool_exp | null),_or?: (e_veto_pick_types_bool_exp[] | null),description?: (String_comparison_exp | null),match_veto_picks?: (match_map_veto_picks_bool_exp | null),match_veto_picks_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),value?: (String_comparison_exp | null)} +/** order by avg() on columns of table "event_players" */ +export interface event_players_avg_order_by {steam_id?: (order_by | 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)} +/** 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)} -/** input type for inserting data into table "e_veto_pick_types" */ -export interface e_veto_pick_types_insert_input {description?: (Scalars['String'] | null),match_veto_picks?: (match_map_veto_picks_arr_rel_insert_input | null),value?: (Scalars['String'] | null)} +/** input type for incrementing numeric columns in table "event_players" */ +export interface event_players_inc_input {steam_id?: (Scalars['bigint'] | 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)} - +/** 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)} -/** 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)} +/** 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)} -/** primary key columns input for table: e_veto_pick_types */ -export interface e_veto_pick_types_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: event_players */ +export interface event_players_pk_columns_input {event_id: Scalars['uuid'],steam_id: Scalars['bigint']} -/** 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)} +/** 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)} -/** 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)} +/** aggregate stddev on columns */ +export interface event_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_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} +/** order by stddev() on columns of table "event_players" */ +export interface event_players_stddev_order_by {steam_id?: (order_by | null)} -/** columns and relationships of "e_winning_reasons" */ -export interface e_winning_reasonsGenqlSelection{ - description?: boolean | number - value?: boolean | number +/** aggregate stddev_pop on columns */ +export interface event_players_stddev_pop_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 - __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)} -/** aggregate fields of "e_winning_reasons" */ -export interface e_winning_reasons_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_winning_reasons_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_winning_reasons_max_fieldsGenqlSelection - min?: e_winning_reasons_min_fieldsGenqlSelection +/** aggregate stddev_samp on columns */ +export interface 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 + description?: boolean | number + enabled?: boolean | number + extra_game_params?: boolean | number + icon?: boolean | number + id?: boolean | number /** An object relationship */ - event?: eventsGenqlSelection - event_id?: boolean | number - /** An object relationship */ - team?: teamsGenqlSelection - team_id?: boolean | number + map_pool?: map_poolsGenqlSelection + map_pool_id?: boolean | number + match_option_defaults?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | 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 +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface game_modes_append_input {match_option_defaults?: (Scalars['jsonb'] | null)} + + +/** 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),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),match_option_defaults?: (jsonb_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)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface game_modes_delete_at_path_input {match_option_defaults?: (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 game_modes_delete_elem_input {match_option_defaults?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface game_modes_delete_key_input {match_option_defaults?: (Scalars['String'] | 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),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),match_option_defaults?: (Scalars['jsonb'] | 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 + map_pool_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 + map_pool_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),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),match_option_defaults?: (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']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface game_modes_prepend_input {match_option_defaults?: (Scalars['jsonb'] | null)} + + +/** 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),map_pool_id?: (Scalars['uuid'] | null),match_option_defaults?: (Scalars['jsonb'] | 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),map_pool_id?: (Scalars['uuid'] | null),match_option_defaults?: (Scalars['jsonb'] | null),name?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + +export interface game_modes_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (game_modes_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (game_modes_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_modes_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (game_modes_delete_key_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (game_modes_prepend_input | null), +/** 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 + 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),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),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),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),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),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 +/** columns and relationships of "game_plugin_versions" */ +export interface game_plugin_versionsGenqlSelection{ + install_path?: boolean | number + layout?: boolean | number /** An object relationship */ - event?: eventsGenqlSelection - event_id?: 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_service?: boolean | number + slug?: 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_service?: (String_comparison_exp | null),slug?: (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_service?: (Scalars['String'] | null),slug?: (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 + 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 + 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_service?: (order_by | null),slug?: (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_service?: (Scalars['String'] | null),slug?: (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_service?: (Scalars['String'] | null),slug?: (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 +51518,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 +51667,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 +51687,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 +51709,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 +51725,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 +51747,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 +51763,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 +51788,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 +51800,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 +51893,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 +59064,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 +59135,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 +59162,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 +59187,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 +59200,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 +59223,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 +59247,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 +59273,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 +59281,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 +59299,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 +59318,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 +59337,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 +59350,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 +59367,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 +59395,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 +59414,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 +59433,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 +60026,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 +60517,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 +60571,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 +60579,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 +60720,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 +60728,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 +60788,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 */ @@ -58060,6 +61221,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 +61491,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 +62082,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 +62399,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 +62939,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 +64111,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 +64147,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 +64171,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 +64297,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 +64770,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 +65424,158 @@ 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: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (game_modes_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (game_modes_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_modes_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (game_modes_delete_key_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (game_modes_prepend_input | null), + /** 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: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (game_modes_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (game_modes_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_modes_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (game_modes_delete_key_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (game_modes_prepend_input | null), + /** 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 +66844,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 +80040,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 +81210,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 +82188,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 +82200,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 +85271,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 +85311,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 +85367,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 +85392,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 +85412,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 +85426,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 +85434,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 +85447,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 +85461,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 +85469,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 +85482,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 +85507,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 +85573,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 +85590,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 +87023,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 +88553,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 +89751,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 +89763,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), @@ -103170,6 +107300,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 +107316,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 +107364,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 +107516,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 +109788,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 +112332,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 +126046,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 +126062,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 +126083,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 +126541,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 +127542,226 @@ 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, + map_pool_id: 'map_pool_id' as const, + match_option_defaults: 'match_option_defaults' 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, + map_pool_id: 'map_pool_id' as const, + match_option_defaults: 'match_option_defaults' 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, + 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, + 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_service: 'requires_service' as const, + slug: 'slug' 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_service: 'requires_service' as const, + slug: 'slug' 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 +127796,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 +127863,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 +128682,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 +128706,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 +128743,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 +128878,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 +128902,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 +130276,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 +130321,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..0e9cd1e30 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -3,722 +3,762 @@ export default { 5, 31, 40, - 80, - 111, - 119, + 83, + 115, 123, - 125, - 136, - 147, - 159, - 172, - 181, - 189, - 205, - 216, - 228, - 241, - 251, - 259, - 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, + 127, + 129, + 140, + 151, + 163, + 176, + 185, + 193, + 209, + 220, + 232, + 245, + 255, + 263, + 268, + 271, + 278, + 287, + 295, + 313, + 328, + 329, + 330, + 342, + 351, + 358, + 371, + 379, + 389, + 398, + 406, + 416, + 425, + 433, + 443, + 452, + 460, + 477, + 488, + 489, + 490, + 502, + 522, + 533, + 534, + 535, + 547, + 567, + 579, + 580, + 581, + 593, + 605, + 606, 615, - 621, - 622, - 631, + 619, + 625, + 626, 635, - 641, - 642, - 651, + 639, + 645, + 646, 655, - 661, - 662, - 672, + 659, + 665, + 666, 676, - 682, - 683, - 693, + 680, + 686, + 687, 697, - 703, - 704, - 714, + 701, + 707, + 708, 718, - 724, - 725, - 735, + 722, + 728, + 729, 739, - 745, - 746, - 756, + 743, + 749, + 750, 760, - 766, - 767, - 776, + 764, + 770, + 771, 780, - 786, - 787, - 796, + 784, + 790, + 791, 800, - 806, - 807, - 817, + 804, + 810, + 811, 821, - 827, - 828, - 837, + 825, + 831, + 832, 841, - 847, - 848, - 858, - 862, - 868, - 869, - 879, - 883, - 889, - 890, - 900, - 904, - 910, + 845, + 851, + 852, + 861, + 865, + 871, + 872, + 881, + 885, + 891, + 892, + 901, + 905, 911, - 921, - 925, - 931, + 912, + 922, + 926, 932, - 942, - 946, - 952, + 933, + 943, + 947, 953, - 963, - 967, - 973, + 954, + 964, + 968, 974, - 983, - 987, - 993, - 994, - 1004, - 1008, - 1014, - 1015, - 1024, - 1028, - 1034, - 1035, - 1045, - 1049, - 1055, - 1056, - 1065, - 1069, - 1075, - 1076, - 1085, - 1089, - 1095, - 1096, - 1106, - 1110, - 1116, - 1117, - 1127, - 1131, - 1137, - 1138, - 1147, - 1151, - 1157, - 1158, - 1167, - 1171, - 1177, - 1178, - 1187, + 975, + 985, + 989, + 995, + 996, + 1006, + 1010, + 1016, + 1017, + 1027, + 1031, + 1037, + 1038, + 1047, + 1051, + 1057, + 1058, + 1068, + 1072, + 1078, + 1079, + 1088, + 1092, + 1098, + 1099, + 1109, + 1113, + 1119, + 1120, + 1129, + 1133, + 1139, + 1140, + 1149, + 1153, + 1159, + 1160, + 1170, + 1174, + 1180, + 1181, 1191, - 1197, - 1198, - 1207, + 1195, + 1201, + 1202, 1211, - 1217, - 1218, - 1227, + 1215, + 1221, + 1222, 1231, - 1237, - 1238, - 1248, - 1252, - 1258, - 1259, - 1268, - 1272, - 1278, - 1279, - 1288, - 1292, - 1298, - 1299, - 1308, + 1235, + 1241, + 1242, + 1251, + 1255, + 1261, + 1262, + 1271, + 1275, + 1281, + 1282, + 1291, + 1295, + 1301, + 1302, 1312, - 1318, - 1319, - 1328, + 1316, + 1322, + 1323, 1332, - 1338, - 1339, - 1349, - 1353, - 1359, - 1360, - 1369, - 1373, - 1379, - 1380, - 1389, - 1393, - 1399, - 1400, - 1410, - 1414, - 1420, - 1421, - 1431, - 1435, - 1441, - 1442, - 1452, - 1456, - 1462, + 1336, + 1342, + 1343, + 1352, + 1356, + 1362, + 1363, + 1372, + 1376, + 1382, + 1383, + 1392, + 1396, + 1402, + 1403, + 1413, + 1417, + 1423, + 1424, + 1433, + 1437, + 1443, + 1444, + 1453, + 1457, 1463, - 1472, - 1476, - 1482, - 1483, - 1492, - 1496, - 1502, - 1503, - 1512, + 1464, + 1474, + 1478, + 1484, + 1485, + 1495, + 1499, + 1505, + 1506, 1516, - 1522, - 1530, - 1534, + 1520, + 1526, + 1527, + 1536, + 1540, 1546, - 1568, - 1579, - 1591, - 1599, - 1611, - 1629, - 1640, - 1652, - 1670, - 1681, + 1547, + 1556, + 1560, + 1566, + 1567, + 1576, + 1580, + 1586, + 1594, + 1598, + 1610, + 1632, + 1643, + 1655, + 1663, + 1675, 1693, - 1709, - 1719, - 1723, - 1733, - 1743, - 1747, - 1754, - 1764, - 1772, - 1777, - 1784, - 1793, - 1801, - 1819, - 1835, + 1704, + 1716, + 1734, + 1745, + 1757, + 1773, + 1783, + 1787, + 1797, + 1807, + 1811, + 1818, + 1828, 1836, - 1837, - 1849, - 1863, - 1877, - 1885, - 1896, - 1909, - 1917, - 1926, - 1928, - 1930, - 1944, - 1962, - 1972, - 1980, - 1995, - 2006, - 2018, - 2036, - 2047, + 1841, + 1848, + 1857, + 1865, + 1883, + 1898, + 1899, + 1900, + 1912, + 1925, + 1938, + 1942, + 1948, + 1956, + 1960, + 1974, + 1985, + 1986, + 1987, + 1999, + 2013, + 2026, + 2034, + 2049, 2059, - 2077, - 2088, - 2100, - 2116, - 2127, - 2131, - 2139, - 2153, - 2161, - 2176, + 2060, + 2061, + 2065, + 2080, + 2096, + 2097, + 2098, + 2110, + 2124, + 2138, + 2146, + 2157, + 2170, + 2178, 2187, - 2199, - 2217, - 2228, - 2240, - 2258, - 2270, - 2282, - 2294, - 2303, - 2307, - 2313, - 2322, - 2326, - 2340, - 2351, - 2352, - 2353, - 2365, + 2189, + 2191, + 2205, + 2223, + 2233, + 2241, + 2256, + 2267, + 2279, + 2297, + 2308, + 2320, + 2338, + 2349, + 2361, 2377, - 2386, - 2390, - 2402, - 2413, + 2388, + 2392, + 2400, 2414, - 2415, - 2419, - 2431, - 2443, - 2455, - 2474, + 2422, + 2437, + 2448, + 2460, + 2478, 2489, 2501, - 2521, - 2532, - 2533, - 2534, - 2546, + 2519, + 2531, + 2543, + 2555, 2564, - 2576, - 2588, - 2609, - 2625, + 2568, + 2574, + 2583, + 2587, + 2601, + 2612, + 2613, + 2614, 2626, - 2627, - 2639, - 2657, - 2668, + 2638, + 2647, + 2651, + 2663, + 2674, + 2675, + 2676, 2680, - 2698, - 2708, - 2709, - 2710, - 2714, - 2726, - 2738, + 2692, + 2704, + 2716, + 2735, 2750, - 2763, - 2773, - 2781, - 2796, - 2806, + 2762, + 2782, + 2793, + 2794, + 2795, 2807, - 2808, - 2812, - 2827, - 2842, - 2843, - 2844, - 2856, - 2868, - 2876, - 2880, - 2892, - 2904, - 2916, - 2928, - 2936, - 2940, - 2967, - 2968, + 2825, + 2837, + 2849, + 2870, + 2886, + 2887, + 2888, + 2900, + 2918, + 2929, + 2941, + 2959, 2969, - 2993, - 3002, - 3010, - 3020, - 3029, - 3037, - 3055, - 3070, - 3071, - 3072, - 3084, - 3092, - 3094, - 3105, - 3116, - 3128, - 3141, - 3151, + 2970, + 2971, + 2975, + 2987, + 2999, + 3011, + 3031, + 3043, + 3044, + 3045, + 3057, + 3075, + 3085, + 3086, + 3087, + 3091, + 3106, + 3121, + 3122, + 3123, + 3135, + 3147, + 3155, 3159, - 3169, - 3178, + 3173, + 3185, 3186, - 3201, - 3212, - 3224, - 3244, - 3255, - 3256, - 3257, - 3269, + 3187, + 3199, + 3211, + 3219, + 3223, + 3250, + 3251, + 3252, + 3276, 3285, - 3305, - 3316, - 3328, - 3341, - 3350, - 3358, - 3373, - 3384, - 3396, - 3416, - 3427, - 3428, - 3429, - 3441, - 3471, - 3482, - 3494, - 3502, - 3513, - 3514, - 3515, + 3293, + 3303, + 3312, + 3320, + 3338, + 3353, + 3354, + 3355, + 3367, + 3375, + 3377, + 3388, + 3399, + 3411, + 3424, + 3434, + 3442, + 3452, + 3461, + 3469, + 3484, + 3495, + 3507, 3527, - 3546, + 3538, + 3539, + 3540, + 3552, 3568, - 3579, - 3591, - 3607, + 3588, + 3599, + 3611, + 3624, 3633, - 3660, - 3671, - 3683, + 3641, + 3656, + 3667, + 3679, 3699, - 3719, - 3730, - 3742, - 3760, - 3771, - 3783, - 3811, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, + 3710, + 3711, + 3712, + 3724, + 3754, + 3765, + 3777, + 3785, + 3796, + 3797, + 3798, + 3810, 3829, - 3830, - 3842, - 3855, - 3865, - 3873, - 3884, - 3897, - 3905, - 3915, - 3924, - 3932, - 3947, - 3958, - 3970, - 3988, - 3999, - 4011, - 4035, - 4057, - 4067, - 4075, - 4085, + 3851, + 3862, + 3874, + 3890, + 3916, + 3943, + 3954, + 3966, + 3982, + 4002, + 4013, + 4025, + 4043, + 4054, + 4066, 4094, - 4102, + 4105, + 4106, + 4107, + 4108, + 4109, + 4110, + 4111, 4112, - 4121, - 4129, - 4143, - 4153, - 4161, - 4171, + 4113, + 4125, + 4138, + 4148, + 4156, + 4167, 4180, 4188, - 4205, - 4217, - 4218, - 4219, - 4231, - 4243, - 4251, - 4255, - 4257, - 4267, - 4277, - 4281, - 4288, - 4298, - 4306, - 4316, - 4325, - 4333, - 4348, - 4359, - 4371, - 4391, - 4402, - 4403, + 4198, + 4207, + 4215, + 4230, + 4241, + 4253, + 4271, + 4282, + 4294, + 4318, + 4340, + 4350, + 4358, + 4368, + 4377, + 4385, + 4395, 4404, - 4416, - 4429, - 4438, - 4446, - 4461, + 4412, + 4426, + 4436, + 4444, + 4454, + 4463, 4471, - 4472, - 4473, - 4477, 4489, - 4500, - 4512, - 4532, - 4544, + 4505, + 4506, + 4507, + 4519, + 4531, + 4539, + 4543, 4545, - 4546, - 4558, - 4571, - 4581, - 4589, - 4599, - 4608, - 4616, - 4633, - 4645, - 4646, + 4555, + 4565, + 4569, + 4576, + 4586, + 4594, + 4604, + 4613, + 4621, + 4636, 4647, 4659, - 4667, - 4669, - 4670, - 4682, - 4694, - 4706, + 4679, + 4690, + 4691, + 4692, + 4704, + 4717, 4726, - 4738, - 4739, - 4740, - 4752, - 4768, - 4778, - 4782, - 4792, - 4802, - 4806, - 4818, - 4829, - 4841, + 4734, + 4749, + 4759, + 4760, + 4761, + 4765, + 4777, + 4788, + 4800, + 4820, + 4832, + 4833, + 4834, + 4846, 4859, - 4870, - 4882, - 4900, - 4911, - 4923, - 4944, - 4960, - 4961, - 4962, - 4974, - 4992, - 5003, - 5015, - 5033, - 5044, + 4869, + 4877, + 4887, + 4896, + 4904, + 4921, + 4933, + 4934, + 4935, + 4947, + 4955, + 4957, + 4958, + 4970, + 4982, + 4994, + 5014, + 5026, + 5027, + 5028, + 5040, 5056, - 5074, - 5086, - 5098, - 5128, - 5140, - 5141, - 5142, - 5143, - 5144, - 5145, - 5146, + 5066, + 5070, + 5080, + 5090, + 5094, + 5106, + 5117, + 5129, 5147, - 5148, - 5149, - 5150, - 5162, + 5158, 5170, + 5188, 5199, - 5200, - 5201, - 5202, - 5203, - 5204, - 5205, - 5206, - 5207, + 5211, 5232, - 5258, - 5301, - 5302, + 5248, + 5249, + 5250, + 5262, + 5280, + 5291, 5303, - 5304, - 5305, - 5306, - 5307, - 5308, - 5309, - 5338, - 5366, - 5391, - 5409, - 5427, - 5448, - 5468, + 5321, + 5332, + 5344, + 5362, + 5374, + 5386, + 5416, + 5428, + 5429, + 5430, + 5431, + 5432, + 5433, + 5434, + 5435, + 5436, + 5437, + 5438, + 5450, + 5458, + 5487, + 5488, + 5489, + 5490, + 5491, + 5492, + 5493, 5494, - 5519, - 5537, - 5573, - 5574, - 5575, - 5576, - 5577, - 5578, - 5579, - 5580, - 5581, - 5606, - 5624, - 5642, - 5670, + 5495, + 5520, + 5546, + 5589, + 5590, + 5591, + 5592, + 5593, + 5594, + 5595, + 5596, + 5597, + 5626, + 5654, + 5679, 5697, 5715, - 5733, - 5759, - 5784, - 5802, - 5820, - 5847, - 5848, - 5849, + 5736, + 5756, + 5782, + 5807, + 5825, + 5861, 5862, - 5882, - 5902, - 5932, - 5944, - 5945, - 5946, - 5947, - 5948, - 5949, - 5950, - 5951, - 5952, - 5964, - 5998, - 5999, - 6000, - 6001, - 6002, + 5863, + 5864, + 5865, + 5866, + 5867, + 5868, + 5869, + 5894, + 5912, + 5930, + 5958, + 5985, 6003, - 6004, - 6005, - 6006, - 6049, - 6050, - 6051, - 6052, - 6053, - 6054, - 6055, - 6056, - 6057 + 6021, + 6047, + 6072, + 6090, + 6108, + 6135, + 6136, + 6137, + 6150, + 6170, + 6190, + 6220, + 6232, + 6233, + 6234, + 6235, + 6236, + 6237, + 6238, + 6239, + 6240, + 6252, + 6286, + 6287, + 6288, + 6289, + 6290, + 6291, + 6292, + 6293, + 6294, + 6337, + 6338, + 6339, + 6340, + 6341, + 6342, + 6343, + 6344, + 6345 ], "types": { "ActiveConnection": { "application_name": [ - 80 + 83 ], "client_addr": [ - 80 + 83 ], "pid": [ 40 ], "query": [ - 80 + 83 ], "query_start": [ - 4669 + 4957 ], "state": [ - 80 + 83 ], "usename": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "ActiveQuery": { "application_name": [ - 80 + 83 ], "client_addr": [ - 80 + 83 ], "duration_seconds": [ 31 @@ -727,33 +767,33 @@ export default { 40 ], "query": [ - 80 + 83 ], "query_start": [ - 4669 + 4957 ], "state": [ - 80 + 83 ], "usename": [ - 80 + 83 ], "wait_event": [ - 80 + 83 ], "wait_event_type": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "ApiKeyResponse": { "key": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "Award": { @@ -761,87 +801,87 @@ export default { 5 ], "created_at": [ - 80 + 83 ], "created_by_steam_id": [ - 80 + 83 ], "description": [ - 80 + 83 ], "event_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "image_url": [ - 80 + 83 ], "league_season_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "season_id": [ - 5170 + 5458 ], "silhouette": [ 40 ], "system_key": [ - 80 + 83 ], "tier": [ - 80 + 83 ], "tournament_id": [ - 5170 + 5458 ], "updated_at": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "AwardRecipient": { "award_id": [ - 5170 + 5458 ], "awarded_by_steam_id": [ - 80 + 83 ], "created_at": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "note": [ - 80 + 83 ], "placement": [ 40 ], "player_steam_id": [ - 80 + 83 ], "source": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "Boolean": {}, @@ -874,7 +914,7 @@ export default { 5 ], "__typename": [ - 80 + 83 ] }, "ClipAudioInput": { @@ -888,27 +928,27 @@ export default { 40 ], "track_url": [ - 80 + 83 ], "volume": [ 31 ], "__typename": [ - 80 + 83 ] }, "ClipOutputInput": { "format": [ - 80 + 83 ], "fps": [ 40 ], "resolution": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "ClipOverlayInput": { @@ -916,16 +956,16 @@ export default { 40 ], "payload": [ - 1930 + 2191 ], "start_ms": [ 40 ], "type": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "ClipSegmentInput": { @@ -933,13 +973,13 @@ export default { 40 ], "pov_steam_id": [ - 80 + 83 ], "start_tick": [ 40 ], "__typename": [ - 80 + 83 ] }, "ClipSpecInput": { @@ -947,10 +987,10 @@ export default { 7 ], "destination": [ - 80 + 83 ], "match_map_id": [ - 5170 + 5458 ], "output": [ 8 @@ -962,10 +1002,10 @@ export default { 10 ], "title": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "ConnectionByState": { @@ -973,16 +1013,16 @@ export default { 40 ], "state": [ - 80 + 83 ], "wait_event_type": [ - 80 + 83 ], "waiting_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "ConnectionStats": { @@ -1005,51 +1045,51 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "CpuStat": { "time": [ - 4669 + 4957 ], "total": [ - 264 + 268 ], "used": [ - 264 + 268 ], "window": [ 31 ], "__typename": [ - 80 + 83 ] }, "CreateClipRenderOutput": { "job_id": [ - 5170 + 5458 ], "success": [ 5 ], "__typename": [ - 80 + 83 ] }, "CreateDraftGameOutput": { "draftGameId": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "CreateScheduledMatchOutput": { "matchId": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "DatabaseStats": { @@ -1066,7 +1106,7 @@ export default { 40 ], "datname": [ - 80 + 83 ], "deadlocks": [ 40 @@ -1096,7 +1136,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "DbStats": { @@ -1119,10 +1159,10 @@ export default { 31 ], "query": [ - 80 + 83 ], "queryid": [ - 80 + 83 ], "shared_blks_hit": [ 40 @@ -1137,24 +1177,24 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "DedicatedSeverInfo": { "id": [ - 80 + 83 ], "lastPing": [ - 80 + 83 ], "map": [ - 80 + 83 ], "players": [ 40 ], "__typename": [ - 80 + 83 ] }, "DeleteOrphansOutput": { @@ -1171,30 +1211,30 @@ export default { 5 ], "__typename": [ - 80 + 83 ] }, "DiskStat": { "available": [ - 80 + 83 ], "filesystem": [ - 80 + 83 ], "mountpoint": [ - 80 + 83 ], "size": [ - 80 + 83 ], "used": [ - 80 + 83 ], "usedPercent": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "DiskStats": { @@ -1202,10 +1242,10 @@ export default { 22 ], "time": [ - 4669 + 4957 ], "__typename": [ - 80 + 83 ] }, "DraftGamePreviewOutput": { @@ -1213,25 +1253,25 @@ export default { 40 ], "access": [ - 80 + 83 ], "capacity": [ 40 ], "host_avatar_url": [ - 80 + 83 ], "host_name": [ - 80 + 83 ], "host_steam_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "mode": [ - 80 + 83 ], "players": [ 25 @@ -1240,30 +1280,30 @@ export default { 5 ], "status": [ - 80 + 83 ], "type": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "DraftGamePreviewPlayer": { "avatar_url": [ - 80 + 83 ], "name": [ - 80 + 83 ], "status": [ - 80 + 83 ], "steam_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "FaceitTestOutput": { @@ -1274,32 +1314,32 @@ export default { 27 ], "__typename": [ - 80 + 83 ] }, "FaceitTestResult": { "detail": [ - 80 + 83 ], "ok": [ 5 ], "__typename": [ - 80 + 83 ] }, "FileContentResponse": { "content": [ - 80 + 83 ], "path": [ - 80 + 83 ], "size": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "FileItem": { @@ -1307,33 +1347,33 @@ export default { 5 ], "modified": [ - 4669 + 4957 ], "name": [ - 80 + 83 ], "path": [ - 80 + 83 ], "size": [ - 264 + 268 ], "type": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "FileListResponse": { "currentPath": [ - 80 + 83 ], "items": [ 29 ], "__typename": [ - 80 + 83 ] }, "Float": {}, @@ -1366,18 +1406,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "GetTestUploadResponse": { "error": [ - 80 + 83 ], "link": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "GpuDeviceStat": { @@ -1391,7 +1431,7 @@ export default { 40 ], "name": [ - 80 + 83 ], "power_w": [ 40 @@ -1403,7 +1443,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "GpuStats": { @@ -1411,10 +1451,10 @@ export default { 34 ], "time": [ - 4669 + 4957 ], "__typename": [ - 80 + 83 ] }, "HighlightPresetAvailability": { @@ -1434,7 +1474,7 @@ export default { 5 ], "__typename": [ - 80 + 83 ] }, "HypertableInfo": { @@ -1442,13 +1482,13 @@ export default { 5 ], "hypertable_name": [ - 80 + 83 ], "num_chunks": [ 40 ], "__typename": [ - 80 + 83 ] }, "IndexIOStat": { @@ -1459,16 +1499,16 @@ export default { 40 ], "indexname": [ - 80 + 83 ], "schemaname": [ - 80 + 83 ], "tablename": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "IndexStat": { @@ -1485,19 +1525,19 @@ export default { 40 ], "indexname": [ - 80 + 83 ], "schemaname": [ - 80 + 83 ], "table_size": [ 40 ], "tablename": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "Int": {}, @@ -1530,7 +1570,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "KickResult": { @@ -1538,45 +1578,45 @@ export default { 5 ], "message": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "LiveSpecGsi": { "map_name": [ - 80 + 83 ], "map_phase": [ - 80 + 83 ], "round_number": [ 40 ], "round_phase": [ - 80 + 83 ], "spec_slots": [ 44 ], "spectated_steam_id": [ - 80 + 83 ], "team_ct_name": [ - 80 + 83 ], "team_ct_score": [ 40 ], "team_t_name": [ - 80 + 83 ], "team_t_score": [ 40 ], "__typename": [ - 80 + 83 ] }, "LiveSpecSlot": { @@ -1587,19 +1627,19 @@ export default { 40 ], "name": [ - 80 + 83 ], "slot": [ 40 ], "steam_id": [ - 80 + 83 ], "team": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "LiveStreamSpecState": { @@ -1607,7 +1647,7 @@ export default { 43 ], "__typename": [ - 80 + 83 ] }, "LockInfo": { @@ -1615,71 +1655,71 @@ export default { 5 ], "locktype": [ - 80 + 83 ], "mode": [ - 80 + 83 ], "pid": [ 40 ], "query": [ - 80 + 83 ], "relation": [ - 80 + 83 ], "usename": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "MeResponse": { "avatar_url": [ - 80 + 83 ], "country": [ - 80 + 83 ], "discord_id": [ - 80 + 83 ], "language": [ - 80 + 83 ], "name": [ - 80 + 83 ], "player": [ - 4052 + 4335 ], "profile_url": [ - 80 + 83 ], "role": [ - 80 + 83 ], "steam_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "MemoryStat": { "time": [ - 4669 + 4957 ], "total": [ - 264 + 268 ], "used": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "NetworkStats": { @@ -1687,65 +1727,65 @@ export default { 51 ], "time": [ - 4669 + 4957 ], "__typename": [ - 80 + 83 ] }, "NewsPost": { "author_steam_id": [ - 80 + 83 ], "content_markdown": [ - 80 + 83 ], "cover_image_url": [ - 80 + 83 ], "created_at": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "published_at": [ - 80 + 83 ], "slug": [ - 80 + 83 ], "status": [ - 80 + 83 ], "teaser": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 80 + 83 ], "view_count": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "NicStat": { "name": [ - 80 + 83 ], "rx": [ - 264 + 268 ], "tx": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "NodeStats": { @@ -1765,26 +1805,26 @@ export default { 49 ], "node": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "OrphanObject": { "key": [ - 80 + 83 ], "size": [ 31 ], "__typename": [ - 80 + 83 ] }, "OrphanScanResultOutput": { "bucket": [ - 80 + 83 ], "clip_bytes": [ 31 @@ -1817,7 +1857,7 @@ export default { 40 ], "scanned_at": [ - 80 + 83 ], "scanning": [ 5 @@ -1835,18 +1875,35 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "PendingMatchImportActionOutput": { "error": [ - 80 + 83 ], "success": [ 5 ], "__typename": [ - 80 + 83 + ] + }, + "PluginReadmeOutput": { + "content": [ + 83 + ], + "format": [ + 83 + ], + "repo": [ + 83 + ], + "url": [ + 83 + ], + "__typename": [ + 83 ] }, "PodStats": { @@ -1857,38 +1914,52 @@ export default { 48 ], "name": [ - 80 + 83 ], "node": [ - 80 + 83 ], "__typename": [ - 80 + 83 + ] + }, + "PreviewGameModeOutput": { + "cfg": [ + 83 + ], + "enabledPlugins": [ + 83 + ], + "extraGameParams": [ + 83 + ], + "__typename": [ + 83 ] }, "PreviewTournamentMatchResetOutput": { "impacts": [ - 103 + 107 ], "__typename": [ - 80 + 83 ] }, "QueryDetail": { "explain_plan": [ - 80 + 83 ], "query": [ - 80 + 83 ], "queryid": [ - 80 + 83 ], "stats": [ - 59 + 61 ], "__typename": [ - 80 + 83 ] }, "QueryStat": { @@ -1914,10 +1985,10 @@ export default { 31 ], "query": [ - 80 + 83 ], "queryid": [ - 80 + 83 ], "shared_blks_hit": [ 40 @@ -1938,7 +2009,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "RecomputeEloStartedOutput": { @@ -1949,7 +2020,7 @@ export default { 5 ], "__typename": [ - 80 + 83 ] }, "RecomputeEloStatusOutput": { @@ -1960,25 +2031,33 @@ export default { 40 ], "current_match_id": [ - 80 + 83 ], "failed": [ 40 ], "finished_at": [ - 80 + 83 ], "running": [ 5 ], "started_at": [ - 80 + 83 ], "total": [ 40 ], "__typename": [ - 80 + 83 + ] + }, + "ReconcileNodePluginsOutput": { + "detected": [ + 40 + ], + "__typename": [ + 83 ] }, "ReindexStartedOutput": { @@ -1989,7 +2068,7 @@ export default { 5 ], "__typename": [ - 80 + 83 ] }, "ReindexStatusOutput": { @@ -2000,25 +2079,25 @@ export default { 40 ], "current_steam_id": [ - 80 + 83 ], "failed": [ 40 ], "finished_at": [ - 80 + 83 ], "running": [ 5 ], "started_at": [ - 80 + 83 ], "total": [ 40 ], "__typename": [ - 80 + 83 ] }, "ReparseAllStartedOutput": { @@ -2029,7 +2108,7 @@ export default { 5 ], "__typename": [ - 80 + 83 ] }, "ReparseAllStatusOutput": { @@ -2040,25 +2119,25 @@ export default { 40 ], "current_demo_id": [ - 80 + 83 ], "failed": [ 40 ], "finished_at": [ - 80 + 83 ], "running": [ 5 ], "started_at": [ - 80 + 83 ], "total": [ 40 ], "__typename": [ - 80 + 83 ] }, "SanctionResult": { @@ -2066,13 +2145,13 @@ export default { 5 ], "id": [ - 80 + 83 ], "message": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "ScanStartedOutput": { @@ -2083,18 +2162,18 @@ export default { 5 ], "__typename": [ - 80 + 83 ] }, "ScheduledLineupInput": { "steam_ids": [ - 80 + 83 ], "team_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "SeasonBackfillStatusOutput": { @@ -2105,61 +2184,61 @@ export default { 40 ], "current_match_id": [ - 80 + 83 ], "failed": [ 40 ], "finished_at": [ - 80 + 83 ], "running": [ 5 ], "season_id": [ - 80 + 83 ], "started_at": [ - 80 + 83 ], "total": [ 40 ], "__typename": [ - 80 + 83 ] }, "ServerPlayer": { "name": [ - 80 + 83 ], "steam_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "SetupGameServeOutput": { "gameServerId": [ - 80 + 83 ], "link": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "SteamMatchHistoryLinkOutput": { "error": [ - 80 + 83 ], "success": [ 5 ], "__typename": [ - 80 + 83 ] }, "SteamMatchHistoryPollOutput": { @@ -2167,27 +2246,27 @@ export default { 40 ], "error": [ - 80 + 83 ], "success": [ 5 ], "__typename": [ - 80 + 83 ] }, "SteamPresenceAdminStatusOutput": { "bots": [ - 75 + 78 ], "enabled": [ 5 ], "pool": [ - 77 + 80 ], "__typename": [ - 80 + 83 ] }, "SteamPresenceBot": { @@ -2201,10 +2280,10 @@ export default { 5 ], "guardType": [ - 80 + 83 ], "id": [ - 80 + 83 ], "needs2fa": [ 5 @@ -2213,36 +2292,36 @@ export default { 5 ], "steamId": [ - 80 + 83 ], "steamLevel": [ 40 ], "username": [ - 80 + 83 ], "watching": [ 40 ], "__typename": [ - 80 + 83 ] }, "SteamPresenceBotAssignment": { "addUrl": [ - 80 + 83 ], "enabled": [ 5 ], "status": [ - 80 + 83 ], "steamId": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "SteamPresencePool": { @@ -2262,18 +2341,18 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "StorageStats": { "summary": [ - 79 + 82 ], "tables": [ - 85 + 89 ], "__typename": [ - 80 + 83 ] }, "StorageSummary": { @@ -2290,108 +2369,108 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "String": {}, "String_array_comparison_exp": { "_contained_in": [ - 80 + 83 ], "_contains": [ - 80 + 83 ], "_eq": [ - 80 + 83 ], "_gt": [ - 80 + 83 ], "_gte": [ - 80 + 83 ], "_in": [ - 80 + 83 ], "_is_null": [ 5 ], "_lt": [ - 80 + 83 ], "_lte": [ - 80 + 83 ], "_neq": [ - 80 + 83 ], "_nin": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "String_comparison_exp": { "_eq": [ - 80 + 83 ], "_gt": [ - 80 + 83 ], "_gte": [ - 80 + 83 ], "_ilike": [ - 80 + 83 ], "_in": [ - 80 + 83 ], "_iregex": [ - 80 + 83 ], "_is_null": [ 5 ], "_like": [ - 80 + 83 ], "_lt": [ - 80 + 83 ], "_lte": [ - 80 + 83 ], "_neq": [ - 80 + 83 ], "_nilike": [ - 80 + 83 ], "_nin": [ - 80 + 83 ], "_niregex": [ - 80 + 83 ], "_nlike": [ - 80 + 83 ], "_nregex": [ - 80 + 83 ], "_nsimilar": [ - 80 + 83 ], "_regex": [ - 80 + 83 ], "_similar": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "SuccessOutput": { @@ -2399,7 +2478,18 @@ export default { 5 ], "__typename": [ - 80 + 83 + ] + }, + "SyncPluginRegistryOutput": { + "plugins": [ + 40 + ], + "versions": [ + 40 + ], + "__typename": [ + 83 ] }, "TableIOStat": { @@ -2419,13 +2509,13 @@ export default { 40 ], "relname": [ - 80 + 83 ], "schemaname": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "TableSizeInfo": { @@ -2442,19 +2532,19 @@ export default { 40 ], "schemaname": [ - 80 + 83 ], "table_size": [ 31 ], "tablename": [ - 80 + 83 ], "total_size": [ 31 ], "__typename": [ - 80 + 83 ] }, "TableStat": { @@ -2465,16 +2555,16 @@ export default { 40 ], "last_analyze": [ - 4669 + 4957 ], "last_autoanalyze": [ - 4669 + 4957 ], "last_autovacuum": [ - 4669 + 4957 ], "last_vacuum": [ - 4669 + 4957 ], "n_dead_tup": [ 40 @@ -2495,10 +2585,10 @@ export default { 40 ], "relname": [ - 80 + 83 ], "schemaname": [ - 80 + 83 ], "seq_scan": [ 40 @@ -2507,20 +2597,20 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "TeamCalendarOutput": { "url": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "TelemetryActivityPoint": { "day": [ - 80 + 83 ], "installs": [ 40 @@ -2529,18 +2619,18 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "TelemetryCountryCount": { "country": [ - 80 + 83 ], "installs": [ 40 ], "__typename": [ - 80 + 83 ] }, "TelemetryFeatureAdoption": { @@ -2557,10 +2647,10 @@ export default { 40 ], "key": [ - 80 + 83 ], "kind": [ - 80 + 83 ], "reporting": [ 40 @@ -2569,7 +2659,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "TelemetryFleetTotals": { @@ -2588,6 +2678,15 @@ export default { "events": [ 40 ], + "gameModes": [ + 40 + ], + "gameModesEnabled": [ + 40 + ], + "gameModesUnranked": [ + 40 + ], "gameServerNodes": [ 40 ], @@ -2681,6 +2780,18 @@ export default { "playersRegistered": [ 40 ], + "pluginsBySlug": [ + 2191 + ], + "pluginsManual": [ + 40 + ], + "pluginsReported": [ + 40 + ], + "pluginsRequested": [ + 40 + ], "publicServers": [ 40 ], @@ -2709,7 +2820,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "TelemetryGrowthPoint": { @@ -2717,10 +2828,10 @@ export default { 40 ], "month": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "TelemetryInstallCounts": { @@ -2743,7 +2854,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "TelemetryMatchSourceCount": { @@ -2751,10 +2862,10 @@ export default { 40 ], "source": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "TelemetryMatchTypeCount": { @@ -2762,10 +2873,10 @@ export default { 40 ], "type": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "TelemetryRuntimeCount": { @@ -2773,48 +2884,48 @@ export default { 40 ], "runtime": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "TelemetryStats": { "activity": [ - 88 + 92 ], "countries": [ - 89 + 93 ], "features": [ - 90 + 94 ], "growth": [ - 92 + 96 ], "installs": [ - 93 + 97 ], "matchSources": [ - 94 + 98 ], "matchTypes": [ - 95 + 99 ], "online": [ 40 ], "runtimes": [ - 96 + 100 ], "totals": [ - 91 + 95 ], "versions": [ - 98 + 102 ], "__typename": [ - 80 + 83 ] }, "TelemetryVersionCount": { @@ -2825,41 +2936,41 @@ export default { 40 ], "since": [ - 80 + 83 ], "version": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "TestUploadResponse": { "error": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "TimescaleJob": { "hypertable_name": [ - 80 + 83 ], "job_id": [ 40 ], "job_type": [ - 80 + 83 ], "last_run_status": [ - 80 + 83 ], "next_start": [ - 4669 + 4957 ], "__typename": [ - 80 + 83 ] }, "TimescaleStats": { @@ -2870,24 +2981,24 @@ export default { 37 ], "jobs": [ - 100 + 104 ], "__typename": [ - 80 + 83 ] }, "TournamentAward": { "award_id": [ - 5170 + 5458 ], "custom_name": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "image_url": [ - 80 + 83 ], "placement": [ 40 @@ -2896,15 +3007,15 @@ export default { 40 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "TournamentMatchResetImpact": { "bracket_id": [ - 5170 + 5458 ], "depth": [ 40 @@ -2913,45 +3024,45 @@ export default { 5 ], "match_id": [ - 5170 + 5458 ], "match_number": [ 40 ], "match_status": [ - 80 + 83 ], "path": [ - 80 + 83 ], "round": [ 40 ], "stage_type": [ - 80 + 83 ], "will_delete_match": [ 5 ], "__typename": [ - 80 + 83 ] }, "WatchDemoOutput": { "match_map_id": [ - 80 + 83 ], "session_id": [ - 80 + 83 ], "stream_url": [ - 80 + 83 ], "success": [ 5 ], "__typename": [ - 80 + 83 ] }, "WebPushPlatformCount": { @@ -2959,10 +3070,10 @@ export default { 40 ], "platform": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "WebPushStatusOutput": { @@ -2973,7 +3084,7 @@ export default { 5 ], "last_delivered_at": [ - 4670 + 4958 ], "managed_by_environment": [ 5 @@ -2985,7 +3096,7 @@ export default { 40 ], "platforms": [ - 105 + 109 ], "players": [ 40 @@ -2994,29 +3105,29 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "_map_pool": { "map_id": [ - 5170 + 5458 ], "map_pool_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "_map_pool_aggregate": { "aggregate": [ - 109 + 113 ], "nodes": [ - 107 + 111 ], "__typename": [ - 80 + 83 ] }, "_map_pool_aggregate_fields": { @@ -3024,7 +3135,7 @@ export default { 40, { "columns": [ - 119, + 123, "[_map_pool_select_column!]" ], "distinct": [ @@ -3033,67 +3144,67 @@ export default { } ], "max": [ - 113 + 117 ], "min": [ - 114 + 118 ], "__typename": [ - 80 + 83 ] }, "_map_pool_bool_exp": { "_and": [ - 110 + 114 ], "_not": [ - 110 + 114 ], "_or": [ - 110 + 114 ], "map_id": [ - 5172 + 5460 ], "map_pool_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 5170 + 5458 ], "map_pool_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "_map_pool_max_fields": { "map_id": [ - 5170 + 5458 ], "map_pool_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "_map_pool_min_fields": { "map_id": [ - 5170 + 5458 ], "map_pool_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "_map_pool_mutation_response": { @@ -3101,160 +3212,160 @@ export default { 40 ], "returning": [ - 107 + 111 ], "__typename": [ - 80 + 83 ] }, "_map_pool_on_conflict": { "constraint": [ - 111 + 115 ], "update_columns": [ - 123 + 127 ], "where": [ - 110 + 114 ], "__typename": [ - 80 + 83 ] }, "_map_pool_order_by": { "map_id": [ - 3094 + 3377 ], "map_pool_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "_map_pool_pk_columns_input": { "map_id": [ - 5170 + 5458 ], "map_pool_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 5170 + 5458 ], "map_pool_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "_map_pool_stream_cursor_input": { "initial_value": [ - 122 + 126 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 5170 + 5458 ], "map_pool_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "_map_pool_update_column": {}, "_map_pool_updates": { "_set": [ - 120 + 124 ], "where": [ - 110 + 114 ], "__typename": [ - 80 + 83 ] }, "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_aggregate": { "aggregate": [ - 130 + 134 ], "nodes": [ - 126 + 130 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_aggregate_bool_exp": { "count": [ - 129 + 133 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_aggregate_bool_exp_count": { "arguments": [ - 147 + 151 ], "distinct": [ 5 ], "filter": [ - 135 + 139 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_aggregate_fields": { "avg": [ - 133 + 137 ], "count": [ 40, { "columns": [ - 147, + 151, "[abandoned_matches_select_column!]" ], "distinct": [ @@ -3263,83 +3374,83 @@ export default { } ], "max": [ - 139 + 143 ], "min": [ - 141 + 145 ], "stddev": [ - 149 + 153 ], "stddev_pop": [ - 151 + 155 ], "stddev_samp": [ - 153 + 157 ], "sum": [ - 157 + 161 ], "var_pop": [ - 161 + 165 ], "var_samp": [ - 163 + 167 ], "variance": [ - 165 + 169 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_aggregate_order_by": { "avg": [ - 134 + 138 ], "count": [ - 3094 + 3377 ], "max": [ - 140 + 144 ], "min": [ - 142 + 146 ], "stddev": [ - 150 + 154 ], "stddev_pop": [ - 152 + 156 ], "stddev_samp": [ - 154 + 158 ], "sum": [ - 158 + 162 ], "var_pop": [ - 162 + 166 ], "var_samp": [ - 164 + 168 ], "variance": [ - 166 + 170 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_arr_rel_insert_input": { "data": [ - 138 + 142 ], "on_conflict": [ - 144 + 148 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_avg_fields": { @@ -3347,141 +3458,141 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_avg_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_bool_exp": { "_and": [ - 135 + 139 ], "_not": [ - 135 + 139 ], "_or": [ - 135 + 139 ], "abandoned_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_constraint": {}, "abandoned_matches_inc_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_mutation_response": { @@ -3489,70 +3600,70 @@ export default { 40 ], "returning": [ - 126 + 130 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_on_conflict": { "constraint": [ - 136 + 140 ], "update_columns": [ - 159 + 163 ], "where": [ - 135 + 139 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_order_by": { "abandoned_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_stddev_fields": { @@ -3560,15 +3671,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_stddev_pop_fields": { @@ -3576,15 +3687,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_stddev_samp_fields": { @@ -3592,74 +3703,74 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_stream_cursor_input": { "initial_value": [ - 156 + 160 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_sum_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_update_column": {}, "abandoned_matches_updates": { "_inc": [ - 137 + 141 ], "_set": [ - 148 + 152 ], "where": [ - 135 + 139 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_var_pop_fields": { @@ -3667,15 +3778,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_var_samp_fields": { @@ -3683,15 +3794,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_variance_fields": { @@ -3699,57 +3810,57 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "abandoned_matches_variance_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "api_keys": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "last_used_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "api_keys_aggregate": { "aggregate": [ - 169 + 173 ], "nodes": [ - 167 + 171 ], "__typename": [ - 80 + 83 ] }, "api_keys_aggregate_fields": { "avg": [ - 170 + 174 ], "count": [ 40, { "columns": [ - 181, + 185, "[api_keys_select_column!]" ], "distinct": [ @@ -3758,34 +3869,34 @@ export default { } ], "max": [ - 175 + 179 ], "min": [ - 176 + 180 ], "stddev": [ - 183 + 187 ], "stddev_pop": [ - 184 + 188 ], "stddev_samp": [ - 185 + 189 ], "sum": [ - 188 + 192 ], "var_pop": [ - 191 + 195 ], "var_samp": [ - 192 + 196 ], "variance": [ - 193 + 197 ], "__typename": [ - 80 + 83 ] }, "api_keys_avg_fields": { @@ -3793,105 +3904,105 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "api_keys_bool_exp": { "_and": [ - 171 + 175 ], "_not": [ - 171 + 175 ], "_or": [ - 171 + 175 ], "created_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "label": [ - 82 + 85 ], "last_used_at": [ - 4671 + 4959 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "api_keys_constraint": {}, "api_keys_inc_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "api_keys_insert_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "last_used_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "api_keys_max_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "last_used_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "api_keys_min_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "last_used_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "api_keys_mutation_response": { @@ -3899,73 +4010,73 @@ export default { 40 ], "returning": [ - 167 + 171 ], "__typename": [ - 80 + 83 ] }, "api_keys_on_conflict": { "constraint": [ - 172 + 176 ], "update_columns": [ - 189 + 193 ], "where": [ - 171 + 175 ], "__typename": [ - 80 + 83 ] }, "api_keys_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "last_used_at": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "api_keys_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "last_used_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "api_keys_stddev_fields": { @@ -3973,7 +4084,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "api_keys_stddev_pop_fields": { @@ -3981,7 +4092,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "api_keys_stddev_samp_fields": { @@ -3989,61 +4100,61 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "api_keys_stream_cursor_input": { "initial_value": [ - 187 + 191 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "last_used_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "api_keys_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "api_keys_update_column": {}, "api_keys_updates": { "_inc": [ - 173 + 177 ], "_set": [ - 182 + 186 ], "where": [ - 171 + 175 ], "__typename": [ - 80 + 83 ] }, "api_keys_var_pop_fields": { @@ -4051,7 +4162,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "api_keys_var_samp_fields": { @@ -4059,7 +4170,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "api_keys_variance_fields": { @@ -4067,142 +4178,142 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "approve_league_season_movements_args": { "_league_season_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "award_recipients": { "award": [ - 236 + 240 ], "award_id": [ - 5170 + 5458 ], "awarded_by": [ - 4052 + 4335 ], "awarded_by_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "event": [ - 1749 + 1813 ], "event_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "league_season": [ - 2133 + 2394 ], "league_season_id": [ - 5170 + 5458 ], "note": [ - 80 + 83 ], "placement": [ 40 ], "placement_tier": [ - 80 + 83 ], "player": [ - 4052 + 4335 ], "player_steam_id": [ - 264 + 268 ], "season": [ - 4138 + 4421 ], "season_id": [ - 5170 + 5458 ], "source": [ - 602 + 606 ], "team": [ - 4621 + 4909 ], "team_id": [ - 5170 + 5458 ], "tournament": [ - 5106 + 5394 ], "tournament_award": [ - 4672 + 4960 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team": [ - 5064 + 5352 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "award_recipients_aggregate": { "aggregate": [ - 199 + 203 ], "nodes": [ - 195 + 199 ], "__typename": [ - 80 + 83 ] }, "award_recipients_aggregate_bool_exp": { "count": [ - 198 + 202 ], "__typename": [ - 80 + 83 ] }, "award_recipients_aggregate_bool_exp_count": { "arguments": [ - 216 + 220 ], "distinct": [ 5 ], "filter": [ - 204 + 208 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "award_recipients_aggregate_fields": { "avg": [ - 202 + 206 ], "count": [ 40, { "columns": [ - 216, + 220, "[award_recipients_select_column!]" ], "distinct": [ @@ -4211,83 +4322,83 @@ export default { } ], "max": [ - 208 + 212 ], "min": [ - 210 + 214 ], "stddev": [ - 218 + 222 ], "stddev_pop": [ - 220 + 224 ], "stddev_samp": [ - 222 + 226 ], "sum": [ - 226 + 230 ], "var_pop": [ - 230 + 234 ], "var_samp": [ - 232 + 236 ], "variance": [ - 234 + 238 ], "__typename": [ - 80 + 83 ] }, "award_recipients_aggregate_order_by": { "avg": [ - 203 + 207 ], "count": [ - 3094 + 3377 ], "max": [ - 209 + 213 ], "min": [ - 211 + 215 ], "stddev": [ - 219 + 223 ], "stddev_pop": [ - 221 + 225 ], "stddev_samp": [ - 223 + 227 ], "sum": [ - 227 + 231 ], "var_pop": [ - 231 + 235 ], "var_samp": [ - 233 + 237 ], "variance": [ - 235 + 239 ], "__typename": [ - 80 + 83 ] }, "award_recipients_arr_rel_insert_input": { "data": [ - 207 + 211 ], "on_conflict": [ - 213 + 217 ], "__typename": [ - 80 + 83 ] }, "award_recipients_avg_fields": { @@ -4301,390 +4412,390 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "award_recipients_avg_order_by": { "awarded_by_steam_id": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "award_recipients_bool_exp": { "_and": [ - 204 + 208 ], "_not": [ - 204 + 208 ], "_or": [ - 204 + 208 ], "award": [ - 240 + 244 ], "award_id": [ - 5172 + 5460 ], "awarded_by": [ - 4056 + 4339 ], "awarded_by_steam_id": [ - 266 + 270 ], "created_at": [ - 4671 + 4959 ], "event": [ - 1753 + 1817 ], "event_id": [ - 5172 + 5460 ], "id": [ - 5172 + 5460 ], "league_season": [ - 2138 + 2399 ], "league_season_id": [ - 5172 + 5460 ], "note": [ - 82 + 85 ], "placement": [ 41 ], "placement_tier": [ - 82 + 85 ], "player": [ - 4056 + 4339 ], "player_steam_id": [ - 266 + 270 ], "season": [ - 4142 + 4425 ], "season_id": [ - 5172 + 5460 ], "source": [ - 603 + 607 ], "team": [ - 4632 + 4920 ], "team_id": [ - 5172 + 5460 ], "tournament": [ - 5127 + 5415 ], "tournament_award": [ - 4681 + 4969 ], "tournament_id": [ - 5172 + 5460 ], "tournament_team": [ - 5073 + 5361 ], "tournament_team_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "award_recipients_constraint": {}, "award_recipients_inc_input": { "awarded_by_steam_id": [ - 264 + 268 ], "placement": [ 40 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "award_recipients_insert_input": { "award": [ - 247 + 251 ], "award_id": [ - 5170 + 5458 ], "awarded_by": [ - 4063 + 4346 ], "awarded_by_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "event": [ - 1760 + 1824 ], "event_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "league_season": [ - 2148 + 2409 ], "league_season_id": [ - 5170 + 5458 ], "note": [ - 80 + 83 ], "placement": [ 40 ], "player": [ - 4063 + 4346 ], "player_steam_id": [ - 264 + 268 ], "season": [ - 4149 + 4432 ], "season_id": [ - 5170 + 5458 ], "source": [ - 602 + 606 ], "team": [ - 4641 + 4929 ], "team_id": [ - 5170 + 5458 ], "tournament": [ - 5136 + 5424 ], "tournament_award": [ - 4690 + 4978 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team": [ - 5082 + 5370 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "award_recipients_max_fields": { "award_id": [ - 5170 + 5458 ], "awarded_by_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "note": [ - 80 + 83 ], "placement": [ 40 ], "placement_tier": [ - 80 + 83 ], "player_steam_id": [ - 264 + 268 ], "season_id": [ - 5170 + 5458 ], "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "award_recipients_max_order_by": { "award_id": [ - 3094 + 3377 ], "awarded_by_steam_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "event_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "note": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "placement_tier": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "season_id": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "award_recipients_min_fields": { "award_id": [ - 5170 + 5458 ], "awarded_by_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "note": [ - 80 + 83 ], "placement": [ 40 ], "placement_tier": [ - 80 + 83 ], "player_steam_id": [ - 264 + 268 ], "season_id": [ - 5170 + 5458 ], "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "award_recipients_min_order_by": { "award_id": [ - 3094 + 3377 ], "awarded_by_steam_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "event_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "note": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "placement_tier": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "season_id": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "award_recipients_mutation_response": { @@ -4692,160 +4803,160 @@ export default { 40 ], "returning": [ - 195 + 199 ], "__typename": [ - 80 + 83 ] }, "award_recipients_on_conflict": { "constraint": [ - 205 + 209 ], "update_columns": [ - 228 + 232 ], "where": [ - 204 + 208 ], "__typename": [ - 80 + 83 ] }, "award_recipients_order_by": { "award": [ - 249 + 253 ], "award_id": [ - 3094 + 3377 ], "awarded_by": [ - 4065 + 4348 ], "awarded_by_steam_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "event": [ - 1762 + 1826 ], "event_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_season": [ - 2150 + 2411 ], "league_season_id": [ - 3094 + 3377 ], "note": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "placement_tier": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "player_steam_id": [ - 3094 + 3377 ], "season": [ - 4151 + 4434 ], "season_id": [ - 3094 + 3377 ], "source": [ - 3094 + 3377 ], "team": [ - 4643 + 4931 ], "team_id": [ - 3094 + 3377 ], "tournament": [ - 5138 + 5426 ], "tournament_award": [ - 4692 + 4980 ], "tournament_id": [ - 3094 + 3377 ], "tournament_team": [ - 5084 + 5372 ], "tournament_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "award_recipients_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "award_recipients_select_column": {}, "award_recipients_set_input": { "award_id": [ - 5170 + 5458 ], "awarded_by_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "note": [ - 80 + 83 ], "placement": [ 40 ], "player_steam_id": [ - 264 + 268 ], "season_id": [ - 5170 + 5458 ], "source": [ - 602 + 606 ], "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "award_recipients_stddev_fields": { @@ -4859,21 +4970,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "award_recipients_stddev_order_by": { "awarded_by_steam_id": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "award_recipients_stddev_pop_fields": { @@ -4887,21 +4998,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "award_recipients_stddev_pop_order_by": { "awarded_by_steam_id": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "award_recipients_stddev_samp_fields": { @@ -4915,125 +5026,125 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "award_recipients_stddev_samp_order_by": { "awarded_by_steam_id": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "award_recipients_stream_cursor_input": { "initial_value": [ - 225 + 229 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "award_recipients_stream_cursor_value_input": { "award_id": [ - 5170 + 5458 ], "awarded_by_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "note": [ - 80 + 83 ], "placement": [ 40 ], "placement_tier": [ - 80 + 83 ], "player_steam_id": [ - 264 + 268 ], "season_id": [ - 5170 + 5458 ], "source": [ - 602 + 606 ], "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "award_recipients_sum_fields": { "awarded_by_steam_id": [ - 264 + 268 ], "placement": [ 40 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "award_recipients_sum_order_by": { "awarded_by_steam_id": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "award_recipients_update_column": {}, "award_recipients_updates": { "_inc": [ - 206 + 210 ], "_set": [ - 217 + 221 ], "where": [ - 204 + 208 ], "__typename": [ - 80 + 83 ] }, "award_recipients_var_pop_fields": { @@ -5047,21 +5158,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "award_recipients_var_pop_order_by": { "awarded_by_steam_id": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "award_recipients_var_samp_fields": { @@ -5075,21 +5186,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "award_recipients_var_samp_order_by": { "awarded_by_steam_id": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "award_recipients_variance_fields": { @@ -5103,21 +5214,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "award_recipients_variance_order_by": { "awarded_by_steam_id": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "awards": { @@ -5125,43 +5236,43 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "created_by": [ - 4052 + 4335 ], "created_by_steam_id": [ - 264 + 268 ], "description": [ - 80 + 83 ], "event": [ - 1749 + 1813 ], "event_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "image_url": [ - 80 + 83 ], "league_season": [ - 2133 + 2394 ], "league_season_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "recipients": [ - 195, + 199, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -5171,19 +5282,19 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "recipients_aggregate": [ - 196, + 200, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -5193,37 +5304,37 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "season": [ - 4138 + 4421 ], "season_id": [ - 5170 + 5458 ], "silhouette": [ 40 ], "system_key": [ - 80 + 83 ], "tier": [ - 622 + 626 ], "tournament": [ - 5106 + 5394 ], "tournament_configs": [ - 4672, + 4960, { "distinct_on": [ - 4694, + 4982, "[tournament_awards_select_column!]" ], "limit": [ @@ -5233,19 +5344,19 @@ export default { 40 ], "order_by": [ - 4692, + 4980, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4969 ] } ], "tournament_configs_aggregate": [ - 4673, + 4961, { "distinct_on": [ - 4694, + 4982, "[tournament_awards_select_column!]" ], "limit": [ @@ -5255,44 +5366,44 @@ export default { 40 ], "order_by": [ - 4692, + 4980, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4969 ] } ], "tournament_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "awards_aggregate": { "aggregate": [ - 238 + 242 ], "nodes": [ - 236 + 240 ], "__typename": [ - 80 + 83 ] }, "awards_aggregate_fields": { "avg": [ - 239 + 243 ], "count": [ 40, { "columns": [ - 251, + 255, "[awards_select_column!]" ], "distinct": [ @@ -5301,34 +5412,34 @@ export default { } ], "max": [ - 244 + 248 ], "min": [ - 245 + 249 ], "stddev": [ - 253 + 257 ], "stddev_pop": [ - 254 + 258 ], "stddev_samp": [ - 255 + 259 ], "sum": [ - 258 + 262 ], "var_pop": [ - 261 + 265 ], "var_samp": [ - 262 + 266 ], "variance": [ - 263 + 267 ], "__typename": [ - 80 + 83 ] }, "awards_avg_fields": { @@ -5339,105 +5450,105 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "awards_bool_exp": { "_and": [ - 240 + 244 ], "_not": [ - 240 + 244 ], "_or": [ - 240 + 244 ], "allow_multiple": [ 6 ], "created_at": [ - 4671 + 4959 ], "created_by": [ - 4056 + 4339 ], "created_by_steam_id": [ - 266 + 270 ], "description": [ - 82 + 85 ], "event": [ - 1753 + 1817 ], "event_id": [ - 5172 + 5460 ], "id": [ - 5172 + 5460 ], "image_url": [ - 82 + 85 ], "league_season": [ - 2138 + 2399 ], "league_season_id": [ - 5172 + 5460 ], "name": [ - 82 + 85 ], "recipients": [ - 204 + 208 ], "recipients_aggregate": [ - 197 + 201 ], "season": [ - 4142 + 4425 ], "season_id": [ - 5172 + 5460 ], "silhouette": [ 41 ], "system_key": [ - 82 + 85 ], "tier": [ - 623 + 627 ], "tournament": [ - 5127 + 5415 ], "tournament_configs": [ - 4681 + 4969 ], "tournament_configs_aggregate": [ - 4674 + 4962 ], "tournament_id": [ - 5172 + 5460 ], "updated_at": [ - 4671 + 4959 ], "__typename": [ - 80 + 83 ] }, "awards_constraint": {}, "awards_inc_input": { "created_by_steam_id": [ - 264 + 268 ], "silhouette": [ 40 ], "__typename": [ - 80 + 83 ] }, "awards_insert_input": { @@ -5445,158 +5556,158 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "created_by": [ - 4063 + 4346 ], "created_by_steam_id": [ - 264 + 268 ], "description": [ - 80 + 83 ], "event": [ - 1760 + 1824 ], "event_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "image_url": [ - 80 + 83 ], "league_season": [ - 2148 + 2409 ], "league_season_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "recipients": [ - 201 + 205 ], "season": [ - 4149 + 4432 ], "season_id": [ - 5170 + 5458 ], "silhouette": [ 40 ], "system_key": [ - 80 + 83 ], "tier": [ - 622 + 626 ], "tournament": [ - 5136 + 5424 ], "tournament_configs": [ - 4678 + 4966 ], "tournament_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "awards_max_fields": { "created_at": [ - 4670 + 4958 ], "created_by_steam_id": [ - 264 + 268 ], "description": [ - 80 + 83 ], "event_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "image_url": [ - 80 + 83 ], "league_season_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "season_id": [ - 5170 + 5458 ], "silhouette": [ 40 ], "system_key": [ - 80 + 83 ], "tournament_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "awards_min_fields": { "created_at": [ - 4670 + 4958 ], "created_by_steam_id": [ - 264 + 268 ], "description": [ - 80 + 83 ], "event_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "image_url": [ - 80 + 83 ], "league_season_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "season_id": [ - 5170 + 5458 ], "silhouette": [ 40 ], "system_key": [ - 80 + 83 ], "tournament_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "awards_mutation_response": { @@ -5604,114 +5715,114 @@ export default { 40 ], "returning": [ - 236 + 240 ], "__typename": [ - 80 + 83 ] }, "awards_obj_rel_insert_input": { "data": [ - 243 + 247 ], "on_conflict": [ - 248 + 252 ], "__typename": [ - 80 + 83 ] }, "awards_on_conflict": { "constraint": [ - 241 + 245 ], "update_columns": [ - 259 + 263 ], "where": [ - 240 + 244 ], "__typename": [ - 80 + 83 ] }, "awards_order_by": { "allow_multiple": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "created_by": [ - 4065 + 4348 ], "created_by_steam_id": [ - 3094 + 3377 ], "description": [ - 3094 + 3377 ], "event": [ - 1762 + 1826 ], "event_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "image_url": [ - 3094 + 3377 ], "league_season": [ - 2150 + 2411 ], "league_season_id": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "recipients_aggregate": [ - 200 + 204 ], "season": [ - 4151 + 4434 ], "season_id": [ - 3094 + 3377 ], "silhouette": [ - 3094 + 3377 ], "system_key": [ - 3094 + 3377 ], "tier": [ - 3094 + 3377 ], "tournament": [ - 5138 + 5426 ], "tournament_configs_aggregate": [ - 4677 + 4965 ], "tournament_id": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "awards_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "awards_select_column": {}, @@ -5720,49 +5831,49 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "created_by_steam_id": [ - 264 + 268 ], "description": [ - 80 + 83 ], "event_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "image_url": [ - 80 + 83 ], "league_season_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "season_id": [ - 5170 + 5458 ], "silhouette": [ 40 ], "system_key": [ - 80 + 83 ], "tier": [ - 622 + 626 ], "tournament_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "awards_stddev_fields": { @@ -5773,7 +5884,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "awards_stddev_pop_fields": { @@ -5784,7 +5895,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "awards_stddev_samp_fields": { @@ -5795,18 +5906,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "awards_stream_cursor_input": { "initial_value": [ - 257 + 261 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "awards_stream_cursor_value_input": { @@ -5814,75 +5925,75 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "created_by_steam_id": [ - 264 + 268 ], "description": [ - 80 + 83 ], "event_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "image_url": [ - 80 + 83 ], "league_season_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "season_id": [ - 5170 + 5458 ], "silhouette": [ 40 ], "system_key": [ - 80 + 83 ], "tier": [ - 622 + 626 ], "tournament_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "awards_sum_fields": { "created_by_steam_id": [ - 264 + 268 ], "silhouette": [ 40 ], "__typename": [ - 80 + 83 ] }, "awards_update_column": {}, "awards_updates": { "_inc": [ - 242 + 246 ], "_set": [ - 252 + 256 ], "where": [ - 240 + 244 ], "__typename": [ - 80 + 83 ] }, "awards_var_pop_fields": { @@ -5893,7 +6004,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "awards_var_samp_fields": { @@ -5904,7 +6015,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "awards_variance_fields": { @@ -5915,147 +6026,147 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "bigint": {}, "bigint_array_comparison_exp": { "_contained_in": [ - 264 + 268 ], "_contains": [ - 264 + 268 ], "_eq": [ - 264 + 268 ], "_gt": [ - 264 + 268 ], "_gte": [ - 264 + 268 ], "_in": [ - 264 + 268 ], "_is_null": [ 5 ], "_lt": [ - 264 + 268 ], "_lte": [ - 264 + 268 ], "_neq": [ - 264 + 268 ], "_nin": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "bigint_comparison_exp": { "_eq": [ - 264 + 268 ], "_gt": [ - 264 + 268 ], "_gte": [ - 264 + 268 ], "_in": [ - 264 + 268 ], "_is_null": [ 5 ], "_lt": [ - 264 + 268 ], "_lte": [ - 264 + 268 ], "_neq": [ - 264 + 268 ], "_nin": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "bytea": {}, "bytea_comparison_exp": { "_eq": [ - 267 + 271 ], "_gt": [ - 267 + 271 ], "_gte": [ - 267 + 271 ], "_in": [ - 267 + 271 ], "_is_null": [ 5 ], "_lt": [ - 267 + 271 ], "_lte": [ - 267 + 271 ], "_neq": [ - 267 + 271 ], "_nin": [ - 267 + 271 ], "__typename": [ - 80 + 83 ] }, "chat_read_state": { "last_read_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "thread": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_aggregate": { "aggregate": [ - 271 + 275 ], "nodes": [ - 269 + 273 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_aggregate_fields": { "avg": [ - 272 + 276 ], "count": [ 40, { "columns": [ - 283, + 287, "[chat_read_state_select_column!]" ], "distinct": [ @@ -6064,34 +6175,34 @@ export default { } ], "max": [ - 277 + 281 ], "min": [ - 278 + 282 ], "stddev": [ - 285 + 289 ], "stddev_pop": [ - 286 + 290 ], "stddev_samp": [ - 287 + 291 ], "sum": [ - 290 + 294 ], "var_pop": [ - 293 + 297 ], "var_samp": [ - 294 + 298 ], "variance": [ - 295 + 299 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_avg_fields": { @@ -6099,81 +6210,81 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_bool_exp": { "_and": [ - 273 + 277 ], "_not": [ - 273 + 277 ], "_or": [ - 273 + 277 ], "last_read_at": [ - 4671 + 4959 ], "steam_id": [ - 266 + 270 ], "thread": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_constraint": {}, "chat_read_state_inc_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_insert_input": { "last_read_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "thread": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_max_fields": { "last_read_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "thread": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_min_fields": { "last_read_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "thread": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_mutation_response": { @@ -6181,64 +6292,64 @@ export default { 40 ], "returning": [ - 269 + 273 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_on_conflict": { "constraint": [ - 274 + 278 ], "update_columns": [ - 291 + 295 ], "where": [ - 273 + 277 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_order_by": { "last_read_at": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "thread": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_pk_columns_input": { "steam_id": [ - 264 + 268 ], "thread": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_select_column": {}, "chat_read_state_set_input": { "last_read_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "thread": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_stddev_fields": { @@ -6246,7 +6357,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_stddev_pop_fields": { @@ -6254,7 +6365,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_stddev_samp_fields": { @@ -6262,55 +6373,55 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_stream_cursor_input": { "initial_value": [ - 289 + 293 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_stream_cursor_value_input": { "last_read_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "thread": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_update_column": {}, "chat_read_state_updates": { "_inc": [ - 275 + 279 ], "_set": [ - 284 + 288 ], "where": [ - 273 + 277 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_var_pop_fields": { @@ -6318,7 +6429,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_var_samp_fields": { @@ -6326,7 +6437,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "chat_read_state_variance_fields": { @@ -6334,175 +6445,175 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs": { "clip": [ - 2421 + 2682 ], "clip_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "error_message": [ - 80 + 83 ], "game_server_node": [ - 1806 + 2067 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "last_status_at": [ - 4670 + 4958 ], "match_map": [ - 2716 + 2977 ], "match_map_demo": [ - 2596 + 2857 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "paused": [ 5 ], "progress": [ - 3092 + 3375 ], "session_token": [ - 80 + 83 ], "sort_index": [ 40 ], "spec": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "status": [ - 80 + 83 ], "status_history": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "user": [ - 4052 + 4335 ], "user_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_aggregate": { "aggregate": [ - 302 + 306 ], "nodes": [ - 296 + 300 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_aggregate_bool_exp": { "bool_and": [ - 299 + 303 ], "bool_or": [ - 300 + 304 ], "count": [ - 301 + 305 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_aggregate_bool_exp_bool_and": { "arguments": [ - 325 + 329 ], "distinct": [ 5 ], "filter": [ - 308 + 312 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_aggregate_bool_exp_bool_or": { "arguments": [ - 326 + 330 ], "distinct": [ 5 ], "filter": [ - 308 + 312 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_aggregate_bool_exp_count": { "arguments": [ - 324 + 328 ], "distinct": [ 5 ], "filter": [ - 308 + 312 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_aggregate_fields": { "avg": [ - 306 + 310 ], "count": [ 40, { "columns": [ - 324, + 328, "[clip_render_jobs_select_column!]" ], "distinct": [ @@ -6511,94 +6622,94 @@ export default { } ], "max": [ - 315 + 319 ], "min": [ - 317 + 321 ], "stddev": [ - 328 + 332 ], "stddev_pop": [ - 330 + 334 ], "stddev_samp": [ - 332 + 336 ], "sum": [ - 336 + 340 ], "var_pop": [ - 340 + 344 ], "var_samp": [ - 342 + 346 ], "variance": [ - 344 + 348 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_aggregate_order_by": { "avg": [ - 307 + 311 ], "count": [ - 3094 + 3377 ], "max": [ - 316 + 320 ], "min": [ - 318 + 322 ], "stddev": [ - 329 + 333 ], "stddev_pop": [ - 331 + 335 ], "stddev_samp": [ - 333 + 337 ], "sum": [ - 337 + 341 ], "var_pop": [ - 341 + 345 ], "var_samp": [ - 343 + 347 ], "variance": [ - 345 + 349 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_append_input": { "spec": [ - 1930 + 2191 ], "status_history": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_arr_rel_insert_input": { "data": [ - 314 + 318 ], "on_conflict": [ - 320 + 324 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_avg_fields": { @@ -6612,113 +6723,113 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_avg_order_by": { "progress": [ - 3094 + 3377 ], "sort_index": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_bool_exp": { "_and": [ - 308 + 312 ], "_not": [ - 308 + 312 ], "_or": [ - 308 + 312 ], "clip": [ - 2430 + 2691 ], "clip_id": [ - 5172 + 5460 ], "created_at": [ - 4671 + 4959 ], "error_message": [ - 82 + 85 ], "game_server_node": [ - 1818 + 2079 ], "game_server_node_id": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "k8s_job_name": [ - 82 + 85 ], "last_status_at": [ - 4671 + 4959 ], "match_map": [ - 2725 + 2986 ], "match_map_demo": [ - 2608 + 2869 ], "match_map_demo_id": [ - 5172 + 5460 ], "match_map_id": [ - 5172 + 5460 ], "paused": [ 6 ], "progress": [ - 3093 + 3376 ], "session_token": [ - 82 + 85 ], "sort_index": [ 41 ], "spec": [ - 1932 + 2193 ], "status": [ - 82 + 85 ], "status_history": [ - 1932 + 2193 ], "user": [ - 4056 + 4339 ], "user_steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_constraint": {}, "clip_render_jobs_delete_at_path_input": { "spec": [ - 80 + 83 ], "status_history": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_delete_elem_input": { @@ -6729,291 +6840,291 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_delete_key_input": { "spec": [ - 80 + 83 ], "status_history": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_inc_input": { "progress": [ - 3092 + 3375 ], "sort_index": [ 40 ], "user_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_insert_input": { "clip": [ - 2439 + 2700 ], "clip_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "error_message": [ - 80 + 83 ], "game_server_node": [ - 1830 + 2091 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "last_status_at": [ - 4670 + 4958 ], "match_map": [ - 2734 + 2995 ], "match_map_demo": [ - 2620 + 2881 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "paused": [ 5 ], "progress": [ - 3092 + 3375 ], "session_token": [ - 80 + 83 ], "sort_index": [ 40 ], "spec": [ - 1930 + 2191 ], "status": [ - 80 + 83 ], "status_history": [ - 1930 + 2191 ], "user": [ - 4063 + 4346 ], "user_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_max_fields": { "clip_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "error_message": [ - 80 + 83 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "last_status_at": [ - 4670 + 4958 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "progress": [ - 3092 + 3375 ], "session_token": [ - 80 + 83 ], "sort_index": [ 40 ], "status": [ - 80 + 83 ], "user_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_max_order_by": { "clip_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "error_message": [ - 3094 + 3377 ], "game_server_node_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "k8s_job_name": [ - 3094 + 3377 ], "last_status_at": [ - 3094 + 3377 ], "match_map_demo_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "progress": [ - 3094 + 3377 ], "session_token": [ - 3094 + 3377 ], "sort_index": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_min_fields": { "clip_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "error_message": [ - 80 + 83 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "last_status_at": [ - 4670 + 4958 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "progress": [ - 3092 + 3375 ], "session_token": [ - 80 + 83 ], "sort_index": [ 40 ], "status": [ - 80 + 83 ], "user_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_min_order_by": { "clip_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "error_message": [ - 3094 + 3377 ], "game_server_node_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "k8s_job_name": [ - 3094 + 3377 ], "last_status_at": [ - 3094 + 3377 ], "match_map_demo_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "progress": [ - 3094 + 3377 ], "session_token": [ - 3094 + 3377 ], "sort_index": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_mutation_response": { @@ -7021,114 +7132,114 @@ export default { 40 ], "returning": [ - 296 + 300 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_on_conflict": { "constraint": [ - 309 + 313 ], "update_columns": [ - 338 + 342 ], "where": [ - 308 + 312 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_order_by": { "clip": [ - 2441 + 2702 ], "clip_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "error_message": [ - 3094 + 3377 ], "game_server_node": [ - 1832 + 2093 ], "game_server_node_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "k8s_job_name": [ - 3094 + 3377 ], "last_status_at": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_demo": [ - 2622 + 2883 ], "match_map_demo_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "paused": [ - 3094 + 3377 ], "progress": [ - 3094 + 3377 ], "session_token": [ - 3094 + 3377 ], "sort_index": [ - 3094 + 3377 ], "spec": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "status_history": [ - 3094 + 3377 ], "user": [ - 4065 + 4348 ], "user_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_prepend_input": { "spec": [ - 1930 + 2191 ], "status_history": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_select_column": {}, @@ -7136,58 +7247,58 @@ 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 + 5458 ], "created_at": [ - 4670 + 4958 ], "error_message": [ - 80 + 83 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "last_status_at": [ - 4670 + 4958 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "paused": [ 5 ], "progress": [ - 3092 + 3375 ], "session_token": [ - 80 + 83 ], "sort_index": [ 40 ], "spec": [ - 1930 + 2191 ], "status": [ - 80 + 83 ], "status_history": [ - 1930 + 2191 ], "user_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_stddev_fields": { @@ -7201,21 +7312,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_stddev_order_by": { "progress": [ - 3094 + 3377 ], "sort_index": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_stddev_pop_fields": { @@ -7229,21 +7340,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 3094 + 3377 ], "sort_index": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_stddev_samp_fields": { @@ -7257,146 +7368,146 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 3094 + 3377 ], "sort_index": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_stream_cursor_input": { "initial_value": [ - 335 + 339 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "error_message": [ - 80 + 83 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "last_status_at": [ - 4670 + 4958 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "paused": [ 5 ], "progress": [ - 3092 + 3375 ], "session_token": [ - 80 + 83 ], "sort_index": [ 40 ], "spec": [ - 1930 + 2191 ], "status": [ - 80 + 83 ], "status_history": [ - 1930 + 2191 ], "user_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_sum_fields": { "progress": [ - 3092 + 3375 ], "sort_index": [ 40 ], "user_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_sum_order_by": { "progress": [ - 3094 + 3377 ], "sort_index": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_update_column": {}, "clip_render_jobs_updates": { "_append": [ - 304 + 308 ], "_delete_at_path": [ - 310 + 314 ], "_delete_elem": [ - 311 + 315 ], "_delete_key": [ - 312 + 316 ], "_inc": [ - 313 + 317 ], "_prepend": [ - 323 + 327 ], "_set": [ - 327 + 331 ], "where": [ - 308 + 312 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_var_pop_fields": { @@ -7410,21 +7521,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 3094 + 3377 ], "sort_index": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_var_samp_fields": { @@ -7438,21 +7549,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 3094 + 3377 ], "sort_index": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_variance_fields": { @@ -7466,41 +7577,41 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "clip_render_jobs_variance_order_by": { "progress": [ - 3094 + 3377 ], "sort_index": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "clone_league_season_args": { "_league_season_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "cursor_ordering": {}, "custom_pages": { "created_at": [ - 4670 + 4958 ], "deployments": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], @@ -7508,71 +7619,74 @@ export default { 5 ], "exposed_module": [ - 80 + 83 ], "icon": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_default": [ 5 ], "manifest_url": [ - 80 + 83 ], "nav_group": [ - 80 + 83 ], "nav_order": [ 40 ], + "plugin_slug": [ + 83 + ], "profile_tab_label": [ - 80 + 83 ], "remote_entry_url": [ - 80 + 83 ], "remote_scope": [ - 80 + 83 ], "required_role": [ - 1178 + 1242 ], "slug": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "custom_pages_aggregate": { "aggregate": [ - 350 + 354 ], "nodes": [ - 348 + 352 ], "__typename": [ - 80 + 83 ] }, "custom_pages_aggregate_fields": { "avg": [ - 352 + 356 ], "count": [ 40, { "columns": [ - 367, + 371, "[custom_pages_select_column!]" ], "distinct": [ @@ -7581,42 +7695,42 @@ export default { } ], "max": [ - 360 + 364 ], "min": [ - 361 + 365 ], "stddev": [ - 369 + 373 ], "stddev_pop": [ - 370 + 374 ], "stddev_samp": [ - 371 + 375 ], "sum": [ - 374 + 378 ], "var_pop": [ - 377 + 381 ], "var_samp": [ - 378 + 382 ], "variance": [ - 379 + 383 ], "__typename": [ - 80 + 83 ] }, "custom_pages_append_input": { "deployments": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "custom_pages_avg_fields": { @@ -7624,81 +7738,84 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "custom_pages_bool_exp": { "_and": [ - 353 + 357 ], "_not": [ - 353 + 357 ], "_or": [ - 353 + 357 ], "created_at": [ - 4671 + 4959 ], "deployments": [ - 1932 + 2193 ], "enabled": [ 6 ], "exposed_module": [ - 82 + 85 ], "icon": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "is_default": [ 6 ], "manifest_url": [ - 82 + 85 ], "nav_group": [ - 82 + 85 ], "nav_order": [ 41 ], + "plugin_slug": [ + 85 + ], "profile_tab_label": [ - 82 + 85 ], "remote_entry_url": [ - 82 + 85 ], "remote_scope": [ - 82 + 85 ], "required_role": [ - 1179 + 1243 ], "slug": [ - 82 + 85 ], "title": [ - 82 + 85 ], "updated_at": [ - 4671 + 4959 ], "__typename": [ - 80 + 83 ] }, "custom_pages_constraint": {}, "custom_pages_delete_at_path_input": { "deployments": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "custom_pages_delete_elem_input": { @@ -7706,15 +7823,15 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "custom_pages_delete_key_input": { "deployments": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "custom_pages_inc_input": { @@ -7722,151 +7839,160 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "custom_pages_insert_input": { "created_at": [ - 4670 + 4958 ], "deployments": [ - 1930 + 2191 ], "enabled": [ 5 ], "exposed_module": [ - 80 + 83 ], "icon": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_default": [ 5 ], "manifest_url": [ - 80 + 83 ], "nav_group": [ - 80 + 83 ], "nav_order": [ 40 ], + "plugin_slug": [ + 83 + ], "profile_tab_label": [ - 80 + 83 ], "remote_entry_url": [ - 80 + 83 ], "remote_scope": [ - 80 + 83 ], "required_role": [ - 1178 + 1242 ], "slug": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "custom_pages_max_fields": { "created_at": [ - 4670 + 4958 ], "exposed_module": [ - 80 + 83 ], "icon": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "manifest_url": [ - 80 + 83 ], "nav_group": [ - 80 + 83 ], "nav_order": [ 40 ], + "plugin_slug": [ + 83 + ], "profile_tab_label": [ - 80 + 83 ], "remote_entry_url": [ - 80 + 83 ], "remote_scope": [ - 80 + 83 ], "slug": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "custom_pages_min_fields": { "created_at": [ - 4670 + 4958 ], "exposed_module": [ - 80 + 83 ], "icon": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "manifest_url": [ - 80 + 83 ], "nav_group": [ - 80 + 83 ], "nav_order": [ 40 ], + "plugin_slug": [ + 83 + ], "profile_tab_label": [ - 80 + 83 ], "remote_entry_url": [ - 80 + 83 ], "remote_scope": [ - 80 + 83 ], "slug": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "custom_pages_mutation_response": { @@ -7874,153 +8000,159 @@ export default { 40 ], "returning": [ - 348 + 352 ], "__typename": [ - 80 + 83 ] }, "custom_pages_on_conflict": { "constraint": [ - 354 + 358 ], "update_columns": [ - 375 + 379 ], "where": [ - 353 + 357 ], "__typename": [ - 80 + 83 ] }, "custom_pages_order_by": { "created_at": [ - 3094 + 3377 ], "deployments": [ - 3094 + 3377 ], "enabled": [ - 3094 + 3377 ], "exposed_module": [ - 3094 + 3377 ], "icon": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "is_default": [ - 3094 + 3377 ], "manifest_url": [ - 3094 + 3377 ], "nav_group": [ - 3094 + 3377 ], "nav_order": [ - 3094 + 3377 + ], + "plugin_slug": [ + 3377 ], "profile_tab_label": [ - 3094 + 3377 ], "remote_entry_url": [ - 3094 + 3377 ], "remote_scope": [ - 3094 + 3377 ], "required_role": [ - 3094 + 3377 ], "slug": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "custom_pages_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "custom_pages_prepend_input": { "deployments": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "custom_pages_select_column": {}, "custom_pages_set_input": { "created_at": [ - 4670 + 4958 ], "deployments": [ - 1930 + 2191 ], "enabled": [ 5 ], "exposed_module": [ - 80 + 83 ], "icon": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_default": [ 5 ], "manifest_url": [ - 80 + 83 ], "nav_group": [ - 80 + 83 ], "nav_order": [ 40 ], + "plugin_slug": [ + 83 + ], "profile_tab_label": [ - 80 + 83 ], "remote_entry_url": [ - 80 + 83 ], "remote_scope": [ - 80 + 83 ], "required_role": [ - 1178 + 1242 ], "slug": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "custom_pages_stddev_fields": { @@ -8028,7 +8160,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "custom_pages_stddev_pop_fields": { @@ -8036,7 +8168,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "custom_pages_stddev_samp_fields": { @@ -8044,74 +8176,77 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "custom_pages_stream_cursor_input": { "initial_value": [ - 373 + 377 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "custom_pages_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "deployments": [ - 1930 + 2191 ], "enabled": [ 5 ], "exposed_module": [ - 80 + 83 ], "icon": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_default": [ 5 ], "manifest_url": [ - 80 + 83 ], "nav_group": [ - 80 + 83 ], "nav_order": [ 40 ], + "plugin_slug": [ + 83 + ], "profile_tab_label": [ - 80 + 83 ], "remote_entry_url": [ - 80 + 83 ], "remote_scope": [ - 80 + 83 ], "required_role": [ - 1178 + 1242 ], "slug": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "custom_pages_sum_fields": { @@ -8119,37 +8254,37 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "custom_pages_update_column": {}, "custom_pages_updates": { "_append": [ - 351 + 355 ], "_delete_at_path": [ - 355 + 359 ], "_delete_elem": [ - 356 + 360 ], "_delete_key": [ - 357 + 361 ], "_inc": [ - 358 + 362 ], "_prepend": [ - 366 + 370 ], "_set": [ - 368 + 372 ], "where": [ - 353 + 357 ], "__typename": [ - 80 + 83 ] }, "custom_pages_var_pop_fields": { @@ -8157,7 +8292,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "custom_pages_var_samp_fields": { @@ -8165,7 +8300,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "custom_pages_variance_fields": { @@ -8173,46 +8308,46 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "db_backups": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "size": [ 40 ], "__typename": [ - 80 + 83 ] }, "db_backups_aggregate": { "aggregate": [ - 382 + 386 ], "nodes": [ - 380 + 384 ], "__typename": [ - 80 + 83 ] }, "db_backups_aggregate_fields": { "avg": [ - 383 + 387 ], "count": [ 40, { "columns": [ - 394, + 398, "[db_backups_select_column!]" ], "distinct": [ @@ -8221,34 +8356,34 @@ export default { } ], "max": [ - 388 + 392 ], "min": [ - 389 + 393 ], "stddev": [ - 396 + 400 ], "stddev_pop": [ - 397 + 401 ], "stddev_samp": [ - 398 + 402 ], "sum": [ - 401 + 405 ], "var_pop": [ - 404 + 408 ], "var_samp": [ - 405 + 409 ], "variance": [ - 406 + 410 ], "__typename": [ - 80 + 83 ] }, "db_backups_avg_fields": { @@ -8256,33 +8391,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "db_backups_bool_exp": { "_and": [ - 384 + 388 ], "_not": [ - 384 + 388 ], "_or": [ - 384 + 388 ], "created_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "name": [ - 82 + 85 ], "size": [ 41 ], "__typename": [ - 80 + 83 ] }, "db_backups_constraint": {}, @@ -8291,58 +8426,58 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "db_backups_insert_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "size": [ 40 ], "__typename": [ - 80 + 83 ] }, "db_backups_max_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "size": [ 40 ], "__typename": [ - 80 + 83 ] }, "db_backups_min_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "size": [ 40 ], "__typename": [ - 80 + 83 ] }, "db_backups_mutation_response": { @@ -8350,67 +8485,67 @@ export default { 40 ], "returning": [ - 380 + 384 ], "__typename": [ - 80 + 83 ] }, "db_backups_on_conflict": { "constraint": [ - 385 + 389 ], "update_columns": [ - 402 + 406 ], "where": [ - 384 + 388 ], "__typename": [ - 80 + 83 ] }, "db_backups_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "db_backups_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "size": [ 40 ], "__typename": [ - 80 + 83 ] }, "db_backups_stddev_fields": { @@ -8418,7 +8553,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "db_backups_stddev_pop_fields": { @@ -8426,7 +8561,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "db_backups_stddev_samp_fields": { @@ -8434,35 +8569,35 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "db_backups_stream_cursor_input": { "initial_value": [ - 400 + 404 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "size": [ 40 ], "__typename": [ - 80 + 83 ] }, "db_backups_sum_fields": { @@ -8470,22 +8605,22 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "db_backups_update_column": {}, "db_backups_updates": { "_inc": [ - 386 + 390 ], "_set": [ - 395 + 399 ], "where": [ - 384 + 388 ], "__typename": [ - 80 + 83 ] }, "db_backups_var_pop_fields": { @@ -8493,7 +8628,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "db_backups_var_samp_fields": { @@ -8501,7 +8636,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "db_backups_variance_fields": { @@ -8509,7 +8644,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "direct_conversations": { @@ -8517,41 +8652,41 @@ export default { 5 ], "last_message_at": [ - 4670 + 4958 ], "position": [ 40 ], "room_id": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_aggregate": { "aggregate": [ - 409 + 413 ], "nodes": [ - 407 + 411 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_aggregate_fields": { "avg": [ - 410 + 414 ], "count": [ 40, { "columns": [ - 421, + 425, "[direct_conversations_select_column!]" ], "distinct": [ @@ -8560,34 +8695,34 @@ export default { } ], "max": [ - 415 + 419 ], "min": [ - 416 + 420 ], "stddev": [ - 423 + 427 ], "stddev_pop": [ - 424 + 428 ], "stddev_samp": [ - 425 + 429 ], "sum": [ - 428 + 432 ], "var_pop": [ - 431 + 435 ], "var_samp": [ - 432 + 436 ], "variance": [ - 433 + 437 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_avg_fields": { @@ -8598,36 +8733,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_bool_exp": { "_and": [ - 411 + 415 ], "_not": [ - 411 + 415 ], "_or": [ - 411 + 415 ], "is_open": [ 6 ], "last_message_at": [ - 4671 + 4959 ], "position": [ 41 ], "room_id": [ - 82 + 85 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_constraint": {}, @@ -8636,10 +8771,10 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_insert_input": { @@ -8647,53 +8782,53 @@ export default { 5 ], "last_message_at": [ - 4670 + 4958 ], "position": [ 40 ], "room_id": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_max_fields": { "last_message_at": [ - 4670 + 4958 ], "position": [ 40 ], "room_id": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_min_fields": { "last_message_at": [ - 4670 + 4958 ], "position": [ 40 ], "room_id": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_mutation_response": { @@ -8701,55 +8836,55 @@ export default { 40 ], "returning": [ - 407 + 411 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_on_conflict": { "constraint": [ - 412 + 416 ], "update_columns": [ - 429 + 433 ], "where": [ - 411 + 415 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_order_by": { "is_open": [ - 3094 + 3377 ], "last_message_at": [ - 3094 + 3377 ], "position": [ - 3094 + 3377 ], "room_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_pk_columns_input": { "room_id": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_select_column": {}, @@ -8758,19 +8893,19 @@ export default { 5 ], "last_message_at": [ - 4670 + 4958 ], "position": [ 40 ], "room_id": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_stddev_fields": { @@ -8781,7 +8916,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_stddev_pop_fields": { @@ -8792,7 +8927,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_stddev_samp_fields": { @@ -8803,18 +8938,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_stream_cursor_input": { "initial_value": [ - 427 + 431 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_stream_cursor_value_input": { @@ -8822,19 +8957,19 @@ export default { 5 ], "last_message_at": [ - 4670 + 4958 ], "position": [ 40 ], "room_id": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_sum_fields": { @@ -8842,25 +8977,25 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_update_column": {}, "direct_conversations_updates": { "_inc": [ - 413 + 417 ], "_set": [ - 422 + 426 ], "where": [ - 411 + 415 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_var_pop_fields": { @@ -8871,7 +9006,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_var_samp_fields": { @@ -8882,7 +9017,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "direct_conversations_variance_fields": { @@ -8893,52 +9028,52 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "direct_messages": { "created_at": [ - 4670 + 4958 ], "from_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "room_id": [ - 80 + 83 ], "seq": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_messages_aggregate": { "aggregate": [ - 436 + 440 ], "nodes": [ - 434 + 438 ], "__typename": [ - 80 + 83 ] }, "direct_messages_aggregate_fields": { "avg": [ - 437 + 441 ], "count": [ 40, { "columns": [ - 448, + 452, "[direct_messages_select_column!]" ], "distinct": [ @@ -8947,34 +9082,34 @@ export default { } ], "max": [ - 442 + 446 ], "min": [ - 443 + 447 ], "stddev": [ - 450 + 454 ], "stddev_pop": [ - 451 + 455 ], "stddev_samp": [ - 452 + 456 ], "sum": [ - 455 + 459 ], "var_pop": [ - 458 + 462 ], "var_samp": [ - 459 + 463 ], "variance": [ - 460 + 464 ], "__typename": [ - 80 + 83 ] }, "direct_messages_avg_fields": { @@ -8985,120 +9120,120 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "direct_messages_bool_exp": { "_and": [ - 438 + 442 ], "_not": [ - 438 + 442 ], "_or": [ - 438 + 442 ], "created_at": [ - 4671 + 4959 ], "from_steam_id": [ - 266 + 270 ], "id": [ - 5172 + 5460 ], "message": [ - 82 + 85 ], "room_id": [ - 82 + 85 ], "seq": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "direct_messages_constraint": {}, "direct_messages_inc_input": { "from_steam_id": [ - 264 + 268 ], "seq": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_messages_insert_input": { "created_at": [ - 4670 + 4958 ], "from_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "room_id": [ - 80 + 83 ], "seq": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_messages_max_fields": { "created_at": [ - 4670 + 4958 ], "from_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "room_id": [ - 80 + 83 ], "seq": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_messages_min_fields": { "created_at": [ - 4670 + 4958 ], "from_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "room_id": [ - 80 + 83 ], "seq": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_messages_mutation_response": { @@ -9106,79 +9241,79 @@ export default { 40 ], "returning": [ - 434 + 438 ], "__typename": [ - 80 + 83 ] }, "direct_messages_on_conflict": { "constraint": [ - 439 + 443 ], "update_columns": [ - 456 + 460 ], "where": [ - 438 + 442 ], "__typename": [ - 80 + 83 ] }, "direct_messages_order_by": { "created_at": [ - 3094 + 3377 ], "from_steam_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "message": [ - 3094 + 3377 ], "room_id": [ - 3094 + 3377 ], "seq": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "direct_messages_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "direct_messages_select_column": {}, "direct_messages_set_input": { "created_at": [ - 4670 + 4958 ], "from_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "room_id": [ - 80 + 83 ], "seq": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_messages_stddev_fields": { @@ -9189,7 +9324,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "direct_messages_stddev_pop_fields": { @@ -9200,7 +9335,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "direct_messages_stddev_samp_fields": { @@ -9211,67 +9346,67 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "direct_messages_stream_cursor_input": { "initial_value": [ - 454 + 458 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "direct_messages_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "from_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "room_id": [ - 80 + 83 ], "seq": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_messages_sum_fields": { "from_steam_id": [ - 264 + 268 ], "seq": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "direct_messages_update_column": {}, "direct_messages_updates": { "_inc": [ - 440 + 444 ], "_set": [ - 449 + 453 ], "where": [ - 438 + 442 ], "__typename": [ - 80 + 83 ] }, "direct_messages_var_pop_fields": { @@ -9282,7 +9417,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "direct_messages_var_samp_fields": { @@ -9293,7 +9428,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "direct_messages_variance_fields": { @@ -9304,7 +9439,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks": { @@ -9312,22 +9447,22 @@ export default { 5 ], "captain": [ - 4052 + 4335 ], "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "draft_game": [ - 551 + 555 ], "draft_game_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "is_organizer": [ 5 @@ -9336,100 +9471,100 @@ export default { 40 ], "picked": [ - 4052 + 4335 ], "picked_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_aggregate": { "aggregate": [ - 467 + 471 ], "nodes": [ - 461 + 465 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_aggregate_bool_exp": { "bool_and": [ - 464 + 468 ], "bool_or": [ - 465 + 469 ], "count": [ - 466 + 470 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 485 + 489 ], "distinct": [ 5 ], "filter": [ - 472 + 476 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 486 + 490 ], "distinct": [ 5 ], "filter": [ - 472 + 476 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_aggregate_bool_exp_count": { "arguments": [ - 484 + 488 ], "distinct": [ 5 ], "filter": [ - 472 + 476 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_aggregate_fields": { "avg": [ - 470 + 474 ], "count": [ 40, { "columns": [ - 484, + 488, "[draft_game_picks_select_column!]" ], "distinct": [ @@ -9438,83 +9573,83 @@ export default { } ], "max": [ - 476 + 480 ], "min": [ - 478 + 482 ], "stddev": [ - 488 + 492 ], "stddev_pop": [ - 490 + 494 ], "stddev_samp": [ - 492 + 496 ], "sum": [ - 496 + 500 ], "var_pop": [ - 500 + 504 ], "var_samp": [ - 502 + 506 ], "variance": [ - 504 + 508 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_aggregate_order_by": { "avg": [ - 471 + 475 ], "count": [ - 3094 + 3377 ], "max": [ - 477 + 481 ], "min": [ - 479 + 483 ], "stddev": [ - 489 + 493 ], "stddev_pop": [ - 491 + 495 ], "stddev_samp": [ - 493 + 497 ], "sum": [ - 497 + 501 ], "var_pop": [ - 501 + 505 ], "var_samp": [ - 503 + 507 ], "variance": [ - 505 + 509 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_arr_rel_insert_input": { "data": [ - 475 + 479 ], "on_conflict": [ - 481 + 485 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_avg_fields": { @@ -9528,53 +9663,53 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "picked_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_bool_exp": { "_and": [ - 472 + 476 ], "_not": [ - 472 + 476 ], "_or": [ - 472 + 476 ], "auto_picked": [ 6 ], "captain": [ - 4056 + 4339 ], "captain_steam_id": [ - 266 + 270 ], "created_at": [ - 4671 + 4959 ], "draft_game": [ - 562 + 566 ], "draft_game_id": [ - 5172 + 5460 ], "id": [ - 5172 + 5460 ], "is_organizer": [ 6 @@ -9583,28 +9718,28 @@ export default { 41 ], "picked": [ - 4056 + 4339 ], "picked_steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_constraint": {}, "draft_game_picks_inc_input": { "captain_steam_id": [ - 264 + 268 ], "lineup": [ 40 ], "picked_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_insert_input": { @@ -9612,126 +9747,126 @@ export default { 5 ], "captain": [ - 4063 + 4346 ], "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "draft_game": [ - 571 + 575 ], "draft_game_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "lineup": [ 40 ], "picked": [ - 4063 + 4346 ], "picked_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_max_fields": { "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "draft_game_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "lineup": [ 40 ], "picked_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "draft_game_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "picked_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_min_fields": { "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "draft_game_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "lineup": [ 40 ], "picked_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "draft_game_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "picked_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_mutation_response": { @@ -9739,70 +9874,70 @@ export default { 40 ], "returning": [ - 461 + 465 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_on_conflict": { "constraint": [ - 473 + 477 ], "update_columns": [ - 498 + 502 ], "where": [ - 472 + 476 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_order_by": { "auto_picked": [ - 3094 + 3377 ], "captain": [ - 4065 + 4348 ], "captain_steam_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "draft_game": [ - 573 + 577 ], "draft_game_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "is_organizer": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "picked": [ - 4065 + 4348 ], "picked_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_select_column": {}, @@ -9813,25 +9948,25 @@ export default { 5 ], "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "draft_game_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "lineup": [ 40 ], "picked_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_stddev_fields": { @@ -9845,21 +9980,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "picked_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_stddev_pop_fields": { @@ -9873,21 +10008,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "picked_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_stddev_samp_fields": { @@ -9901,32 +10036,32 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "picked_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_stream_cursor_input": { "initial_value": [ - 495 + 499 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_stream_cursor_value_input": { @@ -9934,68 +10069,68 @@ export default { 5 ], "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "draft_game_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "lineup": [ 40 ], "picked_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_sum_fields": { "captain_steam_id": [ - 264 + 268 ], "lineup": [ 40 ], "picked_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "picked_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_update_column": {}, "draft_game_picks_updates": { "_inc": [ - 474 + 478 ], "_set": [ - 487 + 491 ], "where": [ - 472 + 476 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_var_pop_fields": { @@ -10009,21 +10144,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "picked_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_var_samp_fields": { @@ -10037,21 +10172,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "picked_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_variance_fields": { @@ -10065,32 +10200,32 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "picked_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_players": { "draft_game": [ - 551 + 555 ], "draft_game_id": [ - 5170 + 5458 ], "e_draft_game_player_status": [ - 720 + 724 ], "elo_snapshot": [ 40 @@ -10102,7 +10237,7 @@ export default { 5 ], "joined_at": [ - 4670 + 4958 ], "lineup": [ 40 @@ -10111,103 +10246,103 @@ export default { 40 ], "player": [ - 4052 + 4335 ], "status": [ - 725 + 729 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_aggregate": { "aggregate": [ - 512 + 516 ], "nodes": [ - 506 + 510 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_aggregate_bool_exp": { "bool_and": [ - 509 + 513 ], "bool_or": [ - 510 + 514 ], "count": [ - 511 + 515 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_aggregate_bool_exp_bool_and": { "arguments": [ - 530 + 534 ], "distinct": [ 5 ], "filter": [ - 517 + 521 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_aggregate_bool_exp_bool_or": { "arguments": [ - 531 + 535 ], "distinct": [ 5 ], "filter": [ - 517 + 521 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_aggregate_bool_exp_count": { "arguments": [ - 529 + 533 ], "distinct": [ 5 ], "filter": [ - 517 + 521 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_aggregate_fields": { "avg": [ - 515 + 519 ], "count": [ 40, { "columns": [ - 529, + 533, "[draft_game_players_select_column!]" ], "distinct": [ @@ -10216,83 +10351,83 @@ export default { } ], "max": [ - 521 + 525 ], "min": [ - 523 + 527 ], "stddev": [ - 533 + 537 ], "stddev_pop": [ - 535 + 539 ], "stddev_samp": [ - 537 + 541 ], "sum": [ - 541 + 545 ], "var_pop": [ - 545 + 549 ], "var_samp": [ - 547 + 551 ], "variance": [ - 549 + 553 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_aggregate_order_by": { "avg": [ - 516 + 520 ], "count": [ - 3094 + 3377 ], "max": [ - 522 + 526 ], "min": [ - 524 + 528 ], "stddev": [ - 534 + 538 ], "stddev_pop": [ - 536 + 540 ], "stddev_samp": [ - 538 + 542 ], "sum": [ - 542 + 546 ], "var_pop": [ - 546 + 550 ], "var_samp": [ - 548 + 552 ], "variance": [ - 550 + 554 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_arr_rel_insert_input": { "data": [ - 520 + 524 ], "on_conflict": [ - 526 + 530 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_avg_fields": { @@ -10309,44 +10444,44 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "pick_order": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_bool_exp": { "_and": [ - 517 + 521 ], "_not": [ - 517 + 521 ], "_or": [ - 517 + 521 ], "draft_game": [ - 562 + 566 ], "draft_game_id": [ - 5172 + 5460 ], "e_draft_game_player_status": [ - 723 + 727 ], "elo_snapshot": [ 41 @@ -10358,7 +10493,7 @@ export default { 6 ], "joined_at": [ - 4671 + 4959 ], "lineup": [ 41 @@ -10367,16 +10502,16 @@ export default { 41 ], "player": [ - 4056 + 4339 ], "status": [ - 726 + 730 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_constraint": {}, @@ -10391,21 +10526,21 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_insert_input": { "draft_game": [ - 571 + 575 ], "draft_game_id": [ - 5170 + 5458 ], "e_draft_game_player_status": [ - 731 + 735 ], "elo_snapshot": [ 40 @@ -10414,7 +10549,7 @@ export default { 5 ], "joined_at": [ - 4670 + 4958 ], "lineup": [ 40 @@ -10423,27 +10558,27 @@ export default { 40 ], "player": [ - 4063 + 4346 ], "status": [ - 725 + 729 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_max_fields": { "draft_game_id": [ - 5170 + 5458 ], "elo_snapshot": [ 40 ], "joined_at": [ - 4670 + 4958 ], "lineup": [ 40 @@ -10452,44 +10587,44 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_max_order_by": { "draft_game_id": [ - 3094 + 3377 ], "elo_snapshot": [ - 3094 + 3377 ], "joined_at": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "pick_order": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_min_fields": { "draft_game_id": [ - 5170 + 5458 ], "elo_snapshot": [ 40 ], "joined_at": [ - 4670 + 4958 ], "lineup": [ 40 @@ -10498,33 +10633,33 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_min_order_by": { "draft_game_id": [ - 3094 + 3377 ], "elo_snapshot": [ - 3094 + 3377 ], "joined_at": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "pick_order": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_mutation_response": { @@ -10532,76 +10667,76 @@ export default { 40 ], "returning": [ - 506 + 510 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_on_conflict": { "constraint": [ - 518 + 522 ], "update_columns": [ - 543 + 547 ], "where": [ - 517 + 521 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_order_by": { "draft_game": [ - 573 + 577 ], "draft_game_id": [ - 3094 + 3377 ], "e_draft_game_player_status": [ - 733 + 737 ], "elo_snapshot": [ - 3094 + 3377 ], "is_captain": [ - 3094 + 3377 ], "is_organizer": [ - 3094 + 3377 ], "joined_at": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "pick_order": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "status": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_select_column": {}, @@ -10609,7 +10744,7 @@ export default { "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_game_players_set_input": { "draft_game_id": [ - 5170 + 5458 ], "elo_snapshot": [ 40 @@ -10618,7 +10753,7 @@ export default { 5 ], "joined_at": [ - 4670 + 4958 ], "lineup": [ 40 @@ -10627,13 +10762,13 @@ export default { 40 ], "status": [ - 725 + 729 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_stddev_fields": { @@ -10650,24 +10785,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "pick_order": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_stddev_pop_fields": { @@ -10684,24 +10819,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "pick_order": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_stddev_samp_fields": { @@ -10718,40 +10853,40 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "pick_order": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_stream_cursor_input": { "initial_value": [ - 540 + 544 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 5170 + 5458 ], "elo_snapshot": [ 40 @@ -10760,7 +10895,7 @@ export default { 5 ], "joined_at": [ - 4670 + 4958 ], "lineup": [ 40 @@ -10769,13 +10904,13 @@ export default { 40 ], "status": [ - 725 + 729 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_sum_fields": { @@ -10789,42 +10924,42 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "pick_order": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_update_column": {}, "draft_game_players_updates": { "_inc": [ - 519 + 523 ], "_set": [ - 532 + 536 ], "where": [ - 517 + 521 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_var_pop_fields": { @@ -10841,24 +10976,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "pick_order": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_var_samp_fields": { @@ -10875,24 +11010,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "pick_order": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_variance_fields": { @@ -10909,95 +11044,95 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 3094 + 3377 ], "lineup": [ - 3094 + 3377 ], "pick_order": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_games": { "access": [ - 953 + 1017 ], "capacity": [ 40 ], "captain_selection": [ - 662 + 666 ], "created_at": [ - 4670 + 4958 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 683 + 687 ], "e_draft_game_captain_selection": [ - 657 + 661 ], "e_draft_game_draft_order": [ - 678 + 682 ], "e_draft_game_mode": [ - 699 + 703 ], "e_draft_game_status": [ - 741 + 745 ], "e_lobby_access": [ - 948 + 1012 ], "expires_at": [ - 4670 + 4958 ], "host": [ - 4052 + 4335 ], "host_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "inner_squad": [ 5 ], "invite_code": [ - 5170 + 5458 ], "is_organizer": [ 5 ], "map_pool": [ - 2373 + 2634 ], "map_pool_id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "max_elo": [ 40 @@ -11006,27 +11141,27 @@ export default { 40 ], "mode": [ - 704 + 708 ], "options": [ - 2758 + 3019 ], "pattern": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "pick_deadline": [ - 4670 + 4958 ], "picks": [ - 461, + 465, { "distinct_on": [ - 484, + 488, "[draft_game_picks_select_column!]" ], "limit": [ @@ -11036,19 +11171,19 @@ export default { 40 ], "order_by": [ - 482, + 486, "[draft_game_picks_order_by!]" ], "where": [ - 472 + 476 ] } ], "picks_aggregate": [ - 462, + 466, { "distinct_on": [ - 484, + 488, "[draft_game_picks_select_column!]" ], "limit": [ @@ -11058,19 +11193,19 @@ export default { 40 ], "order_by": [ - 482, + 486, "[draft_game_picks_order_by!]" ], "where": [ - 472 + 476 ] } ], "players": [ - 506, + 510, { "distinct_on": [ - 529, + 533, "[draft_game_players_select_column!]" ], "limit": [ @@ -11080,19 +11215,19 @@ export default { 40 ], "order_by": [ - 527, + 531, "[draft_game_players_order_by!]" ], "where": [ - 517 + 521 ] } ], "players_aggregate": [ - 507, + 511, { "distinct_on": [ - 529, + 533, "[draft_game_players_select_column!]" ], "limit": [ @@ -11102,133 +11237,133 @@ export default { 40 ], "order_by": [ - 527, + 531, "[draft_game_players_order_by!]" ], "where": [ - 517 + 521 ] } ], "regions": [ - 80 + 83 ], "require_approval": [ 5 ], "scheduled_at": [ - 4670 + 4958 ], "status": [ - 746 + 750 ], "team_1": [ - 4621 + 4909 ], "team_1_id": [ - 5170 + 5458 ], "team_2": [ - 4621 + 4909 ], "team_2_id": [ - 5170 + 5458 ], "type": [ - 1117 + 1181 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "draft_games_aggregate": { "aggregate": [ - 557 + 561 ], "nodes": [ - 551 + 555 ], "__typename": [ - 80 + 83 ] }, "draft_games_aggregate_bool_exp": { "bool_and": [ - 554 + 558 ], "bool_or": [ - 555 + 559 ], "count": [ - 556 + 560 ], "__typename": [ - 80 + 83 ] }, "draft_games_aggregate_bool_exp_bool_and": { "arguments": [ - 576 + 580 ], "distinct": [ 5 ], "filter": [ - 562 + 566 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "draft_games_aggregate_bool_exp_bool_or": { "arguments": [ - 577 + 581 ], "distinct": [ 5 ], "filter": [ - 562 + 566 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "draft_games_aggregate_bool_exp_count": { "arguments": [ - 575 + 579 ], "distinct": [ 5 ], "filter": [ - 562 + 566 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "draft_games_aggregate_fields": { "avg": [ - 560 + 564 ], "count": [ 40, { "columns": [ - 575, + 579, "[draft_games_select_column!]" ], "distinct": [ @@ -11237,83 +11372,83 @@ export default { } ], "max": [ - 566 + 570 ], "min": [ - 568 + 572 ], "stddev": [ - 579 + 583 ], "stddev_pop": [ - 581 + 585 ], "stddev_samp": [ - 583 + 587 ], "sum": [ - 587 + 591 ], "var_pop": [ - 591 + 595 ], "var_samp": [ - 593 + 597 ], "variance": [ - 595 + 599 ], "__typename": [ - 80 + 83 ] }, "draft_games_aggregate_order_by": { "avg": [ - 561 + 565 ], "count": [ - 3094 + 3377 ], "max": [ - 567 + 571 ], "min": [ - 569 + 573 ], "stddev": [ - 580 + 584 ], "stddev_pop": [ - 582 + 586 ], "stddev_samp": [ - 584 + 588 ], "sum": [ - 588 + 592 ], "var_pop": [ - 592 + 596 ], "var_samp": [ - 594 + 598 ], "variance": [ - 596 + 600 ], "__typename": [ - 80 + 83 ] }, "draft_games_arr_rel_insert_input": { "data": [ - 565 + 569 ], "on_conflict": [ - 572 + 576 ], "__typename": [ - 80 + 83 ] }, "draft_games_avg_fields": { @@ -11333,107 +11468,107 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_games_avg_order_by": { "capacity": [ - 3094 + 3377 ], "current_pick_lineup": [ - 3094 + 3377 ], "host_steam_id": [ - 3094 + 3377 ], "max_elo": [ - 3094 + 3377 ], "min_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_games_bool_exp": { "_and": [ - 562 + 566 ], "_not": [ - 562 + 566 ], "_or": [ - 562 + 566 ], "access": [ - 954 + 1018 ], "capacity": [ 41 ], "captain_selection": [ - 663 + 667 ], "created_at": [ - 4671 + 4959 ], "current_pick_lineup": [ 41 ], "draft_order": [ - 684 + 688 ], "e_draft_game_captain_selection": [ - 660 + 664 ], "e_draft_game_draft_order": [ - 681 + 685 ], "e_draft_game_mode": [ - 702 + 706 ], "e_draft_game_status": [ - 744 + 748 ], "e_lobby_access": [ - 951 + 1015 ], "expires_at": [ - 4671 + 4959 ], "host": [ - 4056 + 4339 ], "host_steam_id": [ - 266 + 270 ], "id": [ - 5172 + 5460 ], "inner_squad": [ 6 ], "invite_code": [ - 5172 + 5460 ], "is_organizer": [ 6 ], "map_pool": [ - 2376 + 2637 ], "map_pool_id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_options_id": [ - 5172 + 5460 ], "max_elo": [ 41 @@ -11442,61 +11577,61 @@ export default { 41 ], "mode": [ - 705 + 709 ], "options": [ - 2762 + 3030 ], "pattern": [ - 1932 + 2193 ], "pick_deadline": [ - 4671 + 4959 ], "picks": [ - 472 + 476 ], "picks_aggregate": [ - 463 + 467 ], "players": [ - 517 + 521 ], "players_aggregate": [ - 508 + 512 ], "regions": [ - 81 + 84 ], "require_approval": [ 6 ], "scheduled_at": [ - 4671 + 4959 ], "status": [ - 747 + 751 ], "team_1": [ - 4632 + 4920 ], "team_1_id": [ - 5172 + 5460 ], "team_2": [ - 4632 + 4920 ], "team_2_id": [ - 5172 + 5460 ], "type": [ - 1118 + 1182 ], "updated_at": [ - 4671 + 4959 ], "__typename": [ - 80 + 83 ] }, "draft_games_constraint": {}, @@ -11508,7 +11643,7 @@ export default { 40 ], "host_steam_id": [ - 264 + 268 ], "max_elo": [ 40 @@ -11517,75 +11652,75 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "draft_games_insert_input": { "access": [ - 953 + 1017 ], "capacity": [ 40 ], "captain_selection": [ - 662 + 666 ], "created_at": [ - 4670 + 4958 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 683 + 687 ], "e_draft_game_captain_selection": [ - 668 + 672 ], "e_draft_game_draft_order": [ - 689 + 693 ], "e_draft_game_mode": [ - 710 + 714 ], "e_draft_game_status": [ - 752 + 756 ], "e_lobby_access": [ - 959 + 1023 ], "expires_at": [ - 4670 + 4958 ], "host": [ - 4063 + 4346 ], "host_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "inner_squad": [ 5 ], "invite_code": [ - 5170 + 5458 ], "map_pool": [ - 2382 + 2643 ], "map_pool_id": [ - 5170 + 5458 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "max_elo": [ 40 @@ -11594,52 +11729,52 @@ export default { 40 ], "mode": [ - 704 + 708 ], "options": [ - 2769 + 3039 ], "pick_deadline": [ - 4670 + 4958 ], "picks": [ - 469 + 473 ], "players": [ - 514 + 518 ], "regions": [ - 80 + 83 ], "require_approval": [ 5 ], "scheduled_at": [ - 4670 + 4958 ], "status": [ - 746 + 750 ], "team_1": [ - 4641 + 4929 ], "team_1_id": [ - 5170 + 5458 ], "team_2": [ - 4641 + 4929 ], "team_2_id": [ - 5170 + 5458 ], "type": [ - 1117 + 1181 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "draft_games_max_fields": { @@ -11647,31 +11782,31 @@ export default { 40 ], "created_at": [ - 4670 + 4958 ], "current_pick_lineup": [ 40 ], "expires_at": [ - 4670 + 4958 ], "host_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "invite_code": [ - 5170 + 5458 ], "map_pool_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "max_elo": [ 40 @@ -11680,84 +11815,84 @@ export default { 40 ], "pick_deadline": [ - 4670 + 4958 ], "regions": [ - 80 + 83 ], "scheduled_at": [ - 4670 + 4958 ], "team_1_id": [ - 5170 + 5458 ], "team_2_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "draft_games_max_order_by": { "capacity": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "current_pick_lineup": [ - 3094 + 3377 ], "expires_at": [ - 3094 + 3377 ], "host_steam_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "invite_code": [ - 3094 + 3377 ], "map_pool_id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "max_elo": [ - 3094 + 3377 ], "min_elo": [ - 3094 + 3377 ], "pick_deadline": [ - 3094 + 3377 ], "regions": [ - 3094 + 3377 ], "scheduled_at": [ - 3094 + 3377 ], "team_1_id": [ - 3094 + 3377 ], "team_2_id": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_games_min_fields": { @@ -11765,31 +11900,31 @@ export default { 40 ], "created_at": [ - 4670 + 4958 ], "current_pick_lineup": [ 40 ], "expires_at": [ - 4670 + 4958 ], "host_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "invite_code": [ - 5170 + 5458 ], "map_pool_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "max_elo": [ 40 @@ -11798,84 +11933,84 @@ export default { 40 ], "pick_deadline": [ - 4670 + 4958 ], "regions": [ - 80 + 83 ], "scheduled_at": [ - 4670 + 4958 ], "team_1_id": [ - 5170 + 5458 ], "team_2_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "draft_games_min_order_by": { "capacity": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "current_pick_lineup": [ - 3094 + 3377 ], "expires_at": [ - 3094 + 3377 ], "host_steam_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "invite_code": [ - 3094 + 3377 ], "map_pool_id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "max_elo": [ - 3094 + 3377 ], "min_elo": [ - 3094 + 3377 ], "pick_deadline": [ - 3094 + 3377 ], "regions": [ - 3094 + 3377 ], "scheduled_at": [ - 3094 + 3377 ], "team_1_id": [ - 3094 + 3377 ], "team_2_id": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_games_mutation_response": { @@ -11883,171 +12018,171 @@ export default { 40 ], "returning": [ - 551 + 555 ], "__typename": [ - 80 + 83 ] }, "draft_games_obj_rel_insert_input": { "data": [ - 565 + 569 ], "on_conflict": [ - 572 + 576 ], "__typename": [ - 80 + 83 ] }, "draft_games_on_conflict": { "constraint": [ - 563 + 567 ], "update_columns": [ - 589 + 593 ], "where": [ - 562 + 566 ], "__typename": [ - 80 + 83 ] }, "draft_games_order_by": { "access": [ - 3094 + 3377 ], "capacity": [ - 3094 + 3377 ], "captain_selection": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "current_pick_lineup": [ - 3094 + 3377 ], "draft_order": [ - 3094 + 3377 ], "e_draft_game_captain_selection": [ - 670 + 674 ], "e_draft_game_draft_order": [ - 691 + 695 ], "e_draft_game_mode": [ - 712 + 716 ], "e_draft_game_status": [ - 754 + 758 ], "e_lobby_access": [ - 961 + 1025 ], "expires_at": [ - 3094 + 3377 ], "host": [ - 4065 + 4348 ], "host_steam_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "inner_squad": [ - 3094 + 3377 ], "invite_code": [ - 3094 + 3377 ], "is_organizer": [ - 3094 + 3377 ], "map_pool": [ - 2384 + 2645 ], "map_pool_id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "max_elo": [ - 3094 + 3377 ], "min_elo": [ - 3094 + 3377 ], "mode": [ - 3094 + 3377 ], "options": [ - 2771 + 3041 ], "pattern": [ - 3094 + 3377 ], "pick_deadline": [ - 3094 + 3377 ], "picks_aggregate": [ - 468 + 472 ], "players_aggregate": [ - 513 + 517 ], "regions": [ - 3094 + 3377 ], "require_approval": [ - 3094 + 3377 ], "scheduled_at": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "team_1": [ - 4643 + 4931 ], "team_1_id": [ - 3094 + 3377 ], "team_2": [ - 4643 + 4931 ], "team_2_id": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_games_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "draft_games_select_column": {}, @@ -12055,46 +12190,46 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 953 + 1017 ], "capacity": [ 40 ], "captain_selection": [ - 662 + 666 ], "created_at": [ - 4670 + 4958 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 683 + 687 ], "expires_at": [ - 4670 + 4958 ], "host_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "inner_squad": [ 5 ], "invite_code": [ - 5170 + 5458 ], "map_pool_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "max_elo": [ 40 @@ -12103,37 +12238,37 @@ export default { 40 ], "mode": [ - 704 + 708 ], "pick_deadline": [ - 4670 + 4958 ], "regions": [ - 80 + 83 ], "require_approval": [ 5 ], "scheduled_at": [ - 4670 + 4958 ], "status": [ - 746 + 750 ], "team_1_id": [ - 5170 + 5458 ], "team_2_id": [ - 5170 + 5458 ], "type": [ - 1117 + 1181 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "draft_games_stddev_fields": { @@ -12153,27 +12288,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_games_stddev_order_by": { "capacity": [ - 3094 + 3377 ], "current_pick_lineup": [ - 3094 + 3377 ], "host_steam_id": [ - 3094 + 3377 ], "max_elo": [ - 3094 + 3377 ], "min_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_games_stddev_pop_fields": { @@ -12193,27 +12328,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_games_stddev_pop_order_by": { "capacity": [ - 3094 + 3377 ], "current_pick_lineup": [ - 3094 + 3377 ], "host_steam_id": [ - 3094 + 3377 ], "max_elo": [ - 3094 + 3377 ], "min_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_games_stddev_samp_fields": { @@ -12233,82 +12368,82 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_games_stddev_samp_order_by": { "capacity": [ - 3094 + 3377 ], "current_pick_lineup": [ - 3094 + 3377 ], "host_steam_id": [ - 3094 + 3377 ], "max_elo": [ - 3094 + 3377 ], "min_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_games_stream_cursor_input": { "initial_value": [ - 586 + 590 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "draft_games_stream_cursor_value_input": { "access": [ - 953 + 1017 ], "capacity": [ 40 ], "captain_selection": [ - 662 + 666 ], "created_at": [ - 4670 + 4958 ], "current_pick_lineup": [ 40 ], "draft_order": [ - 683 + 687 ], "expires_at": [ - 4670 + 4958 ], "host_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "inner_squad": [ 5 ], "invite_code": [ - 5170 + 5458 ], "map_pool_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "max_elo": [ 40 @@ -12317,37 +12452,37 @@ export default { 40 ], "mode": [ - 704 + 708 ], "pick_deadline": [ - 4670 + 4958 ], "regions": [ - 80 + 83 ], "require_approval": [ 5 ], "scheduled_at": [ - 4670 + 4958 ], "status": [ - 746 + 750 ], "team_1_id": [ - 5170 + 5458 ], "team_2_id": [ - 5170 + 5458 ], "type": [ - 1117 + 1181 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "draft_games_sum_fields": { @@ -12358,7 +12493,7 @@ export default { 40 ], "host_steam_id": [ - 264 + 268 ], "max_elo": [ 40 @@ -12367,42 +12502,42 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "draft_games_sum_order_by": { "capacity": [ - 3094 + 3377 ], "current_pick_lineup": [ - 3094 + 3377 ], "host_steam_id": [ - 3094 + 3377 ], "max_elo": [ - 3094 + 3377 ], "min_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_games_update_column": {}, "draft_games_updates": { "_inc": [ - 564 + 568 ], "_set": [ - 578 + 582 ], "where": [ - 562 + 566 ], "__typename": [ - 80 + 83 ] }, "draft_games_var_pop_fields": { @@ -12422,27 +12557,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_games_var_pop_order_by": { "capacity": [ - 3094 + 3377 ], "current_pick_lineup": [ - 3094 + 3377 ], "host_steam_id": [ - 3094 + 3377 ], "max_elo": [ - 3094 + 3377 ], "min_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_games_var_samp_fields": { @@ -12462,27 +12597,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_games_var_samp_order_by": { "capacity": [ - 3094 + 3377 ], "current_pick_lineup": [ - 3094 + 3377 ], "host_steam_id": [ - 3094 + 3377 ], "max_elo": [ - 3094 + 3377 ], "min_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "draft_games_variance_fields": { @@ -12502,49 +12637,49 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "draft_games_variance_order_by": { "capacity": [ - 3094 + 3377 ], "current_pick_lineup": [ - 3094 + 3377 ], "host_steam_id": [ - 3094 + 3377 ], "max_elo": [ - 3094 + 3377 ], "min_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_award_sources": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_aggregate": { "aggregate": [ - 599 + 603 ], "nodes": [ - 597 + 601 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_aggregate_fields": { @@ -12552,7 +12687,7 @@ export default { 40, { "columns": [ - 611, + 615, "[e_award_sources_select_column!]" ], "distinct": [ @@ -12561,88 +12696,88 @@ export default { } ], "max": [ - 605 + 609 ], "min": [ - 606 + 610 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_bool_exp": { "_and": [ - 600 + 604 ], "_not": [ - 600 + 604 ], "_or": [ - 600 + 604 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_constraint": {}, "e_award_sources_enum": {}, "e_award_sources_enum_comparison_exp": { "_eq": [ - 602 + 606 ], "_in": [ - 602 + 606 ], "_is_null": [ 5 ], "_neq": [ - 602 + 606 ], "_nin": [ - 602 + 606 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_mutation_response": { @@ -12650,111 +12785,111 @@ export default { 40 ], "returning": [ - 597 + 601 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_on_conflict": { "constraint": [ - 601 + 605 ], "update_columns": [ - 615 + 619 ], "where": [ - 600 + 604 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_select_column": {}, "e_award_sources_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_stream_cursor_input": { "initial_value": [ - 614 + 618 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_award_sources_update_column": {}, "e_award_sources_updates": { "_set": [ - 612 + 616 ], "where": [ - 600 + 604 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_aggregate": { "aggregate": [ - 619 + 623 ], "nodes": [ - 617 + 621 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_aggregate_fields": { @@ -12762,7 +12897,7 @@ export default { 40, { "columns": [ - 631, + 635, "[e_award_tiers_select_column!]" ], "distinct": [ @@ -12771,88 +12906,88 @@ export default { } ], "max": [ - 625 + 629 ], "min": [ - 626 + 630 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_bool_exp": { "_and": [ - 620 + 624 ], "_not": [ - 620 + 624 ], "_or": [ - 620 + 624 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_constraint": {}, "e_award_tiers_enum": {}, "e_award_tiers_enum_comparison_exp": { "_eq": [ - 622 + 626 ], "_in": [ - 622 + 626 ], "_is_null": [ 5 ], "_neq": [ - 622 + 626 ], "_nin": [ - 622 + 626 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_mutation_response": { @@ -12860,111 +12995,111 @@ export default { 40 ], "returning": [ - 617 + 621 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_on_conflict": { "constraint": [ - 621 + 625 ], "update_columns": [ - 635 + 639 ], "where": [ - 620 + 624 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_select_column": {}, "e_award_tiers_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_stream_cursor_input": { "initial_value": [ - 634 + 638 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_award_tiers_update_column": {}, "e_award_tiers_updates": { "_set": [ - 632 + 636 ], "where": [ - 620 + 624 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_aggregate": { "aggregate": [ - 639 + 643 ], "nodes": [ - 637 + 641 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_aggregate_fields": { @@ -12972,7 +13107,7 @@ export default { 40, { "columns": [ - 651, + 655, "[e_check_in_settings_select_column!]" ], "distinct": [ @@ -12981,88 +13116,88 @@ export default { } ], "max": [ - 645 + 649 ], "min": [ - 646 + 650 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_bool_exp": { "_and": [ - 640 + 644 ], "_not": [ - 640 + 644 ], "_or": [ - 640 + 644 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_constraint": {}, "e_check_in_settings_enum": {}, "e_check_in_settings_enum_comparison_exp": { "_eq": [ - 642 + 646 ], "_in": [ - 642 + 646 ], "_is_null": [ 5 ], "_neq": [ - 642 + 646 ], "_nin": [ - 642 + 646 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_mutation_response": { @@ -13070,111 +13205,111 @@ export default { 40 ], "returning": [ - 637 + 641 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_on_conflict": { "constraint": [ - 641 + 645 ], "update_columns": [ - 655 + 659 ], "where": [ - 640 + 644 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_select_column": {}, "e_check_in_settings_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_stream_cursor_input": { "initial_value": [ - 654 + 658 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_check_in_settings_update_column": {}, "e_check_in_settings_updates": { "_set": [ - 652 + 656 ], "where": [ - 640 + 644 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_aggregate": { "aggregate": [ - 659 + 663 ], "nodes": [ - 657 + 661 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_aggregate_fields": { @@ -13182,7 +13317,7 @@ export default { 40, { "columns": [ - 672, + 676, "[e_draft_game_captain_selection_select_column!]" ], "distinct": [ @@ -13191,88 +13326,88 @@ export default { } ], "max": [ - 665 + 669 ], "min": [ - 666 + 670 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_bool_exp": { "_and": [ - 660 + 664 ], "_not": [ - 660 + 664 ], "_or": [ - 660 + 664 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_constraint": {}, "e_draft_game_captain_selection_enum": {}, "e_draft_game_captain_selection_enum_comparison_exp": { "_eq": [ - 662 + 666 ], "_in": [ - 662 + 666 ], "_is_null": [ 5 ], "_neq": [ - 662 + 666 ], "_nin": [ - 662 + 666 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_mutation_response": { @@ -13280,122 +13415,122 @@ export default { 40 ], "returning": [ - 657 + 661 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_obj_rel_insert_input": { "data": [ - 664 + 668 ], "on_conflict": [ - 669 + 673 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_on_conflict": { "constraint": [ - 661 + 665 ], "update_columns": [ - 676 + 680 ], "where": [ - 660 + 664 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_select_column": {}, "e_draft_game_captain_selection_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_stream_cursor_input": { "initial_value": [ - 675 + 679 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_captain_selection_update_column": {}, "e_draft_game_captain_selection_updates": { "_set": [ - 673 + 677 ], "where": [ - 660 + 664 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_aggregate": { "aggregate": [ - 680 + 684 ], "nodes": [ - 678 + 682 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_aggregate_fields": { @@ -13403,7 +13538,7 @@ export default { 40, { "columns": [ - 693, + 697, "[e_draft_game_draft_order_select_column!]" ], "distinct": [ @@ -13412,88 +13547,88 @@ export default { } ], "max": [ - 686 + 690 ], "min": [ - 687 + 691 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_bool_exp": { "_and": [ - 681 + 685 ], "_not": [ - 681 + 685 ], "_or": [ - 681 + 685 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_constraint": {}, "e_draft_game_draft_order_enum": {}, "e_draft_game_draft_order_enum_comparison_exp": { "_eq": [ - 683 + 687 ], "_in": [ - 683 + 687 ], "_is_null": [ 5 ], "_neq": [ - 683 + 687 ], "_nin": [ - 683 + 687 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_mutation_response": { @@ -13501,122 +13636,122 @@ export default { 40 ], "returning": [ - 678 + 682 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_obj_rel_insert_input": { "data": [ - 685 + 689 ], "on_conflict": [ - 690 + 694 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_on_conflict": { "constraint": [ - 682 + 686 ], "update_columns": [ - 697 + 701 ], "where": [ - 681 + 685 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_select_column": {}, "e_draft_game_draft_order_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_stream_cursor_input": { "initial_value": [ - 696 + 700 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_draft_order_update_column": {}, "e_draft_game_draft_order_updates": { "_set": [ - 694 + 698 ], "where": [ - 681 + 685 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_aggregate": { "aggregate": [ - 701 + 705 ], "nodes": [ - 699 + 703 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_aggregate_fields": { @@ -13624,7 +13759,7 @@ export default { 40, { "columns": [ - 714, + 718, "[e_draft_game_mode_select_column!]" ], "distinct": [ @@ -13633,88 +13768,88 @@ export default { } ], "max": [ - 707 + 711 ], "min": [ - 708 + 712 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_bool_exp": { "_and": [ - 702 + 706 ], "_not": [ - 702 + 706 ], "_or": [ - 702 + 706 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_constraint": {}, "e_draft_game_mode_enum": {}, "e_draft_game_mode_enum_comparison_exp": { "_eq": [ - 704 + 708 ], "_in": [ - 704 + 708 ], "_is_null": [ 5 ], "_neq": [ - 704 + 708 ], "_nin": [ - 704 + 708 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_mutation_response": { @@ -13722,122 +13857,122 @@ export default { 40 ], "returning": [ - 699 + 703 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_obj_rel_insert_input": { "data": [ - 706 + 710 ], "on_conflict": [ - 711 + 715 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_on_conflict": { "constraint": [ - 703 + 707 ], "update_columns": [ - 718 + 722 ], "where": [ - 702 + 706 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_select_column": {}, "e_draft_game_mode_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_stream_cursor_input": { "initial_value": [ - 717 + 721 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_mode_update_column": {}, "e_draft_game_mode_updates": { "_set": [ - 715 + 719 ], "where": [ - 702 + 706 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_aggregate": { "aggregate": [ - 722 + 726 ], "nodes": [ - 720 + 724 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_aggregate_fields": { @@ -13845,7 +13980,7 @@ export default { 40, { "columns": [ - 735, + 739, "[e_draft_game_player_status_select_column!]" ], "distinct": [ @@ -13854,88 +13989,88 @@ export default { } ], "max": [ - 728 + 732 ], "min": [ - 729 + 733 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_bool_exp": { "_and": [ - 723 + 727 ], "_not": [ - 723 + 727 ], "_or": [ - 723 + 727 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_constraint": {}, "e_draft_game_player_status_enum": {}, "e_draft_game_player_status_enum_comparison_exp": { "_eq": [ - 725 + 729 ], "_in": [ - 725 + 729 ], "_is_null": [ 5 ], "_neq": [ - 725 + 729 ], "_nin": [ - 725 + 729 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_mutation_response": { @@ -13943,122 +14078,122 @@ export default { 40 ], "returning": [ - 720 + 724 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_obj_rel_insert_input": { "data": [ - 727 + 731 ], "on_conflict": [ - 732 + 736 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_on_conflict": { "constraint": [ - 724 + 728 ], "update_columns": [ - 739 + 743 ], "where": [ - 723 + 727 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_select_column": {}, "e_draft_game_player_status_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_stream_cursor_input": { "initial_value": [ - 738 + 742 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_player_status_update_column": {}, "e_draft_game_player_status_updates": { "_set": [ - 736 + 740 ], "where": [ - 723 + 727 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_aggregate": { "aggregate": [ - 743 + 747 ], "nodes": [ - 741 + 745 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_aggregate_fields": { @@ -14066,7 +14201,7 @@ export default { 40, { "columns": [ - 756, + 760, "[e_draft_game_status_select_column!]" ], "distinct": [ @@ -14075,88 +14210,88 @@ export default { } ], "max": [ - 749 + 753 ], "min": [ - 750 + 754 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_bool_exp": { "_and": [ - 744 + 748 ], "_not": [ - 744 + 748 ], "_or": [ - 744 + 748 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_constraint": {}, "e_draft_game_status_enum": {}, "e_draft_game_status_enum_comparison_exp": { "_eq": [ - 746 + 750 ], "_in": [ - 746 + 750 ], "_is_null": [ 5 ], "_neq": [ - 746 + 750 ], "_nin": [ - 746 + 750 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_mutation_response": { @@ -14164,122 +14299,122 @@ export default { 40 ], "returning": [ - 741 + 745 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_obj_rel_insert_input": { "data": [ - 748 + 752 ], "on_conflict": [ - 753 + 757 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_on_conflict": { "constraint": [ - 745 + 749 ], "update_columns": [ - 760 + 764 ], "where": [ - 744 + 748 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_select_column": {}, "e_draft_game_status_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_stream_cursor_input": { "initial_value": [ - 759 + 763 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_draft_game_status_update_column": {}, "e_draft_game_status_updates": { "_set": [ - 757 + 761 ], "where": [ - 744 + 748 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_aggregate": { "aggregate": [ - 764 + 768 ], "nodes": [ - 762 + 766 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_aggregate_fields": { @@ -14287,7 +14422,7 @@ export default { 40, { "columns": [ - 776, + 780, "[e_event_media_access_select_column!]" ], "distinct": [ @@ -14296,88 +14431,88 @@ export default { } ], "max": [ - 770 + 774 ], "min": [ - 771 + 775 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_bool_exp": { "_and": [ - 765 + 769 ], "_not": [ - 765 + 769 ], "_or": [ - 765 + 769 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_constraint": {}, "e_event_media_access_enum": {}, "e_event_media_access_enum_comparison_exp": { "_eq": [ - 767 + 771 ], "_in": [ - 767 + 771 ], "_is_null": [ 5 ], "_neq": [ - 767 + 771 ], "_nin": [ - 767 + 771 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_mutation_response": { @@ -14385,111 +14520,111 @@ export default { 40 ], "returning": [ - 762 + 766 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_on_conflict": { "constraint": [ - 766 + 770 ], "update_columns": [ - 780 + 784 ], "where": [ - 765 + 769 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_select_column": {}, "e_event_media_access_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_stream_cursor_input": { "initial_value": [ - 779 + 783 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_event_media_access_update_column": {}, "e_event_media_access_updates": { "_set": [ - 777 + 781 ], "where": [ - 765 + 769 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_aggregate": { "aggregate": [ - 784 + 788 ], "nodes": [ - 782 + 786 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_aggregate_fields": { @@ -14497,7 +14632,7 @@ export default { 40, { "columns": [ - 796, + 800, "[e_event_visibility_select_column!]" ], "distinct": [ @@ -14506,88 +14641,88 @@ export default { } ], "max": [ - 790 + 794 ], "min": [ - 791 + 795 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_bool_exp": { "_and": [ - 785 + 789 ], "_not": [ - 785 + 789 ], "_or": [ - 785 + 789 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_constraint": {}, "e_event_visibility_enum": {}, "e_event_visibility_enum_comparison_exp": { "_eq": [ - 787 + 791 ], "_in": [ - 787 + 791 ], "_is_null": [ 5 ], "_neq": [ - 787 + 791 ], "_nin": [ - 787 + 791 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_mutation_response": { @@ -14595,111 +14730,111 @@ export default { 40 ], "returning": [ - 782 + 786 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_on_conflict": { "constraint": [ - 786 + 790 ], "update_columns": [ - 800 + 804 ], "where": [ - 785 + 789 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_select_column": {}, "e_event_visibility_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_stream_cursor_input": { "initial_value": [ - 799 + 803 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_event_visibility_update_column": {}, "e_event_visibility_updates": { "_set": [ - 797 + 801 ], "where": [ - 785 + 789 ], "__typename": [ - 80 + 83 ] }, "e_friend_status": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_aggregate": { "aggregate": [ - 804 + 808 ], "nodes": [ - 802 + 806 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_aggregate_fields": { @@ -14707,7 +14842,7 @@ export default { 40, { "columns": [ - 817, + 821, "[e_friend_status_select_column!]" ], "distinct": [ @@ -14716,88 +14851,88 @@ export default { } ], "max": [ - 810 + 814 ], "min": [ - 811 + 815 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_bool_exp": { "_and": [ - 805 + 809 ], "_not": [ - 805 + 809 ], "_or": [ - 805 + 809 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_constraint": {}, "e_friend_status_enum": {}, "e_friend_status_enum_comparison_exp": { "_eq": [ - 807 + 811 ], "_in": [ - 807 + 811 ], "_is_null": [ 5 ], "_neq": [ - 807 + 811 ], "_nin": [ - 807 + 811 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_mutation_response": { @@ -14805,122 +14940,122 @@ export default { 40 ], "returning": [ - 802 + 806 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_obj_rel_insert_input": { "data": [ - 809 + 813 ], "on_conflict": [ - 814 + 818 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_on_conflict": { "constraint": [ - 806 + 810 ], "update_columns": [ - 821 + 825 ], "where": [ - 805 + 809 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_select_column": {}, "e_friend_status_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 820 + 824 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 818 + 822 ], "where": [ - 805 + 809 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_aggregate": { "aggregate": [ - 825 + 829 ], "nodes": [ - 823 + 827 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_aggregate_fields": { @@ -14928,7 +15063,7 @@ export default { 40, { "columns": [ - 837, + 841, "[e_game_cfg_types_select_column!]" ], "distinct": [ @@ -14937,88 +15072,88 @@ export default { } ], "max": [ - 831 + 835 ], "min": [ - 832 + 836 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_bool_exp": { "_and": [ - 826 + 830 ], "_not": [ - 826 + 830 ], "_or": [ - 826 + 830 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_constraint": {}, "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 828 + 832 ], "_in": [ - 828 + 832 ], "_is_null": [ 5 ], "_neq": [ - 828 + 832 ], "_nin": [ - 828 + 832 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_mutation_response": { @@ -15026,120 +15161,120 @@ export default { 40 ], "returning": [ - 823 + 827 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_on_conflict": { "constraint": [ - 827 + 831 ], "update_columns": [ - 841 + 845 ], "where": [ - 826 + 830 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_select_column": {}, "e_game_cfg_types_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 840 + 844 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 838 + 842 ], "where": [ - 826 + 830 ], "__typename": [ - 80 + 83 ] }, - "e_game_server_node_statuses": { + "e_game_plugin_channels": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_game_server_node_statuses_aggregate": { + "e_game_plugin_channels_aggregate": { "aggregate": [ - 845 + 849 ], "nodes": [ - 843 + 847 ], "__typename": [ - 80 + 83 ] }, - "e_game_server_node_statuses_aggregate_fields": { + "e_game_plugin_channels_aggregate_fields": { "count": [ 40, { "columns": [ - 858, - "[e_game_server_node_statuses_select_column!]" + 861, + "[e_game_plugin_channels_select_column!]" ], "distinct": [ 5 @@ -15147,220 +15282,209 @@ export default { } ], "max": [ - 851 + 855 ], "min": [ - 852 + 856 ], "__typename": [ - 80 + 83 ] }, - "e_game_server_node_statuses_bool_exp": { + "e_game_plugin_channels_bool_exp": { "_and": [ - 846 + 850 ], "_not": [ - 846 + 850 ], "_or": [ - 846 + 850 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "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 + 852 ], "_in": [ - 848 + 852 ], "_is_null": [ 5 ], "_neq": [ - 848 + 852 ], "_nin": [ - 848 + 852 ], "__typename": [ - 80 + 83 ] }, - "e_game_server_node_statuses_insert_input": { + "e_game_plugin_channels_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_game_server_node_statuses_max_fields": { + "e_game_plugin_channels_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_game_server_node_statuses_min_fields": { + "e_game_plugin_channels_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_game_server_node_statuses_mutation_response": { + "e_game_plugin_channels_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 843 - ], - "__typename": [ - 80 - ] - }, - "e_game_server_node_statuses_obj_rel_insert_input": { - "data": [ - 850 - ], - "on_conflict": [ - 855 + 847 ], "__typename": [ - 80 + 83 ] }, - "e_game_server_node_statuses_on_conflict": { + "e_game_plugin_channels_on_conflict": { "constraint": [ - 847 + 851 ], "update_columns": [ - 862 + 865 ], "where": [ - 846 + 850 ], "__typename": [ - 80 + 83 ] }, - "e_game_server_node_statuses_order_by": { + "e_game_plugin_channels_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_game_server_node_statuses_pk_columns_input": { + "e_game_plugin_channels_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "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 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_game_server_node_statuses_stream_cursor_input": { + "e_game_plugin_channels_stream_cursor_input": { "initial_value": [ - 861 + 864 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_game_server_node_statuses_stream_cursor_value_input": { + "e_game_plugin_channels_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "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 + 862 ], "where": [ - 846 + 850 ], "__typename": [ - 80 + 83 ] }, - "e_league_movement_types": { + "e_game_plugin_install_statuses": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_movement_types_aggregate": { + "e_game_plugin_install_statuses_aggregate": { "aggregate": [ - 866 + 869 ], "nodes": [ - 864 + 867 ], "__typename": [ - 80 + 83 ] }, - "e_league_movement_types_aggregate_fields": { + "e_game_plugin_install_statuses_aggregate_fields": { "count": [ 40, { "columns": [ - 879, - "[e_league_movement_types_select_column!]" + 881, + "[e_game_plugin_install_statuses_select_column!]" ], "distinct": [ 5 @@ -15368,220 +15492,209 @@ export default { } ], "max": [ - 872 + 875 ], "min": [ - 873 + 876 ], "__typename": [ - 80 + 83 ] }, - "e_league_movement_types_bool_exp": { + "e_game_plugin_install_statuses_bool_exp": { "_and": [ - 867 + 870 ], "_not": [ - 867 + 870 ], "_or": [ - 867 + 870 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "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 + 872 ], "_in": [ - 869 + 872 ], "_is_null": [ 5 ], "_neq": [ - 869 + 872 ], "_nin": [ - 869 + 872 ], "__typename": [ - 80 + 83 ] }, - "e_league_movement_types_insert_input": { + "e_game_plugin_install_statuses_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_movement_types_max_fields": { + "e_game_plugin_install_statuses_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_movement_types_min_fields": { + "e_game_plugin_install_statuses_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_movement_types_mutation_response": { + "e_game_plugin_install_statuses_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 864 - ], - "__typename": [ - 80 - ] - }, - "e_league_movement_types_obj_rel_insert_input": { - "data": [ - 871 - ], - "on_conflict": [ - 876 + 867 ], "__typename": [ - 80 + 83 ] }, - "e_league_movement_types_on_conflict": { + "e_game_plugin_install_statuses_on_conflict": { "constraint": [ - 868 + 871 ], "update_columns": [ - 883 + 885 ], "where": [ - 867 + 870 ], "__typename": [ - 80 + 83 ] }, - "e_league_movement_types_order_by": { + "e_game_plugin_install_statuses_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_league_movement_types_pk_columns_input": { + "e_game_plugin_install_statuses_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "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 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_movement_types_stream_cursor_input": { + "e_game_plugin_install_statuses_stream_cursor_input": { "initial_value": [ - 882 + 884 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_league_movement_types_stream_cursor_value_input": { + "e_game_plugin_install_statuses_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "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 + 882 ], "where": [ - 867 + 870 ], "__typename": [ - 80 + 83 ] }, - "e_league_proposal_statuses": { + "e_game_plugin_kinds": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_proposal_statuses_aggregate": { + "e_game_plugin_kinds_aggregate": { "aggregate": [ - 887 + 889 ], "nodes": [ - 885 + 887 ], "__typename": [ - 80 + 83 ] }, - "e_league_proposal_statuses_aggregate_fields": { + "e_game_plugin_kinds_aggregate_fields": { "count": [ 40, { "columns": [ - 900, - "[e_league_proposal_statuses_select_column!]" + 901, + "[e_game_plugin_kinds_select_column!]" ], "distinct": [ 5 @@ -15589,220 +15702,209 @@ export default { } ], "max": [ - 893 + 895 ], "min": [ - 894 + 896 ], "__typename": [ - 80 + 83 ] }, - "e_league_proposal_statuses_bool_exp": { + "e_game_plugin_kinds_bool_exp": { "_and": [ - 888 + 890 ], "_not": [ - 888 + 890 ], "_or": [ - 888 + 890 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "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 + 892 ], "_in": [ - 890 + 892 ], "_is_null": [ 5 ], "_neq": [ - 890 + 892 ], "_nin": [ - 890 + 892 ], "__typename": [ - 80 + 83 ] }, - "e_league_proposal_statuses_insert_input": { + "e_game_plugin_kinds_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_proposal_statuses_max_fields": { + "e_game_plugin_kinds_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_proposal_statuses_min_fields": { + "e_game_plugin_kinds_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_proposal_statuses_mutation_response": { + "e_game_plugin_kinds_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 885 - ], - "__typename": [ - 80 - ] - }, - "e_league_proposal_statuses_obj_rel_insert_input": { - "data": [ - 892 - ], - "on_conflict": [ - 897 + 887 ], "__typename": [ - 80 + 83 ] }, - "e_league_proposal_statuses_on_conflict": { + "e_game_plugin_kinds_on_conflict": { "constraint": [ - 889 + 891 ], "update_columns": [ - 904 + 905 ], "where": [ - 888 + 890 ], "__typename": [ - 80 + 83 ] }, - "e_league_proposal_statuses_order_by": { + "e_game_plugin_kinds_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_league_proposal_statuses_pk_columns_input": { + "e_game_plugin_kinds_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "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 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_proposal_statuses_stream_cursor_input": { + "e_game_plugin_kinds_stream_cursor_input": { "initial_value": [ - 903 + 904 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_league_proposal_statuses_stream_cursor_value_input": { + "e_game_plugin_kinds_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_proposal_statuses_update_column": {}, - "e_league_proposal_statuses_updates": { + "e_game_plugin_kinds_update_column": {}, + "e_game_plugin_kinds_updates": { "_set": [ - 901 + 902 ], "where": [ - 888 + 890 ], "__typename": [ - 80 + 83 ] }, - "e_league_registration_statuses": { + "e_game_server_node_statuses": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_registration_statuses_aggregate": { + "e_game_server_node_statuses_aggregate": { "aggregate": [ - 908 + 909 ], "nodes": [ - 906 + 907 ], "__typename": [ - 80 + 83 ] }, - "e_league_registration_statuses_aggregate_fields": { + "e_game_server_node_statuses_aggregate_fields": { "count": [ 40, { "columns": [ - 921, - "[e_league_registration_statuses_select_column!]" + 922, + "[e_game_server_node_statuses_select_column!]" ], "distinct": [ 5 @@ -15810,220 +15912,220 @@ export default { } ], "max": [ - 914 + 915 ], "min": [ - 915 + 916 ], "__typename": [ - 80 + 83 ] }, - "e_league_registration_statuses_bool_exp": { + "e_game_server_node_statuses_bool_exp": { "_and": [ - 909 + 910 ], "_not": [ - 909 + 910 ], "_or": [ - 909 + 910 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "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 + 912 ], "_in": [ - 911 + 912 ], "_is_null": [ 5 ], "_neq": [ - 911 + 912 ], "_nin": [ - 911 + 912 ], "__typename": [ - 80 + 83 ] }, - "e_league_registration_statuses_insert_input": { + "e_game_server_node_statuses_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_registration_statuses_max_fields": { + "e_game_server_node_statuses_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_registration_statuses_min_fields": { + "e_game_server_node_statuses_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_registration_statuses_mutation_response": { + "e_game_server_node_statuses_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 906 + 907 ], "__typename": [ - 80 + 83 ] }, - "e_league_registration_statuses_obj_rel_insert_input": { + "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 913 + 914 ], "on_conflict": [ - 918 + 919 ], "__typename": [ - 80 + 83 ] }, - "e_league_registration_statuses_on_conflict": { + "e_game_server_node_statuses_on_conflict": { "constraint": [ - 910 + 911 ], "update_columns": [ - 925 + 926 ], "where": [ - 909 + 910 ], "__typename": [ - 80 + 83 ] }, - "e_league_registration_statuses_order_by": { + "e_game_server_node_statuses_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_league_registration_statuses_pk_columns_input": { + "e_game_server_node_statuses_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "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 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_registration_statuses_stream_cursor_input": { + "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 924 + 925 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_league_registration_statuses_stream_cursor_value_input": { + "e_game_server_node_statuses_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "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 + 923 ], "where": [ - 909 + 910 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses": { + "e_league_movement_types": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses_aggregate": { + "e_league_movement_types_aggregate": { "aggregate": [ - 929 + 930 ], "nodes": [ - 927 + 928 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses_aggregate_fields": { + "e_league_movement_types_aggregate_fields": { "count": [ 40, { "columns": [ - 942, - "[e_league_season_statuses_select_column!]" + 943, + "[e_league_movement_types_select_column!]" ], "distinct": [ 5 @@ -16031,220 +16133,220 @@ export default { } ], "max": [ - 935 + 936 ], "min": [ - 936 + 937 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses_bool_exp": { + "e_league_movement_types_bool_exp": { "_and": [ - 930 + 931 ], "_not": [ - 930 + 931 ], "_or": [ - 930 + 931 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "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 + 933 ], "_in": [ - 932 + 933 ], "_is_null": [ 5 ], "_neq": [ - 932 + 933 ], "_nin": [ - 932 + 933 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses_insert_input": { + "e_league_movement_types_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses_max_fields": { + "e_league_movement_types_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses_min_fields": { + "e_league_movement_types_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses_mutation_response": { + "e_league_movement_types_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 927 + 928 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses_obj_rel_insert_input": { + "e_league_movement_types_obj_rel_insert_input": { "data": [ - 934 + 935 ], "on_conflict": [ - 939 + 940 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses_on_conflict": { + "e_league_movement_types_on_conflict": { "constraint": [ - 931 + 932 ], "update_columns": [ - 946 + 947 ], "where": [ - 930 + 931 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses_order_by": { + "e_league_movement_types_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses_pk_columns_input": { + "e_league_movement_types_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "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 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses_stream_cursor_input": { + "e_league_movement_types_stream_cursor_input": { "initial_value": [ - 945 + 946 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses_stream_cursor_value_input": { + "e_league_movement_types_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_league_season_statuses_update_column": {}, - "e_league_season_statuses_updates": { + "e_league_movement_types_update_column": {}, + "e_league_movement_types_updates": { "_set": [ - 943 + 944 ], "where": [ - 930 + 931 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access": { + "e_league_proposal_statuses": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_aggregate": { + "e_league_proposal_statuses_aggregate": { "aggregate": [ - 950 + 951 ], "nodes": [ - 948 + 949 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_aggregate_fields": { + "e_league_proposal_statuses_aggregate_fields": { "count": [ 40, { "columns": [ - 963, - "[e_lobby_access_select_column!]" + 964, + "[e_league_proposal_statuses_select_column!]" ], "distinct": [ 5 @@ -16252,220 +16354,220 @@ export default { } ], "max": [ - 956 + 957 ], "min": [ - 957 + 958 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_bool_exp": { + "e_league_proposal_statuses_bool_exp": { "_and": [ - 951 + 952 ], "_not": [ - 951 + 952 ], "_or": [ - 951 + 952 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_constraint": {}, - "e_lobby_access_enum": {}, - "e_lobby_access_enum_comparison_exp": { + "e_league_proposal_statuses_constraint": {}, + "e_league_proposal_statuses_enum": {}, + "e_league_proposal_statuses_enum_comparison_exp": { "_eq": [ - 953 + 954 ], "_in": [ - 953 + 954 ], "_is_null": [ 5 ], "_neq": [ - 953 + 954 ], "_nin": [ - 953 + 954 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_insert_input": { + "e_league_proposal_statuses_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_max_fields": { + "e_league_proposal_statuses_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_min_fields": { + "e_league_proposal_statuses_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_mutation_response": { + "e_league_proposal_statuses_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 948 + 949 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_obj_rel_insert_input": { + "e_league_proposal_statuses_obj_rel_insert_input": { "data": [ - 955 + 956 ], "on_conflict": [ - 960 + 961 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_on_conflict": { + "e_league_proposal_statuses_on_conflict": { "constraint": [ - 952 + 953 ], "update_columns": [ - 967 + 968 ], "where": [ - 951 + 952 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_order_by": { + "e_league_proposal_statuses_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_pk_columns_input": { + "e_league_proposal_statuses_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_select_column": {}, - "e_lobby_access_set_input": { + "e_league_proposal_statuses_select_column": {}, + "e_league_proposal_statuses_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_stream_cursor_input": { + "e_league_proposal_statuses_stream_cursor_input": { "initial_value": [ - 966 + 967 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_stream_cursor_value_input": { + "e_league_proposal_statuses_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_access_update_column": {}, - "e_lobby_access_updates": { + "e_league_proposal_statuses_update_column": {}, + "e_league_proposal_statuses_updates": { "_set": [ - 964 + 965 ], "where": [ - 951 + 952 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status": { + "e_league_registration_statuses": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_aggregate": { + "e_league_registration_statuses_aggregate": { "aggregate": [ - 971 + 972 ], "nodes": [ - 969 + 970 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_aggregate_fields": { + "e_league_registration_statuses_aggregate_fields": { "count": [ 40, { "columns": [ - 983, - "[e_lobby_player_status_select_column!]" + 985, + "[e_league_registration_statuses_select_column!]" ], "distinct": [ 5 @@ -16473,209 +16575,220 @@ export default { } ], "max": [ - 977 + 978 ], "min": [ - 978 + 979 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_bool_exp": { + "e_league_registration_statuses_bool_exp": { "_and": [ - 972 + 973 ], "_not": [ - 972 + 973 ], "_or": [ - 972 + 973 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_constraint": {}, - "e_lobby_player_status_enum": {}, - "e_lobby_player_status_enum_comparison_exp": { + "e_league_registration_statuses_constraint": {}, + "e_league_registration_statuses_enum": {}, + "e_league_registration_statuses_enum_comparison_exp": { "_eq": [ - 974 + 975 ], "_in": [ - 974 + 975 ], "_is_null": [ 5 ], "_neq": [ - 974 + 975 ], "_nin": [ - 974 + 975 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_insert_input": { + "e_league_registration_statuses_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_max_fields": { + "e_league_registration_statuses_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_min_fields": { + "e_league_registration_statuses_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_mutation_response": { + "e_league_registration_statuses_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 969 + 970 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_on_conflict": { + "e_league_registration_statuses_obj_rel_insert_input": { + "data": [ + 977 + ], + "on_conflict": [ + 982 + ], + "__typename": [ + 83 + ] + }, + "e_league_registration_statuses_on_conflict": { "constraint": [ - 973 + 974 ], "update_columns": [ - 987 + 989 ], "where": [ - 972 + 973 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_order_by": { + "e_league_registration_statuses_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_pk_columns_input": { + "e_league_registration_statuses_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_select_column": {}, - "e_lobby_player_status_set_input": { + "e_league_registration_statuses_select_column": {}, + "e_league_registration_statuses_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_stream_cursor_input": { + "e_league_registration_statuses_stream_cursor_input": { "initial_value": [ - 986 + 988 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_stream_cursor_value_input": { + "e_league_registration_statuses_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_lobby_player_status_update_column": {}, - "e_lobby_player_status_updates": { + "e_league_registration_statuses_update_column": {}, + "e_league_registration_statuses_updates": { "_set": [ - 984 + 986 ], "where": [ - 972 + 973 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types": { + "e_league_season_statuses": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_aggregate": { + "e_league_season_statuses_aggregate": { "aggregate": [ - 991 + 993 ], "nodes": [ - 989 + 991 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_aggregate_fields": { + "e_league_season_statuses_aggregate_fields": { "count": [ 40, { "columns": [ - 1004, - "[e_map_pool_types_select_column!]" + 1006, + "[e_league_season_statuses_select_column!]" ], "distinct": [ 5 @@ -16683,264 +16796,220 @@ export default { } ], "max": [ - 997 + 999 ], "min": [ - 998 + 1000 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_bool_exp": { + "e_league_season_statuses_bool_exp": { "_and": [ - 992 + 994 ], "_not": [ - 992 + 994 ], "_or": [ - 992 + 994 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_constraint": {}, - "e_map_pool_types_enum": {}, - "e_map_pool_types_enum_comparison_exp": { + "e_league_season_statuses_constraint": {}, + "e_league_season_statuses_enum": {}, + "e_league_season_statuses_enum_comparison_exp": { "_eq": [ - 994 + 996 ], "_in": [ - 994 + 996 ], "_is_null": [ 5 ], "_neq": [ - 994 + 996 ], "_nin": [ - 994 + 996 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_insert_input": { + "e_league_season_statuses_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_max_fields": { + "e_league_season_statuses_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_min_fields": { + "e_league_season_statuses_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_mutation_response": { + "e_league_season_statuses_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 989 + 991 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_obj_rel_insert_input": { + "e_league_season_statuses_obj_rel_insert_input": { "data": [ - 996 + 998 ], "on_conflict": [ - 1001 + 1003 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_on_conflict": { + "e_league_season_statuses_on_conflict": { "constraint": [ - 993 + 995 ], "update_columns": [ - 1008 + 1010 ], "where": [ - 992 + 994 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_order_by": { + "e_league_season_statuses_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_pk_columns_input": { + "e_league_season_statuses_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_select_column": {}, - "e_map_pool_types_set_input": { + "e_league_season_statuses_select_column": {}, + "e_league_season_statuses_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_stream_cursor_input": { + "e_league_season_statuses_stream_cursor_input": { "initial_value": [ - 1007 + 1009 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_stream_cursor_value_input": { + "e_league_season_statuses_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_map_pool_types_update_column": {}, - "e_map_pool_types_updates": { + "e_league_season_statuses_update_column": {}, + "e_league_season_statuses_updates": { "_set": [ - 1005 + 1007 ], "where": [ - 992 + 994 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility": { + "e_lobby_access": { "description": [ - 80 - ], - "match_clips": [ - 2421, - { - "distinct_on": [ - 2443, - "[match_clips_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 2441, - "[match_clips_order_by!]" - ], - "where": [ - 2430 - ] - } - ], - "match_clips_aggregate": [ - 2422, - { - "distinct_on": [ - 2443, - "[match_clips_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 2441, - "[match_clips_order_by!]" - ], - "where": [ - 2430 - ] - } + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_aggregate": { + "e_lobby_access_aggregate": { "aggregate": [ - 1012 + 1014 ], "nodes": [ - 1010 + 1012 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_aggregate_fields": { + "e_lobby_access_aggregate_fields": { "count": [ 40, { "columns": [ - 1024, - "[e_match_clip_visibility_select_column!]" + 1027, + "[e_lobby_access_select_column!]" ], "distinct": [ 5 @@ -16948,265 +17017,220 @@ export default { } ], "max": [ - 1018 + 1020 ], "min": [ - 1019 + 1021 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_bool_exp": { + "e_lobby_access_bool_exp": { "_and": [ - 1013 + 1015 ], "_not": [ - 1013 + 1015 ], "_or": [ - 1013 + 1015 ], "description": [ - 82 - ], - "match_clips": [ - 2430 - ], - "match_clips_aggregate": [ - 2423 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_constraint": {}, - "e_match_clip_visibility_enum": {}, - "e_match_clip_visibility_enum_comparison_exp": { + "e_lobby_access_constraint": {}, + "e_lobby_access_enum": {}, + "e_lobby_access_enum_comparison_exp": { "_eq": [ - 1015 + 1017 ], "_in": [ - 1015 + 1017 ], "_is_null": [ 5 ], "_neq": [ - 1015 + 1017 ], "_nin": [ - 1015 + 1017 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_insert_input": { + "e_lobby_access_insert_input": { "description": [ - 80 - ], - "match_clips": [ - 2427 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_max_fields": { + "e_lobby_access_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_min_fields": { + "e_lobby_access_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_mutation_response": { + "e_lobby_access_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1010 + 1012 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_on_conflict": { + "e_lobby_access_obj_rel_insert_input": { + "data": [ + 1019 + ], + "on_conflict": [ + 1024 + ], + "__typename": [ + 83 + ] + }, + "e_lobby_access_on_conflict": { "constraint": [ - 1014 + 1016 ], "update_columns": [ - 1028 + 1031 ], "where": [ - 1013 + 1015 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_order_by": { + "e_lobby_access_order_by": { "description": [ - 3094 - ], - "match_clips_aggregate": [ - 2426 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_pk_columns_input": { + "e_lobby_access_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_select_column": {}, - "e_match_clip_visibility_set_input": { + "e_lobby_access_select_column": {}, + "e_lobby_access_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_stream_cursor_input": { + "e_lobby_access_stream_cursor_input": { "initial_value": [ - 1027 + 1030 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_stream_cursor_value_input": { + "e_lobby_access_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_clip_visibility_update_column": {}, - "e_match_clip_visibility_updates": { + "e_lobby_access_update_column": {}, + "e_lobby_access_updates": { "_set": [ - 1025 + 1028 ], "where": [ - 1013 + 1015 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status": { + "e_lobby_player_status": { "description": [ - 80 - ], - "match_maps": [ - 2716, - { - "distinct_on": [ - 2738, - "[match_maps_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 2736, - "[match_maps_order_by!]" - ], - "where": [ - 2725 - ] - } - ], - "match_maps_aggregate": [ - 2717, - { - "distinct_on": [ - 2738, - "[match_maps_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 2736, - "[match_maps_order_by!]" - ], - "where": [ - 2725 - ] - } + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_aggregate": { + "e_lobby_player_status_aggregate": { "aggregate": [ - 1032 + 1035 ], "nodes": [ - 1030 + 1033 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_aggregate_fields": { + "e_lobby_player_status_aggregate_fields": { "count": [ 40, { "columns": [ - 1045, - "[e_match_map_status_select_column!]" + 1047, + "[e_lobby_player_status_select_column!]" ], "distinct": [ 5 @@ -17214,232 +17238,209 @@ export default { } ], "max": [ - 1038 + 1041 ], "min": [ - 1039 + 1042 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_bool_exp": { + "e_lobby_player_status_bool_exp": { "_and": [ - 1033 + 1036 ], "_not": [ - 1033 + 1036 ], "_or": [ - 1033 + 1036 ], "description": [ - 82 - ], - "match_maps": [ - 2725 - ], - "match_maps_aggregate": [ - 2718 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_constraint": {}, - "e_match_map_status_enum": {}, - "e_match_map_status_enum_comparison_exp": { + "e_lobby_player_status_constraint": {}, + "e_lobby_player_status_enum": {}, + "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 1035 + 1038 ], "_in": [ - 1035 + 1038 ], "_is_null": [ 5 ], "_neq": [ - 1035 + 1038 ], "_nin": [ - 1035 + 1038 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_insert_input": { + "e_lobby_player_status_insert_input": { "description": [ - 80 - ], - "match_maps": [ - 2722 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_max_fields": { + "e_lobby_player_status_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_min_fields": { + "e_lobby_player_status_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_mutation_response": { + "e_lobby_player_status_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1030 - ], - "__typename": [ - 80 - ] - }, - "e_match_map_status_obj_rel_insert_input": { - "data": [ - 1037 - ], - "on_conflict": [ - 1042 + 1033 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_on_conflict": { + "e_lobby_player_status_on_conflict": { "constraint": [ - 1034 + 1037 ], "update_columns": [ - 1049 + 1051 ], "where": [ - 1033 + 1036 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_order_by": { + "e_lobby_player_status_order_by": { "description": [ - 3094 - ], - "match_maps_aggregate": [ - 2721 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_pk_columns_input": { + "e_lobby_player_status_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_select_column": {}, - "e_match_map_status_set_input": { + "e_lobby_player_status_select_column": {}, + "e_lobby_player_status_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_stream_cursor_input": { + "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 1048 + 1050 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_stream_cursor_value_input": { + "e_lobby_player_status_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_map_status_update_column": {}, - "e_match_map_status_updates": { + "e_lobby_player_status_update_column": {}, + "e_lobby_player_status_updates": { "_set": [ - 1046 + 1048 ], "where": [ - 1033 + 1036 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode": { + "e_map_pool_types": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_aggregate": { + "e_map_pool_types_aggregate": { "aggregate": [ - 1053 + 1055 ], "nodes": [ - 1051 + 1053 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_aggregate_fields": { + "e_map_pool_types_aggregate_fields": { "count": [ 40, { "columns": [ - 1065, - "[e_match_mode_select_column!]" + 1068, + "[e_map_pool_types_select_column!]" ], "distinct": [ 5 @@ -17447,190 +17448,201 @@ export default { } ], "max": [ - 1059 + 1061 ], "min": [ - 1060 + 1062 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_bool_exp": { + "e_map_pool_types_bool_exp": { "_and": [ - 1054 + 1056 ], "_not": [ - 1054 + 1056 ], "_or": [ - 1054 + 1056 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_constraint": {}, - "e_match_mode_enum": {}, - "e_match_mode_enum_comparison_exp": { + "e_map_pool_types_constraint": {}, + "e_map_pool_types_enum": {}, + "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 1056 + 1058 ], "_in": [ - 1056 + 1058 ], "_is_null": [ 5 ], "_neq": [ - 1056 + 1058 ], "_nin": [ - 1056 + 1058 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_insert_input": { + "e_map_pool_types_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_max_fields": { + "e_map_pool_types_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_min_fields": { + "e_map_pool_types_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_mutation_response": { + "e_map_pool_types_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1051 + 1053 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_on_conflict": { + "e_map_pool_types_obj_rel_insert_input": { + "data": [ + 1060 + ], + "on_conflict": [ + 1065 + ], + "__typename": [ + 83 + ] + }, + "e_map_pool_types_on_conflict": { "constraint": [ - 1055 + 1057 ], "update_columns": [ - 1069 + 1072 ], "where": [ - 1054 + 1056 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_order_by": { + "e_map_pool_types_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_pk_columns_input": { + "e_map_pool_types_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_select_column": {}, - "e_match_mode_set_input": { + "e_map_pool_types_select_column": {}, + "e_map_pool_types_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_stream_cursor_input": { + "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 1068 + 1071 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_stream_cursor_value_input": { + "e_map_pool_types_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_mode_update_column": {}, - "e_match_mode_updates": { + "e_map_pool_types_update_column": {}, + "e_map_pool_types_updates": { "_set": [ - 1066 + 1069 ], "where": [ - 1054 + 1056 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources": { + "e_match_clip_visibility": { "description": [ - 80 + 83 ], - "match_lineup_players": [ - 2509, + "match_clips": [ + 2682, { "distinct_on": [ - 2532, - "[match_lineup_players_select_column!]" + 2704, + "[match_clips_select_column!]" ], "limit": [ 40 @@ -17639,20 +17651,20 @@ export default { 40 ], "order_by": [ - 2530, - "[match_lineup_players_order_by!]" + 2702, + "[match_clips_order_by!]" ], "where": [ - 2520 + 2691 ] } ], - "match_lineup_players_aggregate": [ - 2510, + "match_clips_aggregate": [ + 2683, { "distinct_on": [ - 2532, - "[match_lineup_players_select_column!]" + 2704, + "[match_clips_select_column!]" ], "limit": [ 40 @@ -17661,39 +17673,39 @@ export default { 40 ], "order_by": [ - 2530, - "[match_lineup_players_order_by!]" + 2702, + "[match_clips_order_by!]" ], "where": [ - 2520 + 2691 ] } ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_aggregate": { + "e_match_clip_visibility_aggregate": { "aggregate": [ - 1073 + 1076 ], "nodes": [ - 1071 + 1074 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_aggregate_fields": { + "e_match_clip_visibility_aggregate_fields": { "count": [ 40, { "columns": [ - 1085, - "[e_match_party_sources_select_column!]" + 1088, + "[e_match_clip_visibility_select_column!]" ], "distinct": [ 5 @@ -17701,202 +17713,202 @@ export default { } ], "max": [ - 1079 + 1082 ], "min": [ - 1080 + 1083 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_bool_exp": { + "e_match_clip_visibility_bool_exp": { "_and": [ - 1074 + 1077 ], "_not": [ - 1074 + 1077 ], "_or": [ - 1074 + 1077 ], "description": [ - 82 + 85 ], - "match_lineup_players": [ - 2520 + "match_clips": [ + 2691 ], - "match_lineup_players_aggregate": [ - 2511 + "match_clips_aggregate": [ + 2684 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_constraint": {}, - "e_match_party_sources_enum": {}, - "e_match_party_sources_enum_comparison_exp": { + "e_match_clip_visibility_constraint": {}, + "e_match_clip_visibility_enum": {}, + "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 1076 + 1079 ], "_in": [ - 1076 + 1079 ], "_is_null": [ 5 ], "_neq": [ - 1076 + 1079 ], "_nin": [ - 1076 + 1079 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_insert_input": { + "e_match_clip_visibility_insert_input": { "description": [ - 80 + 83 ], - "match_lineup_players": [ - 2517 + "match_clips": [ + 2688 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_max_fields": { + "e_match_clip_visibility_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_min_fields": { + "e_match_clip_visibility_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_mutation_response": { + "e_match_clip_visibility_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1071 + 1074 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_on_conflict": { + "e_match_clip_visibility_on_conflict": { "constraint": [ - 1075 + 1078 ], "update_columns": [ - 1089 + 1092 ], "where": [ - 1074 + 1077 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_order_by": { + "e_match_clip_visibility_order_by": { "description": [ - 3094 + 3377 ], - "match_lineup_players_aggregate": [ - 2516 + "match_clips_aggregate": [ + 2687 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_pk_columns_input": { + "e_match_clip_visibility_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_select_column": {}, - "e_match_party_sources_set_input": { + "e_match_clip_visibility_select_column": {}, + "e_match_clip_visibility_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_stream_cursor_input": { + "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 1088 + 1091 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_stream_cursor_value_input": { + "e_match_clip_visibility_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_party_sources_update_column": {}, - "e_match_party_sources_updates": { + "e_match_clip_visibility_update_column": {}, + "e_match_clip_visibility_updates": { "_set": [ - 1086 + 1089 ], "where": [ - 1074 + 1077 ], "__typename": [ - 80 + 83 ] }, - "e_match_status": { + "e_match_map_status": { "description": [ - 80 + 83 ], - "matches": [ - 2882, + "match_maps": [ + 2977, { "distinct_on": [ - 2904, - "[matches_select_column!]" + 2999, + "[match_maps_select_column!]" ], "limit": [ 40 @@ -17905,20 +17917,20 @@ export default { 40 ], "order_by": [ - 2902, - "[matches_order_by!]" + 2997, + "[match_maps_order_by!]" ], "where": [ - 2891 + 2986 ] } ], - "matches_aggregate": [ - 2883, + "match_maps_aggregate": [ + 2978, { "distinct_on": [ - 2904, - "[matches_select_column!]" + 2999, + "[match_maps_select_column!]" ], "limit": [ 40 @@ -17927,39 +17939,39 @@ export default { 40 ], "order_by": [ - 2902, - "[matches_order_by!]" + 2997, + "[match_maps_order_by!]" ], "where": [ - 2891 + 2986 ] } ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_aggregate": { + "e_match_map_status_aggregate": { "aggregate": [ - 1093 + 1096 ], "nodes": [ - 1091 + 1094 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_aggregate_fields": { + "e_match_map_status_aggregate_fields": { "count": [ 40, { "columns": [ - 1106, - "[e_match_status_select_column!]" + 1109, + "[e_match_map_status_select_column!]" ], "distinct": [ 5 @@ -17967,276 +17979,232 @@ export default { } ], "max": [ - 1099 + 1102 ], "min": [ - 1100 + 1103 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_bool_exp": { + "e_match_map_status_bool_exp": { "_and": [ - 1094 + 1097 ], "_not": [ - 1094 + 1097 ], "_or": [ - 1094 + 1097 ], "description": [ - 82 + 85 ], - "matches": [ - 2891 + "match_maps": [ + 2986 ], - "matches_aggregate": [ - 2884 + "match_maps_aggregate": [ + 2979 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_constraint": {}, - "e_match_status_enum": {}, - "e_match_status_enum_comparison_exp": { + "e_match_map_status_constraint": {}, + "e_match_map_status_enum": {}, + "e_match_map_status_enum_comparison_exp": { "_eq": [ - 1096 + 1099 ], "_in": [ - 1096 + 1099 ], "_is_null": [ 5 ], "_neq": [ - 1096 + 1099 ], "_nin": [ - 1096 + 1099 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_insert_input": { + "e_match_map_status_insert_input": { "description": [ - 80 + 83 ], - "matches": [ - 2888 + "match_maps": [ + 2983 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_max_fields": { + "e_match_map_status_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_min_fields": { + "e_match_map_status_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_mutation_response": { + "e_match_map_status_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1091 + 1094 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_obj_rel_insert_input": { + "e_match_map_status_obj_rel_insert_input": { "data": [ - 1098 + 1101 ], "on_conflict": [ - 1103 + 1106 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_on_conflict": { + "e_match_map_status_on_conflict": { "constraint": [ - 1095 + 1098 ], "update_columns": [ - 1110 + 1113 ], "where": [ - 1094 + 1097 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_order_by": { + "e_match_map_status_order_by": { "description": [ - 3094 + 3377 ], - "matches_aggregate": [ - 2887 + "match_maps_aggregate": [ + 2982 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_pk_columns_input": { + "e_match_map_status_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_select_column": {}, - "e_match_status_set_input": { + "e_match_map_status_select_column": {}, + "e_match_map_status_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_stream_cursor_input": { + "e_match_map_status_stream_cursor_input": { "initial_value": [ - 1109 + 1112 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_stream_cursor_value_input": { + "e_match_map_status_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_status_update_column": {}, - "e_match_status_updates": { + "e_match_map_status_update_column": {}, + "e_match_map_status_updates": { "_set": [ - 1107 + 1110 ], "where": [ - 1094 + 1097 ], "__typename": [ - 80 + 83 ] }, - "e_match_types": { + "e_match_mode": { "description": [ - 80 - ], - "maps": [ - 2392, - { - "distinct_on": [ - 2413, - "[maps_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 2411, - "[maps_order_by!]" - ], - "where": [ - 2401 - ] - } - ], - "maps_aggregate": [ - 2393, - { - "distinct_on": [ - 2413, - "[maps_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 2411, - "[maps_order_by!]" - ], - "where": [ - 2401 - ] - } + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_aggregate": { + "e_match_mode_aggregate": { "aggregate": [ - 1114 + 1117 ], "nodes": [ - 1112 + 1115 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_aggregate_fields": { + "e_match_mode_aggregate_fields": { "count": [ 40, { "columns": [ - 1127, - "[e_match_types_select_column!]" + 1129, + "[e_match_mode_select_column!]" ], "distinct": [ 5 @@ -18244,232 +18212,253 @@ export default { } ], "max": [ - 1120 + 1123 ], "min": [ - 1121 + 1124 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_bool_exp": { + "e_match_mode_bool_exp": { "_and": [ - 1115 + 1118 ], "_not": [ - 1115 + 1118 ], "_or": [ - 1115 + 1118 ], "description": [ - 82 - ], - "maps": [ - 2401 - ], - "maps_aggregate": [ - 2394 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_constraint": {}, - "e_match_types_enum": {}, - "e_match_types_enum_comparison_exp": { + "e_match_mode_constraint": {}, + "e_match_mode_enum": {}, + "e_match_mode_enum_comparison_exp": { "_eq": [ - 1117 + 1120 ], "_in": [ - 1117 + 1120 ], "_is_null": [ 5 ], "_neq": [ - 1117 + 1120 ], "_nin": [ - 1117 + 1120 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_insert_input": { + "e_match_mode_insert_input": { "description": [ - 80 - ], - "maps": [ - 2400 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_max_fields": { + "e_match_mode_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_min_fields": { + "e_match_mode_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_mutation_response": { + "e_match_mode_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1112 - ], - "__typename": [ - 80 - ] - }, - "e_match_types_obj_rel_insert_input": { - "data": [ - 1119 - ], - "on_conflict": [ - 1124 + 1115 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_on_conflict": { + "e_match_mode_on_conflict": { "constraint": [ - 1116 + 1119 ], "update_columns": [ - 1131 + 1133 ], "where": [ - 1115 + 1118 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_order_by": { + "e_match_mode_order_by": { "description": [ - 3094 - ], - "maps_aggregate": [ - 2399 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_pk_columns_input": { + "e_match_mode_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_select_column": {}, - "e_match_types_set_input": { + "e_match_mode_select_column": {}, + "e_match_mode_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_stream_cursor_input": { + "e_match_mode_stream_cursor_input": { "initial_value": [ - 1130 + 1132 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_stream_cursor_value_input": { + "e_match_mode_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_match_types_update_column": {}, - "e_match_types_updates": { + "e_match_mode_update_column": {}, + "e_match_mode_updates": { "_set": [ - 1128 + 1130 ], "where": [ - 1115 + 1118 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types": { + "e_match_party_sources": { "description": [ - 80 + 83 + ], + "match_lineup_players": [ + 2770, + { + "distinct_on": [ + 2793, + "[match_lineup_players_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2791, + "[match_lineup_players_order_by!]" + ], + "where": [ + 2781 + ] + } + ], + "match_lineup_players_aggregate": [ + 2771, + { + "distinct_on": [ + 2793, + "[match_lineup_players_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2791, + "[match_lineup_players_order_by!]" + ], + "where": [ + 2781 + ] + } ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_aggregate": { + "e_match_party_sources_aggregate": { "aggregate": [ - 1135 + 1137 ], "nodes": [ - 1133 + 1135 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_aggregate_fields": { + "e_match_party_sources_aggregate_fields": { "count": [ 40, { "columns": [ - 1147, - "[e_notification_types_select_column!]" + 1149, + "[e_match_party_sources_select_column!]" ], "distinct": [ 5 @@ -18477,190 +18466,202 @@ export default { } ], "max": [ - 1141 + 1143 ], "min": [ - 1142 + 1144 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_bool_exp": { + "e_match_party_sources_bool_exp": { "_and": [ - 1136 + 1138 ], "_not": [ - 1136 + 1138 ], "_or": [ - 1136 + 1138 ], "description": [ - 82 + 85 + ], + "match_lineup_players": [ + 2781 + ], + "match_lineup_players_aggregate": [ + 2772 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_constraint": {}, - "e_notification_types_enum": {}, - "e_notification_types_enum_comparison_exp": { + "e_match_party_sources_constraint": {}, + "e_match_party_sources_enum": {}, + "e_match_party_sources_enum_comparison_exp": { "_eq": [ - 1138 + 1140 ], "_in": [ - 1138 + 1140 ], "_is_null": [ 5 ], "_neq": [ - 1138 + 1140 ], "_nin": [ - 1138 + 1140 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_insert_input": { + "e_match_party_sources_insert_input": { "description": [ - 80 + 83 + ], + "match_lineup_players": [ + 2778 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_max_fields": { + "e_match_party_sources_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_min_fields": { + "e_match_party_sources_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_mutation_response": { + "e_match_party_sources_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1133 + 1135 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_on_conflict": { + "e_match_party_sources_on_conflict": { "constraint": [ - 1137 + 1139 ], "update_columns": [ - 1151 + 1153 ], "where": [ - 1136 + 1138 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_order_by": { + "e_match_party_sources_order_by": { "description": [ - 3094 + 3377 + ], + "match_lineup_players_aggregate": [ + 2777 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_pk_columns_input": { + "e_match_party_sources_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_select_column": {}, - "e_notification_types_set_input": { + "e_match_party_sources_select_column": {}, + "e_match_party_sources_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_stream_cursor_input": { + "e_match_party_sources_stream_cursor_input": { "initial_value": [ - 1150 + 1152 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_stream_cursor_value_input": { + "e_match_party_sources_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_notification_types_update_column": {}, - "e_notification_types_updates": { + "e_match_party_sources_update_column": {}, + "e_match_party_sources_updates": { "_set": [ - 1148 + 1150 ], "where": [ - 1136 + 1138 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types": { + "e_match_status": { "description": [ - 80 + 83 ], - "player_objectives": [ - 3650, + "matches": [ + 3161, { "distinct_on": [ - 3671, - "[player_objectives_select_column!]" + 3185, + "[matches_select_column!]" ], "limit": [ 40 @@ -18669,20 +18670,20 @@ export default { 40 ], "order_by": [ - 3669, - "[player_objectives_order_by!]" + 3183, + "[matches_order_by!]" ], "where": [ - 3659 + 3172 ] } ], - "player_objectives_aggregate": [ - 3651, + "matches_aggregate": [ + 3162, { "distinct_on": [ - 3671, - "[player_objectives_select_column!]" + 3185, + "[matches_select_column!]" ], "limit": [ 40 @@ -18691,39 +18692,39 @@ export default { 40 ], "order_by": [ - 3669, - "[player_objectives_order_by!]" + 3183, + "[matches_order_by!]" ], "where": [ - 3659 + 3172 ] } ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_aggregate": { + "e_match_status_aggregate": { "aggregate": [ - 1155 + 1157 ], "nodes": [ - 1153 + 1155 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_aggregate_fields": { + "e_match_status_aggregate_fields": { "count": [ 40, { "columns": [ - 1167, - "[e_objective_types_select_column!]" + 1170, + "[e_match_status_select_column!]" ], "distinct": [ 5 @@ -18731,221 +18732,276 @@ export default { } ], "max": [ - 1161 + 1163 ], "min": [ - 1162 + 1164 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_bool_exp": { + "e_match_status_bool_exp": { "_and": [ - 1156 + 1158 ], "_not": [ - 1156 + 1158 ], "_or": [ - 1156 + 1158 ], "description": [ - 82 + 85 ], - "player_objectives": [ - 3659 + "matches": [ + 3172 ], - "player_objectives_aggregate": [ - 3652 + "matches_aggregate": [ + 3163 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_constraint": {}, - "e_objective_types_enum": {}, - "e_objective_types_enum_comparison_exp": { + "e_match_status_constraint": {}, + "e_match_status_enum": {}, + "e_match_status_enum_comparison_exp": { "_eq": [ - 1158 + 1160 ], "_in": [ - 1158 + 1160 ], "_is_null": [ 5 ], "_neq": [ - 1158 + 1160 ], "_nin": [ - 1158 + 1160 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_insert_input": { + "e_match_status_insert_input": { "description": [ - 80 + 83 ], - "player_objectives": [ - 3656 + "matches": [ + 3169 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_max_fields": { + "e_match_status_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_min_fields": { + "e_match_status_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_mutation_response": { + "e_match_status_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1153 + 1155 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_on_conflict": { + "e_match_status_obj_rel_insert_input": { + "data": [ + 1162 + ], + "on_conflict": [ + 1167 + ], + "__typename": [ + 83 + ] + }, + "e_match_status_on_conflict": { "constraint": [ - 1157 + 1159 ], "update_columns": [ - 1171 + 1174 ], "where": [ - 1156 + 1158 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_order_by": { + "e_match_status_order_by": { "description": [ - 3094 + 3377 ], - "player_objectives_aggregate": [ - 3655 + "matches_aggregate": [ + 3168 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_pk_columns_input": { + "e_match_status_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_select_column": {}, - "e_objective_types_set_input": { + "e_match_status_select_column": {}, + "e_match_status_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_stream_cursor_input": { + "e_match_status_stream_cursor_input": { "initial_value": [ - 1170 + 1173 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_stream_cursor_value_input": { + "e_match_status_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_objective_types_update_column": {}, - "e_objective_types_updates": { + "e_match_status_update_column": {}, + "e_match_status_updates": { "_set": [ - 1168 + 1171 ], "where": [ - 1156 + 1158 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles": { + "e_match_types": { "description": [ - 80 + 83 + ], + "maps": [ + 2653, + { + "distinct_on": [ + 2674, + "[maps_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2672, + "[maps_order_by!]" + ], + "where": [ + 2662 + ] + } + ], + "maps_aggregate": [ + 2654, + { + "distinct_on": [ + 2674, + "[maps_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2672, + "[maps_order_by!]" + ], + "where": [ + 2662 + ] + } ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_aggregate": { + "e_match_types_aggregate": { "aggregate": [ - 1175 + 1178 ], "nodes": [ - 1173 + 1176 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_aggregate_fields": { + "e_match_types_aggregate_fields": { "count": [ 40, { "columns": [ - 1187, - "[e_player_roles_select_column!]" + 1191, + "[e_match_types_select_column!]" ], "distinct": [ 5 @@ -18953,209 +19009,232 @@ export default { } ], "max": [ - 1181 + 1184 ], "min": [ - 1182 + 1185 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_bool_exp": { + "e_match_types_bool_exp": { "_and": [ - 1176 + 1179 ], "_not": [ - 1176 + 1179 ], "_or": [ - 1176 + 1179 ], "description": [ - 82 + 85 + ], + "maps": [ + 2662 + ], + "maps_aggregate": [ + 2655 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_constraint": {}, - "e_player_roles_enum": {}, - "e_player_roles_enum_comparison_exp": { + "e_match_types_constraint": {}, + "e_match_types_enum": {}, + "e_match_types_enum_comparison_exp": { "_eq": [ - 1178 + 1181 ], "_in": [ - 1178 + 1181 ], "_is_null": [ 5 ], "_neq": [ - 1178 + 1181 ], "_nin": [ - 1178 + 1181 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_insert_input": { + "e_match_types_insert_input": { "description": [ - 80 + 83 + ], + "maps": [ + 2661 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_max_fields": { + "e_match_types_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_min_fields": { + "e_match_types_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_mutation_response": { + "e_match_types_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1173 + 1176 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_on_conflict": { + "e_match_types_obj_rel_insert_input": { + "data": [ + 1183 + ], + "on_conflict": [ + 1188 + ], + "__typename": [ + 83 + ] + }, + "e_match_types_on_conflict": { "constraint": [ - 1177 + 1180 ], "update_columns": [ - 1191 + 1195 ], "where": [ - 1176 + 1179 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_order_by": { + "e_match_types_order_by": { "description": [ - 3094 + 3377 + ], + "maps_aggregate": [ + 2660 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_pk_columns_input": { + "e_match_types_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_select_column": {}, - "e_player_roles_set_input": { + "e_match_types_select_column": {}, + "e_match_types_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_stream_cursor_input": { + "e_match_types_stream_cursor_input": { "initial_value": [ - 1190 + 1194 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_stream_cursor_value_input": { + "e_match_types_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_player_roles_update_column": {}, - "e_player_roles_updates": { + "e_match_types_update_column": {}, + "e_match_types_updates": { "_set": [ - 1188 + 1192 ], "where": [ - 1176 + 1179 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes": { + "e_notification_types": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_aggregate": { + "e_notification_types_aggregate": { "aggregate": [ - 1195 + 1199 ], "nodes": [ - 1193 + 1197 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_aggregate_fields": { + "e_notification_types_aggregate_fields": { "count": [ 40, { "columns": [ - 1207, - "[e_plugin_runtimes_select_column!]" + 1211, + "[e_notification_types_select_column!]" ], "distinct": [ 5 @@ -19163,209 +19242,253 @@ export default { } ], "max": [ - 1201 + 1205 ], "min": [ - 1202 + 1206 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_bool_exp": { + "e_notification_types_bool_exp": { "_and": [ - 1196 + 1200 ], "_not": [ - 1196 + 1200 ], "_or": [ - 1196 + 1200 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_constraint": {}, - "e_plugin_runtimes_enum": {}, - "e_plugin_runtimes_enum_comparison_exp": { + "e_notification_types_constraint": {}, + "e_notification_types_enum": {}, + "e_notification_types_enum_comparison_exp": { "_eq": [ - 1198 + 1202 ], "_in": [ - 1198 + 1202 ], "_is_null": [ 5 ], "_neq": [ - 1198 + 1202 ], "_nin": [ - 1198 + 1202 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_insert_input": { + "e_notification_types_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_max_fields": { + "e_notification_types_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_min_fields": { + "e_notification_types_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_mutation_response": { + "e_notification_types_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1193 + 1197 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_on_conflict": { + "e_notification_types_on_conflict": { "constraint": [ - 1197 + 1201 ], "update_columns": [ - 1211 + 1215 ], "where": [ - 1196 + 1200 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_order_by": { + "e_notification_types_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_pk_columns_input": { + "e_notification_types_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_select_column": {}, - "e_plugin_runtimes_set_input": { + "e_notification_types_select_column": {}, + "e_notification_types_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_stream_cursor_input": { + "e_notification_types_stream_cursor_input": { "initial_value": [ - 1210 + 1214 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_stream_cursor_value_input": { + "e_notification_types_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_plugin_runtimes_update_column": {}, - "e_plugin_runtimes_updates": { + "e_notification_types_update_column": {}, + "e_notification_types_updates": { "_set": [ - 1208 + 1212 ], "where": [ - 1196 + 1200 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings": { + "e_objective_types": { "description": [ - 80 + 83 + ], + "player_objectives": [ + 3933, + { + "distinct_on": [ + 3954, + "[player_objectives_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 3952, + "[player_objectives_order_by!]" + ], + "where": [ + 3942 + ] + } + ], + "player_objectives_aggregate": [ + 3934, + { + "distinct_on": [ + 3954, + "[player_objectives_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 3952, + "[player_objectives_order_by!]" + ], + "where": [ + 3942 + ] + } ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_aggregate": { + "e_objective_types_aggregate": { "aggregate": [ - 1215 + 1219 ], "nodes": [ - 1213 + 1217 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_aggregate_fields": { + "e_objective_types_aggregate_fields": { "count": [ 40, { "columns": [ - 1227, - "[e_ready_settings_select_column!]" + 1231, + "[e_objective_types_select_column!]" ], "distinct": [ 5 @@ -19373,209 +19496,221 @@ export default { } ], "max": [ - 1221 + 1225 ], "min": [ - 1222 + 1226 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_bool_exp": { + "e_objective_types_bool_exp": { "_and": [ - 1216 + 1220 ], "_not": [ - 1216 + 1220 ], "_or": [ - 1216 + 1220 ], "description": [ - 82 + 85 + ], + "player_objectives": [ + 3942 + ], + "player_objectives_aggregate": [ + 3935 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_constraint": {}, - "e_ready_settings_enum": {}, - "e_ready_settings_enum_comparison_exp": { + "e_objective_types_constraint": {}, + "e_objective_types_enum": {}, + "e_objective_types_enum_comparison_exp": { "_eq": [ - 1218 + 1222 ], "_in": [ - 1218 + 1222 ], "_is_null": [ 5 ], "_neq": [ - 1218 + 1222 ], "_nin": [ - 1218 + 1222 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_insert_input": { + "e_objective_types_insert_input": { "description": [ - 80 + 83 + ], + "player_objectives": [ + 3939 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_max_fields": { + "e_objective_types_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_min_fields": { + "e_objective_types_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_mutation_response": { + "e_objective_types_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1213 + 1217 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_on_conflict": { + "e_objective_types_on_conflict": { "constraint": [ - 1217 + 1221 ], "update_columns": [ - 1231 + 1235 ], "where": [ - 1216 + 1220 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_order_by": { + "e_objective_types_order_by": { "description": [ - 3094 + 3377 + ], + "player_objectives_aggregate": [ + 3938 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_pk_columns_input": { + "e_objective_types_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_select_column": {}, - "e_ready_settings_set_input": { + "e_objective_types_select_column": {}, + "e_objective_types_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_stream_cursor_input": { + "e_objective_types_stream_cursor_input": { "initial_value": [ - 1230 + 1234 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_stream_cursor_value_input": { + "e_objective_types_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_ready_settings_update_column": {}, - "e_ready_settings_updates": { + "e_objective_types_update_column": {}, + "e_objective_types_updates": { "_set": [ - 1228 + 1232 ], "where": [ - 1216 + 1220 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types": { + "e_player_roles": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_aggregate": { + "e_player_roles_aggregate": { "aggregate": [ - 1235 + 1239 ], "nodes": [ - 1233 + 1237 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_aggregate_fields": { + "e_player_roles_aggregate_fields": { "count": [ 40, { "columns": [ - 1248, - "[e_sanction_types_select_column!]" + 1251, + "[e_player_roles_select_column!]" ], "distinct": [ 5 @@ -19583,264 +19718,209 @@ export default { } ], "max": [ - 1241 + 1245 ], "min": [ - 1242 + 1246 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_bool_exp": { + "e_player_roles_bool_exp": { "_and": [ - 1236 + 1240 ], "_not": [ - 1236 + 1240 ], "_or": [ - 1236 + 1240 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_constraint": {}, - "e_sanction_types_enum": {}, - "e_sanction_types_enum_comparison_exp": { + "e_player_roles_constraint": {}, + "e_player_roles_enum": {}, + "e_player_roles_enum_comparison_exp": { "_eq": [ - 1238 + 1242 ], "_in": [ - 1238 + 1242 ], "_is_null": [ 5 ], "_neq": [ - 1238 + 1242 ], "_nin": [ - 1238 + 1242 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_insert_input": { + "e_player_roles_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_max_fields": { + "e_player_roles_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_min_fields": { + "e_player_roles_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_mutation_response": { + "e_player_roles_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1233 - ], - "__typename": [ - 80 - ] - }, - "e_sanction_types_obj_rel_insert_input": { - "data": [ - 1240 - ], - "on_conflict": [ - 1245 + 1237 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_on_conflict": { + "e_player_roles_on_conflict": { "constraint": [ - 1237 + 1241 ], "update_columns": [ - 1252 + 1255 ], "where": [ - 1236 + 1240 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_order_by": { + "e_player_roles_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_pk_columns_input": { + "e_player_roles_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_select_column": {}, - "e_sanction_types_set_input": { + "e_player_roles_select_column": {}, + "e_player_roles_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_stream_cursor_input": { + "e_player_roles_stream_cursor_input": { "initial_value": [ - 1251 + 1254 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_stream_cursor_value_input": { + "e_player_roles_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_sanction_types_update_column": {}, - "e_sanction_types_updates": { + "e_player_roles_update_column": {}, + "e_player_roles_updates": { "_set": [ - 1249 + 1252 ], "where": [ - 1236 + 1240 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses": { + "e_plugin_runtimes": { "description": [ - 80 - ], - "scrim_requests": [ - 4520, - { - "distinct_on": [ - 4544, - "[team_scrim_requests_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 4542, - "[team_scrim_requests_order_by!]" - ], - "where": [ - 4531 - ] - } - ], - "scrim_requests_aggregate": [ - 4521, - { - "distinct_on": [ - 4544, - "[team_scrim_requests_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 4542, - "[team_scrim_requests_order_by!]" - ], - "where": [ - 4531 - ] - } + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_aggregate": { + "e_plugin_runtimes_aggregate": { "aggregate": [ - 1256 + 1259 ], "nodes": [ - 1254 + 1257 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_aggregate_fields": { + "e_plugin_runtimes_aggregate_fields": { "count": [ 40, { "columns": [ - 1268, - "[e_scrim_request_statuses_select_column!]" + 1271, + "[e_plugin_runtimes_select_column!]" ], "distinct": [ 5 @@ -19848,265 +19928,209 @@ export default { } ], "max": [ - 1262 + 1265 ], "min": [ - 1263 + 1266 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_bool_exp": { + "e_plugin_runtimes_bool_exp": { "_and": [ - 1257 + 1260 ], "_not": [ - 1257 + 1260 ], "_or": [ - 1257 + 1260 ], "description": [ - 82 - ], - "scrim_requests": [ - 4531 - ], - "scrim_requests_aggregate": [ - 4522 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_constraint": {}, - "e_scrim_request_statuses_enum": {}, - "e_scrim_request_statuses_enum_comparison_exp": { + "e_plugin_runtimes_constraint": {}, + "e_plugin_runtimes_enum": {}, + "e_plugin_runtimes_enum_comparison_exp": { "_eq": [ - 1259 + 1262 ], "_in": [ - 1259 + 1262 ], "_is_null": [ 5 ], "_neq": [ - 1259 + 1262 ], "_nin": [ - 1259 + 1262 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_insert_input": { + "e_plugin_runtimes_insert_input": { "description": [ - 80 - ], - "scrim_requests": [ - 4528 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_max_fields": { + "e_plugin_runtimes_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_min_fields": { + "e_plugin_runtimes_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_mutation_response": { + "e_plugin_runtimes_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1254 + 1257 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_on_conflict": { + "e_plugin_runtimes_on_conflict": { "constraint": [ - 1258 + 1261 ], "update_columns": [ - 1272 + 1275 ], "where": [ - 1257 + 1260 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_order_by": { + "e_plugin_runtimes_order_by": { "description": [ - 3094 - ], - "scrim_requests_aggregate": [ - 4527 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_pk_columns_input": { + "e_plugin_runtimes_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_select_column": {}, - "e_scrim_request_statuses_set_input": { + "e_plugin_runtimes_select_column": {}, + "e_plugin_runtimes_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_stream_cursor_input": { + "e_plugin_runtimes_stream_cursor_input": { "initial_value": [ - 1271 + 1274 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_stream_cursor_value_input": { + "e_plugin_runtimes_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_scrim_request_statuses_update_column": {}, - "e_scrim_request_statuses_updates": { + "e_plugin_runtimes_update_column": {}, + "e_plugin_runtimes_updates": { "_set": [ - 1269 + 1272 ], "where": [ - 1257 + 1260 ], "__typename": [ - 80 + 83 ] }, - "e_server_types": { + "e_ready_settings": { "description": [ - 80 - ], - "servers": [ - 4193, - { - "distinct_on": [ - 4217, - "[servers_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 4215, - "[servers_order_by!]" - ], - "where": [ - 4204 - ] - } - ], - "servers_aggregate": [ - 4194, - { - "distinct_on": [ - 4217, - "[servers_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 4215, - "[servers_order_by!]" - ], - "where": [ - 4204 - ] - } + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_aggregate": { + "e_ready_settings_aggregate": { "aggregate": [ - 1276 + 1279 ], "nodes": [ - 1274 + 1277 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_aggregate_fields": { + "e_ready_settings_aggregate_fields": { "count": [ 40, { "columns": [ - 1288, - "[e_server_types_select_column!]" + 1291, + "[e_ready_settings_select_column!]" ], "distinct": [ 5 @@ -20114,246 +20138,411 @@ export default { } ], "max": [ - 1282 + 1285 ], "min": [ - 1283 + 1286 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_bool_exp": { + "e_ready_settings_bool_exp": { "_and": [ - 1277 + 1280 ], "_not": [ - 1277 + 1280 ], "_or": [ - 1277 + 1280 ], "description": [ - 82 - ], - "servers": [ - 4204 - ], - "servers_aggregate": [ - 4195 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_constraint": {}, - "e_server_types_enum": {}, - "e_server_types_enum_comparison_exp": { + "e_ready_settings_constraint": {}, + "e_ready_settings_enum": {}, + "e_ready_settings_enum_comparison_exp": { "_eq": [ - 1279 + 1282 ], "_in": [ - 1279 + 1282 ], "_is_null": [ 5 ], "_neq": [ - 1279 + 1282 ], "_nin": [ - 1279 + 1282 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_insert_input": { + "e_ready_settings_insert_input": { "description": [ - 80 - ], - "servers": [ - 4201 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_max_fields": { + "e_ready_settings_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_min_fields": { + "e_ready_settings_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_mutation_response": { + "e_ready_settings_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1274 + 1277 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_on_conflict": { + "e_ready_settings_on_conflict": { "constraint": [ - 1278 + 1281 ], "update_columns": [ - 1292 + 1295 ], "where": [ - 1277 + 1280 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_order_by": { + "e_ready_settings_order_by": { "description": [ - 3094 - ], - "servers_aggregate": [ - 4200 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_pk_columns_input": { + "e_ready_settings_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_select_column": {}, - "e_server_types_set_input": { + "e_ready_settings_select_column": {}, + "e_ready_settings_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_stream_cursor_input": { + "e_ready_settings_stream_cursor_input": { "initial_value": [ - 1291 + 1294 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_stream_cursor_value_input": { + "e_ready_settings_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_server_types_update_column": {}, - "e_server_types_updates": { + "e_ready_settings_update_column": {}, + "e_ready_settings_updates": { "_set": [ - 1289 + 1292 ], "where": [ - 1277 + 1280 ], "__typename": [ - 80 + 83 ] }, - "e_sides": { + "e_sanction_types": { "description": [ - 80 + 83 ], - "match_map_lineup_1": [ - 2716, - { - "distinct_on": [ - 2738, - "[match_maps_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 2736, - "[match_maps_order_by!]" - ], - "where": [ - 2725 - ] - } + "value": [ + 83 ], - "match_map_lineup_1_aggregate": [ - 2717, + "__typename": [ + 83 + ] + }, + "e_sanction_types_aggregate": { + "aggregate": [ + 1299 + ], + "nodes": [ + 1297 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_aggregate_fields": { + "count": [ + 40, { - "distinct_on": [ - 2738, - "[match_maps_select_column!]" - ], - "limit": [ - 40 - ], - "offset": [ - 40 - ], - "order_by": [ - 2736, - "[match_maps_order_by!]" + "columns": [ + 1312, + "[e_sanction_types_select_column!]" ], - "where": [ - 2725 + "distinct": [ + 5 ] } ], - "match_map_lineup_2": [ - 2716, + "max": [ + 1305 + ], + "min": [ + 1306 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_bool_exp": { + "_and": [ + 1300 + ], + "_not": [ + 1300 + ], + "_or": [ + 1300 + ], + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_constraint": {}, + "e_sanction_types_enum": {}, + "e_sanction_types_enum_comparison_exp": { + "_eq": [ + 1302 + ], + "_in": [ + 1302 + ], + "_is_null": [ + 5 + ], + "_neq": [ + 1302 + ], + "_nin": [ + 1302 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_insert_input": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_max_fields": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_min_fields": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 1297 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_obj_rel_insert_input": { + "data": [ + 1304 + ], + "on_conflict": [ + 1309 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_on_conflict": { + "constraint": [ + 1301 + ], + "update_columns": [ + 1316 + ], + "where": [ + 1300 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_order_by": { + "description": [ + 3377 + ], + "value": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_pk_columns_input": { + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_select_column": {}, + "e_sanction_types_set_input": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_stream_cursor_input": { + "initial_value": [ + 1315 + ], + "ordering": [ + 351 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_stream_cursor_value_input": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_sanction_types_update_column": {}, + "e_sanction_types_updates": { + "_set": [ + 1313 + ], + "where": [ + 1300 + ], + "__typename": [ + 83 + ] + }, + "e_scrim_request_statuses": { + "description": [ + 83 + ], + "scrim_requests": [ + 4808, { "distinct_on": [ - 2738, - "[match_maps_select_column!]" + 4832, + "[team_scrim_requests_select_column!]" ], "limit": [ 40 @@ -20362,20 +20551,20 @@ export default { 40 ], "order_by": [ - 2736, - "[match_maps_order_by!]" + 4830, + "[team_scrim_requests_order_by!]" ], "where": [ - 2725 + 4819 ] } ], - "match_map_lineup_2_aggregate": [ - 2717, + "scrim_requests_aggregate": [ + 4809, { "distinct_on": [ - 2738, - "[match_maps_select_column!]" + 4832, + "[team_scrim_requests_select_column!]" ], "limit": [ 40 @@ -20384,39 +20573,39 @@ export default { 40 ], "order_by": [ - 2736, - "[match_maps_order_by!]" + 4830, + "[team_scrim_requests_order_by!]" ], "where": [ - 2725 + 4819 ] } ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_sides_aggregate": { + "e_scrim_request_statuses_aggregate": { "aggregate": [ - 1296 + 1320 ], "nodes": [ - 1294 + 1318 ], "__typename": [ - 80 + 83 ] }, - "e_sides_aggregate_fields": { + "e_scrim_request_statuses_aggregate_fields": { "count": [ 40, { "columns": [ - 1308, - "[e_sides_select_column!]" + 1332, + "[e_scrim_request_statuses_select_column!]" ], "distinct": [ 5 @@ -20424,233 +20613,265 @@ export default { } ], "max": [ - 1302 + 1326 ], "min": [ - 1303 + 1327 ], "__typename": [ - 80 + 83 ] }, - "e_sides_bool_exp": { + "e_scrim_request_statuses_bool_exp": { "_and": [ - 1297 + 1321 ], "_not": [ - 1297 + 1321 ], "_or": [ - 1297 + 1321 ], "description": [ - 82 - ], - "match_map_lineup_1": [ - 2725 - ], - "match_map_lineup_1_aggregate": [ - 2718 + 85 ], - "match_map_lineup_2": [ - 2725 + "scrim_requests": [ + 4819 ], - "match_map_lineup_2_aggregate": [ - 2718 + "scrim_requests_aggregate": [ + 4810 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_sides_constraint": {}, - "e_sides_enum": {}, - "e_sides_enum_comparison_exp": { + "e_scrim_request_statuses_constraint": {}, + "e_scrim_request_statuses_enum": {}, + "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 1299 + 1323 ], "_in": [ - 1299 + 1323 ], "_is_null": [ 5 ], "_neq": [ - 1299 + 1323 ], "_nin": [ - 1299 + 1323 ], "__typename": [ - 80 + 83 ] }, - "e_sides_insert_input": { + "e_scrim_request_statuses_insert_input": { "description": [ - 80 - ], - "match_map_lineup_1": [ - 2722 + 83 ], - "match_map_lineup_2": [ - 2722 + "scrim_requests": [ + 4816 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_sides_max_fields": { + "e_scrim_request_statuses_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_sides_min_fields": { + "e_scrim_request_statuses_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_sides_mutation_response": { + "e_scrim_request_statuses_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1294 + 1318 ], "__typename": [ - 80 + 83 ] }, - "e_sides_on_conflict": { + "e_scrim_request_statuses_on_conflict": { "constraint": [ - 1298 + 1322 ], "update_columns": [ - 1312 + 1336 ], "where": [ - 1297 + 1321 ], "__typename": [ - 80 + 83 ] }, - "e_sides_order_by": { + "e_scrim_request_statuses_order_by": { "description": [ - 3094 - ], - "match_map_lineup_1_aggregate": [ - 2721 + 3377 ], - "match_map_lineup_2_aggregate": [ - 2721 + "scrim_requests_aggregate": [ + 4815 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_sides_pk_columns_input": { + "e_scrim_request_statuses_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_sides_select_column": {}, - "e_sides_set_input": { + "e_scrim_request_statuses_select_column": {}, + "e_scrim_request_statuses_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_sides_stream_cursor_input": { + "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 1311 + 1335 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_sides_stream_cursor_value_input": { + "e_scrim_request_statuses_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_sides_update_column": {}, - "e_sides_updates": { + "e_scrim_request_statuses_update_column": {}, + "e_scrim_request_statuses_updates": { "_set": [ - 1309 + 1333 ], "where": [ - 1297 + 1321 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types": { + "e_server_types": { "description": [ - 80 + 83 + ], + "servers": [ + 4476, + { + "distinct_on": [ + 4505, + "[servers_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4502, + "[servers_order_by!]" + ], + "where": [ + 4488 + ] + } + ], + "servers_aggregate": [ + 4477, + { + "distinct_on": [ + 4505, + "[servers_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4502, + "[servers_order_by!]" + ], + "where": [ + 4488 + ] + } ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_aggregate": { + "e_server_types_aggregate": { "aggregate": [ - 1316 + 1340 ], "nodes": [ - 1314 + 1338 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_aggregate_fields": { + "e_server_types_aggregate_fields": { "count": [ 40, { "columns": [ - 1328, - "[e_system_alert_types_select_column!]" + 1352, + "[e_server_types_select_column!]" ], "distinct": [ 5 @@ -20658,190 +20879,202 @@ export default { } ], "max": [ - 1322 + 1346 ], "min": [ - 1323 + 1347 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_bool_exp": { + "e_server_types_bool_exp": { "_and": [ - 1317 + 1341 ], "_not": [ - 1317 + 1341 ], "_or": [ - 1317 + 1341 ], "description": [ - 82 + 85 + ], + "servers": [ + 4488 + ], + "servers_aggregate": [ + 4478 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_constraint": {}, - "e_system_alert_types_enum": {}, - "e_system_alert_types_enum_comparison_exp": { + "e_server_types_constraint": {}, + "e_server_types_enum": {}, + "e_server_types_enum_comparison_exp": { "_eq": [ - 1319 + 1343 ], "_in": [ - 1319 + 1343 ], "_is_null": [ 5 ], "_neq": [ - 1319 + 1343 ], "_nin": [ - 1319 + 1343 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_insert_input": { + "e_server_types_insert_input": { "description": [ - 80 + 83 + ], + "servers": [ + 4485 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_max_fields": { + "e_server_types_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_min_fields": { + "e_server_types_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_mutation_response": { + "e_server_types_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1314 + 1338 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_on_conflict": { + "e_server_types_on_conflict": { "constraint": [ - 1318 + 1342 ], "update_columns": [ - 1332 + 1356 ], "where": [ - 1317 + 1341 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_order_by": { + "e_server_types_order_by": { "description": [ - 3094 + 3377 + ], + "servers_aggregate": [ + 4483 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_pk_columns_input": { + "e_server_types_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_select_column": {}, - "e_system_alert_types_set_input": { + "e_server_types_select_column": {}, + "e_server_types_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_stream_cursor_input": { + "e_server_types_stream_cursor_input": { "initial_value": [ - 1331 + 1355 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_stream_cursor_value_input": { + "e_server_types_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_system_alert_types_update_column": {}, - "e_system_alert_types_updates": { + "e_server_types_update_column": {}, + "e_server_types_updates": { "_set": [ - 1329 + 1353 ], "where": [ - 1317 + 1341 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles": { + "e_sides": { "description": [ - 80 + 83 ], - "team_rosters": [ - 4379, + "match_map_lineup_1": [ + 2977, { "distinct_on": [ - 4402, - "[team_roster_select_column!]" + 2999, + "[match_maps_select_column!]" ], "limit": [ 40 @@ -20850,20 +21083,20 @@ export default { 40 ], "order_by": [ - 4400, - "[team_roster_order_by!]" + 2997, + "[match_maps_order_by!]" ], "where": [ - 4390 + 2986 ] } ], - "team_rosters_aggregate": [ - 4380, + "match_map_lineup_1_aggregate": [ + 2978, { "distinct_on": [ - 4402, - "[team_roster_select_column!]" + 2999, + "[match_maps_select_column!]" ], "limit": [ 40 @@ -20872,20 +21105,20 @@ export default { 40 ], "order_by": [ - 4400, - "[team_roster_order_by!]" + 2997, + "[match_maps_order_by!]" ], "where": [ - 4390 + 2986 ] } ], - "tournament_team_rosters": [ - 5023, + "match_map_lineup_2": [ + 2977, { "distinct_on": [ - 5044, - "[tournament_team_roster_select_column!]" + 2999, + "[match_maps_select_column!]" ], "limit": [ 40 @@ -20894,20 +21127,20 @@ export default { 40 ], "order_by": [ - 5042, - "[tournament_team_roster_order_by!]" + 2997, + "[match_maps_order_by!]" ], "where": [ - 5032 + 2986 ] } ], - "tournament_team_rosters_aggregate": [ - 5024, + "match_map_lineup_2_aggregate": [ + 2978, { "distinct_on": [ - 5044, - "[tournament_team_roster_select_column!]" + 2999, + "[match_maps_select_column!]" ], "limit": [ 40 @@ -20916,39 +21149,39 @@ export default { 40 ], "order_by": [ - 5042, - "[tournament_team_roster_order_by!]" + 2997, + "[match_maps_order_by!]" ], "where": [ - 5032 + 2986 ] } ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_aggregate": { + "e_sides_aggregate": { "aggregate": [ - 1336 + 1360 ], "nodes": [ - 1334 + 1358 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_aggregate_fields": { + "e_sides_aggregate_fields": { "count": [ 40, { "columns": [ - 1349, - "[e_team_roles_select_column!]" + 1372, + "[e_sides_select_column!]" ], "distinct": [ 5 @@ -20956,244 +21189,233 @@ export default { } ], "max": [ - 1342 + 1366 ], "min": [ - 1343 + 1367 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_bool_exp": { + "e_sides_bool_exp": { "_and": [ - 1337 + 1361 ], "_not": [ - 1337 + 1361 ], "_or": [ - 1337 + 1361 ], "description": [ - 82 + 85 ], - "team_rosters": [ - 4390 + "match_map_lineup_1": [ + 2986 ], - "team_rosters_aggregate": [ - 4381 + "match_map_lineup_1_aggregate": [ + 2979 ], - "tournament_team_rosters": [ - 5032 + "match_map_lineup_2": [ + 2986 ], - "tournament_team_rosters_aggregate": [ - 5025 + "match_map_lineup_2_aggregate": [ + 2979 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_constraint": {}, - "e_team_roles_enum": {}, - "e_team_roles_enum_comparison_exp": { + "e_sides_constraint": {}, + "e_sides_enum": {}, + "e_sides_enum_comparison_exp": { "_eq": [ - 1339 + 1363 ], "_in": [ - 1339 + 1363 ], "_is_null": [ 5 ], "_neq": [ - 1339 + 1363 ], "_nin": [ - 1339 + 1363 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_insert_input": { + "e_sides_insert_input": { "description": [ - 80 + 83 ], - "team_rosters": [ - 4387 + "match_map_lineup_1": [ + 2983 ], - "tournament_team_rosters": [ - 5029 + "match_map_lineup_2": [ + 2983 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_max_fields": { + "e_sides_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_min_fields": { + "e_sides_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_mutation_response": { + "e_sides_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1334 - ], - "__typename": [ - 80 - ] - }, - "e_team_roles_obj_rel_insert_input": { - "data": [ - 1341 - ], - "on_conflict": [ - 1346 + 1358 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_on_conflict": { + "e_sides_on_conflict": { "constraint": [ - 1338 + 1362 ], "update_columns": [ - 1353 + 1376 ], "where": [ - 1337 + 1361 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_order_by": { + "e_sides_order_by": { "description": [ - 3094 + 3377 ], - "team_rosters_aggregate": [ - 4386 + "match_map_lineup_1_aggregate": [ + 2982 ], - "tournament_team_rosters_aggregate": [ - 5028 + "match_map_lineup_2_aggregate": [ + 2982 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_pk_columns_input": { + "e_sides_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_select_column": {}, - "e_team_roles_set_input": { + "e_sides_select_column": {}, + "e_sides_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_stream_cursor_input": { + "e_sides_stream_cursor_input": { "initial_value": [ - 1352 + 1375 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_stream_cursor_value_input": { + "e_sides_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_team_roles_update_column": {}, - "e_team_roles_updates": { + "e_sides_update_column": {}, + "e_sides_updates": { "_set": [ - 1350 + 1373 ], "where": [ - 1337 + 1361 ], "__typename": [ - 80 + 83 ] }, - "e_team_roster_statuses": { + "e_system_alert_types": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_team_roster_statuses_aggregate": { + "e_system_alert_types_aggregate": { "aggregate": [ - 1357 + 1380 ], "nodes": [ - 1355 + 1378 ], "__typename": [ - 80 + 83 ] }, - "e_team_roster_statuses_aggregate_fields": { + "e_system_alert_types_aggregate_fields": { "count": [ 40, { "columns": [ - 1369, - "[e_team_roster_statuses_select_column!]" + 1392, + "[e_system_alert_types_select_column!]" ], "distinct": [ 5 @@ -21201,200 +21423,743 @@ export default { } ], "max": [ - 1363 + 1386 ], "min": [ - 1364 + 1387 ], "__typename": [ - 80 + 83 ] }, - "e_team_roster_statuses_bool_exp": { + "e_system_alert_types_bool_exp": { "_and": [ - 1358 + 1381 ], "_not": [ - 1358 + 1381 ], "_or": [ - 1358 + 1381 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, - "e_team_roster_statuses_constraint": {}, - "e_team_roster_statuses_enum": {}, - "e_team_roster_statuses_enum_comparison_exp": { + "e_system_alert_types_constraint": {}, + "e_system_alert_types_enum": {}, + "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 1360 + 1383 ], "_in": [ - 1360 + 1383 ], "_is_null": [ 5 ], "_neq": [ - 1360 + 1383 ], "_nin": [ - 1360 + 1383 ], "__typename": [ - 80 + 83 ] }, - "e_team_roster_statuses_insert_input": { + "e_system_alert_types_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_team_roster_statuses_max_fields": { + "e_system_alert_types_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_team_roster_statuses_min_fields": { + "e_system_alert_types_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_team_roster_statuses_mutation_response": { + "e_system_alert_types_mutation_response": { "affected_rows": [ 40 ], "returning": [ - 1355 + 1378 ], "__typename": [ - 80 + 83 ] }, - "e_team_roster_statuses_on_conflict": { + "e_system_alert_types_on_conflict": { "constraint": [ - 1359 + 1382 ], "update_columns": [ - 1373 + 1396 ], "where": [ - 1358 + 1381 ], "__typename": [ - 80 + 83 ] }, - "e_team_roster_statuses_order_by": { + "e_system_alert_types_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, - "e_team_roster_statuses_pk_columns_input": { + "e_system_alert_types_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_team_roster_statuses_select_column": {}, - "e_team_roster_statuses_set_input": { + "e_system_alert_types_select_column": {}, + "e_system_alert_types_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, - "e_team_roster_statuses_stream_cursor_input": { + "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 1372 + 1395 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 + ] + }, + "e_system_alert_types_stream_cursor_value_input": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_system_alert_types_update_column": {}, + "e_system_alert_types_updates": { + "_set": [ + 1393 + ], + "where": [ + 1381 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles": { + "description": [ + 83 + ], + "team_rosters": [ + 4667, + { + "distinct_on": [ + 4690, + "[team_roster_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4688, + "[team_roster_order_by!]" + ], + "where": [ + 4678 + ] + } + ], + "team_rosters_aggregate": [ + 4668, + { + "distinct_on": [ + 4690, + "[team_roster_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 4688, + "[team_roster_order_by!]" + ], + "where": [ + 4678 + ] + } + ], + "tournament_team_rosters": [ + 5311, + { + "distinct_on": [ + 5332, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 5330, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 5320 + ] + } + ], + "tournament_team_rosters_aggregate": [ + 5312, + { + "distinct_on": [ + 5332, + "[tournament_team_roster_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 5330, + "[tournament_team_roster_order_by!]" + ], + "where": [ + 5320 + ] + } + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_aggregate": { + "aggregate": [ + 1400 + ], + "nodes": [ + 1398 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_aggregate_fields": { + "count": [ + 40, + { + "columns": [ + 1413, + "[e_team_roles_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 1406 + ], + "min": [ + 1407 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_bool_exp": { + "_and": [ + 1401 + ], + "_not": [ + 1401 + ], + "_or": [ + 1401 + ], + "description": [ + 85 + ], + "team_rosters": [ + 4678 + ], + "team_rosters_aggregate": [ + 4669 + ], + "tournament_team_rosters": [ + 5320 + ], + "tournament_team_rosters_aggregate": [ + 5313 + ], + "value": [ + 85 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_constraint": {}, + "e_team_roles_enum": {}, + "e_team_roles_enum_comparison_exp": { + "_eq": [ + 1403 + ], + "_in": [ + 1403 + ], + "_is_null": [ + 5 + ], + "_neq": [ + 1403 + ], + "_nin": [ + 1403 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_insert_input": { + "description": [ + 83 + ], + "team_rosters": [ + 4675 + ], + "tournament_team_rosters": [ + 5317 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_max_fields": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_min_fields": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 1398 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_obj_rel_insert_input": { + "data": [ + 1405 + ], + "on_conflict": [ + 1410 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_on_conflict": { + "constraint": [ + 1402 + ], + "update_columns": [ + 1417 + ], + "where": [ + 1401 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_order_by": { + "description": [ + 3377 + ], + "team_rosters_aggregate": [ + 4674 + ], + "tournament_team_rosters_aggregate": [ + 5316 + ], + "value": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_pk_columns_input": { + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_select_column": {}, + "e_team_roles_set_input": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_stream_cursor_input": { + "initial_value": [ + 1416 + ], + "ordering": [ + 351 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_stream_cursor_value_input": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_team_roles_update_column": {}, + "e_team_roles_updates": { + "_set": [ + 1414 + ], + "where": [ + 1401 + ], + "__typename": [ + 83 + ] + }, + "e_team_roster_statuses": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_team_roster_statuses_aggregate": { + "aggregate": [ + 1421 + ], + "nodes": [ + 1419 + ], + "__typename": [ + 83 + ] + }, + "e_team_roster_statuses_aggregate_fields": { + "count": [ + 40, + { + "columns": [ + 1433, + "[e_team_roster_statuses_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 1427 + ], + "min": [ + 1428 + ], + "__typename": [ + 83 + ] + }, + "e_team_roster_statuses_bool_exp": { + "_and": [ + 1422 + ], + "_not": [ + 1422 + ], + "_or": [ + 1422 + ], + "description": [ + 85 + ], + "value": [ + 85 + ], + "__typename": [ + 83 + ] + }, + "e_team_roster_statuses_constraint": {}, + "e_team_roster_statuses_enum": {}, + "e_team_roster_statuses_enum_comparison_exp": { + "_eq": [ + 1424 + ], + "_in": [ + 1424 + ], + "_is_null": [ + 5 + ], + "_neq": [ + 1424 + ], + "_nin": [ + 1424 + ], + "__typename": [ + 83 + ] + }, + "e_team_roster_statuses_insert_input": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_team_roster_statuses_max_fields": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_team_roster_statuses_min_fields": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_team_roster_statuses_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 1419 + ], + "__typename": [ + 83 + ] + }, + "e_team_roster_statuses_on_conflict": { + "constraint": [ + 1423 + ], + "update_columns": [ + 1437 + ], + "where": [ + 1422 + ], + "__typename": [ + 83 + ] + }, + "e_team_roster_statuses_order_by": { + "description": [ + 3377 + ], + "value": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "e_team_roster_statuses_pk_columns_input": { + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_team_roster_statuses_select_column": {}, + "e_team_roster_statuses_set_input": { + "description": [ + 83 + ], + "value": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "e_team_roster_statuses_stream_cursor_input": { + "initial_value": [ + 1436 + ], + "ordering": [ + 351 + ], + "__typename": [ + 83 ] }, "e_team_roster_statuses_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 1370 + 1434 ], "where": [ - 1358 + 1422 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_aggregate": { "aggregate": [ - 1377 + 1441 ], "nodes": [ - 1375 + 1439 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_aggregate_fields": { @@ -21402,7 +22167,7 @@ export default { 40, { "columns": [ - 1389, + 1453, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -21411,88 +22176,88 @@ export default { } ], "max": [ - 1383 + 1447 ], "min": [ - 1384 + 1448 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_bool_exp": { "_and": [ - 1378 + 1442 ], "_not": [ - 1378 + 1442 ], "_or": [ - 1378 + 1442 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_constraint": {}, "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 1380 + 1444 ], "_in": [ - 1380 + 1444 ], "_is_null": [ 5 ], "_neq": [ - 1380 + 1444 ], "_nin": [ - 1380 + 1444 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_mutation_response": { @@ -21500,100 +22265,100 @@ export default { 40 ], "returning": [ - 1375 + 1439 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_on_conflict": { "constraint": [ - 1379 + 1443 ], "update_columns": [ - 1393 + 1457 ], "where": [ - 1378 + 1442 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_select_column": {}, "e_timeout_settings_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 1392 + 1456 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 1390 + 1454 ], "where": [ - 1378 + 1442 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories": { "description": [ - 80 + 83 ], "tournament_categories": [ - 4760, + 5048, { "distinct_on": [ - 4778, + 5066, "[tournament_categories_select_column!]" ], "limit": [ @@ -21603,19 +22368,19 @@ export default { 40 ], "order_by": [ - 4776, + 5064, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5055 ] } ], "tournament_categories_aggregate": [ - 4761, + 5049, { "distinct_on": [ - 4778, + 5066, "[tournament_categories_select_column!]" ], "limit": [ @@ -21625,30 +22390,30 @@ export default { 40 ], "order_by": [ - 4776, + 5064, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5055 ] } ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_aggregate": { "aggregate": [ - 1397 + 1461 ], "nodes": [ - 1395 + 1459 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_aggregate_fields": { @@ -21656,7 +22421,7 @@ export default { 40, { "columns": [ - 1410, + 1474, "[e_tournament_categories_select_column!]" ], "distinct": [ @@ -21665,97 +22430,97 @@ export default { } ], "max": [ - 1403 + 1467 ], "min": [ - 1404 + 1468 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_bool_exp": { "_and": [ - 1398 + 1462 ], "_not": [ - 1398 + 1462 ], "_or": [ - 1398 + 1462 ], "description": [ - 82 + 85 ], "tournament_categories": [ - 4767 + 5055 ], "tournament_categories_aggregate": [ - 4762 + 5050 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_constraint": {}, "e_tournament_categories_enum": {}, "e_tournament_categories_enum_comparison_exp": { "_eq": [ - 1400 + 1464 ], "_in": [ - 1400 + 1464 ], "_is_null": [ 5 ], "_neq": [ - 1400 + 1464 ], "_nin": [ - 1400 + 1464 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_insert_input": { "description": [ - 80 + 83 ], "tournament_categories": [ - 4766 + 5054 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_mutation_response": { @@ -21763,114 +22528,114 @@ export default { 40 ], "returning": [ - 1395 + 1459 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_obj_rel_insert_input": { "data": [ - 1402 + 1466 ], "on_conflict": [ - 1407 + 1471 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_on_conflict": { "constraint": [ - 1399 + 1463 ], "update_columns": [ - 1414 + 1478 ], "where": [ - 1398 + 1462 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_order_by": { "description": [ - 3094 + 3377 ], "tournament_categories_aggregate": [ - 4765 + 5053 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_select_column": {}, "e_tournament_categories_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_stream_cursor_input": { "initial_value": [ - 1413 + 1477 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_categories_update_column": {}, "e_tournament_categories_updates": { "_set": [ - 1411 + 1475 ], "where": [ - 1398 + 1462 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types": { "description": [ - 80 + 83 ], "tournament_stages": [ - 4931, + 5219, { "distinct_on": [ - 4960, + 5248, "[tournament_stages_select_column!]" ], "limit": [ @@ -21880,19 +22645,19 @@ export default { 40 ], "order_by": [ - 4957, + 5245, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5231 ] } ], "tournament_stages_aggregate": [ - 4932, + 5220, { "distinct_on": [ - 4960, + 5248, "[tournament_stages_select_column!]" ], "limit": [ @@ -21902,30 +22667,30 @@ export default { 40 ], "order_by": [ - 4957, + 5245, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5231 ] } ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 1418 + 1482 ], "nodes": [ - 1416 + 1480 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_aggregate_fields": { @@ -21933,7 +22698,7 @@ export default { 40, { "columns": [ - 1431, + 1495, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -21942,97 +22707,97 @@ export default { } ], "max": [ - 1424 + 1488 ], "min": [ - 1425 + 1489 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_bool_exp": { "_and": [ - 1419 + 1483 ], "_not": [ - 1419 + 1483 ], "_or": [ - 1419 + 1483 ], "description": [ - 82 + 85 ], "tournament_stages": [ - 4943 + 5231 ], "tournament_stages_aggregate": [ - 4933 + 5221 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_constraint": {}, "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 1421 + 1485 ], "_in": [ - 1421 + 1485 ], "_is_null": [ 5 ], "_neq": [ - 1421 + 1485 ], "_nin": [ - 1421 + 1485 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_insert_input": { "description": [ - 80 + 83 ], "tournament_stages": [ - 4940 + 5228 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_mutation_response": { @@ -22040,114 +22805,114 @@ export default { 40 ], "returning": [ - 1416 + 1480 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 1423 + 1487 ], "on_conflict": [ - 1428 + 1492 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 1420 + 1484 ], "update_columns": [ - 1435 + 1499 ], "where": [ - 1419 + 1483 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_order_by": { "description": [ - 3094 + 3377 ], "tournament_stages_aggregate": [ - 4938 + 5226 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_select_column": {}, "e_tournament_stage_types_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1434 + 1498 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1432 + 1496 ], "where": [ - 1419 + 1483 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status": { "description": [ - 80 + 83 ], "tournaments": [ - 5106, + 5394, { "distinct_on": [ - 5140, + 5428, "[tournaments_select_column!]" ], "limit": [ @@ -22157,19 +22922,19 @@ export default { 40 ], "order_by": [ - 5138, + 5426, "[tournaments_order_by!]" ], "where": [ - 5127 + 5415 ] } ], "tournaments_aggregate": [ - 5107, + 5395, { "distinct_on": [ - 5140, + 5428, "[tournaments_select_column!]" ], "limit": [ @@ -22179,30 +22944,30 @@ export default { 40 ], "order_by": [ - 5138, + 5426, "[tournaments_order_by!]" ], "where": [ - 5127 + 5415 ] } ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_aggregate": { "aggregate": [ - 1439 + 1503 ], "nodes": [ - 1437 + 1501 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_aggregate_fields": { @@ -22210,7 +22975,7 @@ export default { 40, { "columns": [ - 1452, + 1516, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -22219,97 +22984,97 @@ export default { } ], "max": [ - 1445 + 1509 ], "min": [ - 1446 + 1510 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_bool_exp": { "_and": [ - 1440 + 1504 ], "_not": [ - 1440 + 1504 ], "_or": [ - 1440 + 1504 ], "description": [ - 82 + 85 ], "tournaments": [ - 5127 + 5415 ], "tournaments_aggregate": [ - 5108 + 5396 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_constraint": {}, "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1442 + 1506 ], "_in": [ - 1442 + 1506 ], "_is_null": [ 5 ], "_neq": [ - 1442 + 1506 ], "_nin": [ - 1442 + 1506 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_insert_input": { "description": [ - 80 + 83 ], "tournaments": [ - 5124 + 5412 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_mutation_response": { @@ -22317,114 +23082,114 @@ export default { 40 ], "returning": [ - 1437 + 1501 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1444 + 1508 ], "on_conflict": [ - 1449 + 1513 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_on_conflict": { "constraint": [ - 1441 + 1505 ], "update_columns": [ - 1456 + 1520 ], "where": [ - 1440 + 1504 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_order_by": { "description": [ - 3094 + 3377 ], "tournaments_aggregate": [ - 5123 + 5411 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_select_column": {}, "e_tournament_status_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1455 + 1519 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1453 + 1517 ], "where": [ - 1440 + 1504 ], "__typename": [ - 80 + 83 ] }, "e_utility_types": { "description": [ - 80 + 83 ], "player_utilities": [ - 3978, + 4261, { "distinct_on": [ - 3999, + 4282, "[player_utility_select_column!]" ], "limit": [ @@ -22434,19 +23199,19 @@ export default { 40 ], "order_by": [ - 3997, + 4280, "[player_utility_order_by!]" ], "where": [ - 3987 + 4270 ] } ], "player_utilities_aggregate": [ - 3979, + 4262, { "distinct_on": [ - 3999, + 4282, "[player_utility_select_column!]" ], "limit": [ @@ -22456,30 +23221,30 @@ export default { 40 ], "order_by": [ - 3997, + 4280, "[player_utility_order_by!]" ], "where": [ - 3987 + 4270 ] } ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_aggregate": { "aggregate": [ - 1460 + 1524 ], "nodes": [ - 1458 + 1522 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_aggregate_fields": { @@ -22487,7 +23252,7 @@ export default { 40, { "columns": [ - 1472, + 1536, "[e_utility_types_select_column!]" ], "distinct": [ @@ -22496,97 +23261,97 @@ export default { } ], "max": [ - 1466 + 1530 ], "min": [ - 1467 + 1531 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_bool_exp": { "_and": [ - 1461 + 1525 ], "_not": [ - 1461 + 1525 ], "_or": [ - 1461 + 1525 ], "description": [ - 82 + 85 ], "player_utilities": [ - 3987 + 4270 ], "player_utilities_aggregate": [ - 3980 + 4263 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_constraint": {}, "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1463 + 1527 ], "_in": [ - 1463 + 1527 ], "_is_null": [ 5 ], "_neq": [ - 1463 + 1527 ], "_nin": [ - 1463 + 1527 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_insert_input": { "description": [ - 80 + 83 ], "player_utilities": [ - 3984 + 4267 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_mutation_response": { @@ -22594,103 +23359,103 @@ export default { 40 ], "returning": [ - 1458 + 1522 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_on_conflict": { "constraint": [ - 1462 + 1526 ], "update_columns": [ - 1476 + 1540 ], "where": [ - 1461 + 1525 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_order_by": { "description": [ - 3094 + 3377 ], "player_utilities_aggregate": [ - 3983 + 4266 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_select_column": {}, "e_utility_types_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1475 + 1539 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1473 + 1537 ], "where": [ - 1461 + 1525 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types": { "description": [ - 80 + 83 ], "match_veto_picks": [ - 2688, + 2949, { "distinct_on": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -22700,19 +23465,19 @@ export default { 40 ], "order_by": [ - 2706, + 2967, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2958 ] } ], "match_veto_picks_aggregate": [ - 2689, + 2950, { "distinct_on": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -22722,30 +23487,30 @@ export default { 40 ], "order_by": [ - 2706, + 2967, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2958 ] } ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1480 + 1544 ], "nodes": [ - 1478 + 1542 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_aggregate_fields": { @@ -22753,7 +23518,7 @@ export default { 40, { "columns": [ - 1492, + 1556, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -22762,97 +23527,97 @@ export default { } ], "max": [ - 1486 + 1550 ], "min": [ - 1487 + 1551 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_bool_exp": { "_and": [ - 1481 + 1545 ], "_not": [ - 1481 + 1545 ], "_or": [ - 1481 + 1545 ], "description": [ - 82 + 85 ], "match_veto_picks": [ - 2697 + 2958 ], "match_veto_picks_aggregate": [ - 2690 + 2951 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_constraint": {}, "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1483 + 1547 ], "_in": [ - 1483 + 1547 ], "_is_null": [ 5 ], "_neq": [ - 1483 + 1547 ], "_nin": [ - 1483 + 1547 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_insert_input": { "description": [ - 80 + 83 ], "match_veto_picks": [ - 2696 + 2957 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_mutation_response": { @@ -22860,114 +23625,114 @@ export default { 40 ], "returning": [ - 1478 + 1542 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1482 + 1546 ], "update_columns": [ - 1496 + 1560 ], "where": [ - 1481 + 1545 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_order_by": { "description": [ - 3094 + 3377 ], "match_veto_picks_aggregate": [ - 2695 + 2956 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_select_column": {}, "e_veto_pick_types_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1495 + 1559 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1493 + 1557 ], "where": [ - 1481 + 1545 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_aggregate": { "aggregate": [ - 1500 + 1564 ], "nodes": [ - 1498 + 1562 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_aggregate_fields": { @@ -22975,7 +23740,7 @@ export default { 40, { "columns": [ - 1512, + 1576, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -22984,88 +23749,88 @@ export default { } ], "max": [ - 1506 + 1570 ], "min": [ - 1507 + 1571 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_bool_exp": { "_and": [ - 1501 + 1565 ], "_not": [ - 1501 + 1565 ], "_or": [ - 1501 + 1565 ], "description": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_constraint": {}, "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1503 + 1567 ], "_in": [ - 1503 + 1567 ], "_is_null": [ 5 ], "_neq": [ - 1503 + 1567 ], "_nin": [ - 1503 + 1567 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_insert_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_max_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_min_fields": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_mutation_response": { @@ -23073,120 +23838,120 @@ export default { 40 ], "returning": [ - 1498 + 1562 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_on_conflict": { "constraint": [ - 1502 + 1566 ], "update_columns": [ - 1516 + 1580 ], "where": [ - 1501 + 1565 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_order_by": { "description": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_select_column": {}, "e_winning_reasons_set_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1515 + 1579 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_stream_cursor_value_input": { "description": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1513 + 1577 ], "where": [ - 1501 + 1565 ], "__typename": [ - 80 + 83 ] }, "event_match_links": { "created_at": [ - 4670 + 4958 ], "event": [ - 1749 + 1813 ], "event_id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_match_links_aggregate": { "aggregate": [ - 1520 + 1584 ], "nodes": [ - 1518 + 1582 ], "__typename": [ - 80 + 83 ] }, "event_match_links_aggregate_fields": { @@ -23194,7 +23959,7 @@ export default { 40, { "columns": [ - 1530, + 1594, "[event_match_links_select_column!]" ], "distinct": [ @@ -23203,91 +23968,91 @@ export default { } ], "max": [ - 1524 + 1588 ], "min": [ - 1525 + 1589 ], "__typename": [ - 80 + 83 ] }, "event_match_links_bool_exp": { "_and": [ - 1521 + 1585 ], "_not": [ - 1521 + 1585 ], "_or": [ - 1521 + 1585 ], "created_at": [ - 4671 + 4959 ], "event": [ - 1753 + 1817 ], "event_id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "event_match_links_constraint": {}, "event_match_links_insert_input": { "created_at": [ - 4670 + 4958 ], "event": [ - 1760 + 1824 ], "event_id": [ - 5170 + 5458 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_match_links_max_fields": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_match_links_min_fields": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_match_links_mutation_response": { @@ -23295,136 +24060,136 @@ export default { 40 ], "returning": [ - 1518 + 1582 ], "__typename": [ - 80 + 83 ] }, "event_match_links_on_conflict": { "constraint": [ - 1522 + 1586 ], "update_columns": [ - 1534 + 1598 ], "where": [ - 1521 + 1585 ], "__typename": [ - 80 + 83 ] }, "event_match_links_order_by": { "created_at": [ - 3094 + 3377 ], "event": [ - 1762 + 1826 ], "event_id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_match_links_pk_columns_input": { "event_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_match_links_select_column": {}, "event_match_links_set_input": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_match_links_stream_cursor_input": { "initial_value": [ - 1533 + 1597 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "event_match_links_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_match_links_update_column": {}, "event_match_links_updates": { "_set": [ - 1531 + 1595 ], "where": [ - 1521 + 1585 ], "__typename": [ - 80 + 83 ] }, "event_media": { "created_at": [ - 4670 + 4958 ], "event": [ - 1749 + 1813 ], "event_id": [ - 5170 + 5458 ], "external_url": [ - 80 + 83 ], "filename": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "mime_type": [ - 80 + 83 ], "players": [ - 1558, + 1622, { "distinct_on": [ - 1579, + 1643, "[event_media_players_select_column!]" ], "limit": [ @@ -23434,19 +24199,19 @@ export default { 40 ], "order_by": [ - 1577, + 1641, "[event_media_players_order_by!]" ], "where": [ - 1567 + 1631 ] } ], "players_aggregate": [ - 1559, + 1623, { "distinct_on": [ - 1579, + 1643, "[event_media_players_select_column!]" ], "limit": [ @@ -23456,78 +24221,78 @@ export default { 40 ], "order_by": [ - 1577, + 1641, "[event_media_players_order_by!]" ], "where": [ - 1567 + 1631 ] } ], "size": [ - 264 + 268 ], "thumbnail_filename": [ - 80 + 83 ], "title": [ - 80 + 83 ], "uploader": [ - 4052 + 4335 ], "uploader_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_aggregate": { "aggregate": [ - 1540 + 1604 ], "nodes": [ - 1536 + 1600 ], "__typename": [ - 80 + 83 ] }, "event_media_aggregate_bool_exp": { "count": [ - 1539 + 1603 ], "__typename": [ - 80 + 83 ] }, "event_media_aggregate_bool_exp_count": { "arguments": [ - 1599 + 1663 ], "distinct": [ 5 ], "filter": [ - 1545 + 1609 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "event_media_aggregate_fields": { "avg": [ - 1543 + 1607 ], "count": [ 40, { "columns": [ - 1599, + 1663, "[event_media_select_column!]" ], "distinct": [ @@ -23536,83 +24301,83 @@ export default { } ], "max": [ - 1549 + 1613 ], "min": [ - 1551 + 1615 ], "stddev": [ - 1601 + 1665 ], "stddev_pop": [ - 1603 + 1667 ], "stddev_samp": [ - 1605 + 1669 ], "sum": [ - 1609 + 1673 ], "var_pop": [ - 1613 + 1677 ], "var_samp": [ - 1615 + 1679 ], "variance": [ - 1617 + 1681 ], "__typename": [ - 80 + 83 ] }, "event_media_aggregate_order_by": { "avg": [ - 1544 + 1608 ], "count": [ - 3094 + 3377 ], "max": [ - 1550 + 1614 ], "min": [ - 1552 + 1616 ], "stddev": [ - 1602 + 1666 ], "stddev_pop": [ - 1604 + 1668 ], "stddev_samp": [ - 1606 + 1670 ], "sum": [ - 1610 + 1674 ], "var_pop": [ - 1614 + 1678 ], "var_samp": [ - 1616 + 1680 ], "variance": [ - 1618 + 1682 ], "__typename": [ - 80 + 83 ] }, "event_media_arr_rel_insert_input": { "data": [ - 1548 + 1612 ], "on_conflict": [ - 1555 + 1619 ], "__typename": [ - 80 + 83 ] }, "event_media_avg_fields": { @@ -23623,270 +24388,270 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_media_avg_order_by": { "size": [ - 3094 + 3377 ], "uploader_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_bool_exp": { "_and": [ - 1545 + 1609 ], "_not": [ - 1545 + 1609 ], "_or": [ - 1545 + 1609 ], "created_at": [ - 4671 + 4959 ], "event": [ - 1753 + 1817 ], "event_id": [ - 5172 + 5460 ], "external_url": [ - 82 + 85 ], "filename": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "mime_type": [ - 82 + 85 ], "players": [ - 1567 + 1631 ], "players_aggregate": [ - 1560 + 1624 ], "size": [ - 266 + 270 ], "thumbnail_filename": [ - 82 + 85 ], "title": [ - 82 + 85 ], "uploader": [ - 4056 + 4339 ], "uploader_steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "event_media_constraint": {}, "event_media_inc_input": { "size": [ - 264 + 268 ], "uploader_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_insert_input": { "created_at": [ - 4670 + 4958 ], "event": [ - 1760 + 1824 ], "event_id": [ - 5170 + 5458 ], "external_url": [ - 80 + 83 ], "filename": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "mime_type": [ - 80 + 83 ], "players": [ - 1564 + 1628 ], "size": [ - 264 + 268 ], "thumbnail_filename": [ - 80 + 83 ], "title": [ - 80 + 83 ], "uploader": [ - 4063 + 4346 ], "uploader_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_max_fields": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "external_url": [ - 80 + 83 ], "filename": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "mime_type": [ - 80 + 83 ], "size": [ - 264 + 268 ], "thumbnail_filename": [ - 80 + 83 ], "title": [ - 80 + 83 ], "uploader_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_max_order_by": { "created_at": [ - 3094 + 3377 ], "event_id": [ - 3094 + 3377 ], "external_url": [ - 3094 + 3377 ], "filename": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "mime_type": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "thumbnail_filename": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "uploader_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_min_fields": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "external_url": [ - 80 + 83 ], "filename": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "mime_type": [ - 80 + 83 ], "size": [ - 264 + 268 ], "thumbnail_filename": [ - 80 + 83 ], "title": [ - 80 + 83 ], "uploader_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_min_order_by": { "created_at": [ - 3094 + 3377 ], "event_id": [ - 3094 + 3377 ], "external_url": [ - 3094 + 3377 ], "filename": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "mime_type": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "thumbnail_filename": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "uploader_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_mutation_response": { @@ -23894,154 +24659,154 @@ export default { 40 ], "returning": [ - 1536 + 1600 ], "__typename": [ - 80 + 83 ] }, "event_media_obj_rel_insert_input": { "data": [ - 1548 + 1612 ], "on_conflict": [ - 1555 + 1619 ], "__typename": [ - 80 + 83 ] }, "event_media_on_conflict": { "constraint": [ - 1546 + 1610 ], "update_columns": [ - 1611 + 1675 ], "where": [ - 1545 + 1609 ], "__typename": [ - 80 + 83 ] }, "event_media_order_by": { "created_at": [ - 3094 + 3377 ], "event": [ - 1762 + 1826 ], "event_id": [ - 3094 + 3377 ], "external_url": [ - 3094 + 3377 ], "filename": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "mime_type": [ - 3094 + 3377 ], "players_aggregate": [ - 1563 + 1627 ], "size": [ - 3094 + 3377 ], "thumbnail_filename": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "uploader": [ - 4065 + 4348 ], "uploader_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_media_players": { "created_at": [ - 4670 + 4958 ], "media": [ - 1536 + 1600 ], "media_id": [ - 5170 + 5458 ], "player": [ - 4052 + 4335 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_players_aggregate": { "aggregate": [ - 1562 + 1626 ], "nodes": [ - 1558 + 1622 ], "__typename": [ - 80 + 83 ] }, "event_media_players_aggregate_bool_exp": { "count": [ - 1561 + 1625 ], "__typename": [ - 80 + 83 ] }, "event_media_players_aggregate_bool_exp_count": { "arguments": [ - 1579 + 1643 ], "distinct": [ 5 ], "filter": [ - 1567 + 1631 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "event_media_players_aggregate_fields": { "avg": [ - 1565 + 1629 ], "count": [ 40, { "columns": [ - 1579, + 1643, "[event_media_players_select_column!]" ], "distinct": [ @@ -24050,83 +24815,83 @@ export default { } ], "max": [ - 1571 + 1635 ], "min": [ - 1573 + 1637 ], "stddev": [ - 1581 + 1645 ], "stddev_pop": [ - 1583 + 1647 ], "stddev_samp": [ - 1585 + 1649 ], "sum": [ - 1589 + 1653 ], "var_pop": [ - 1593 + 1657 ], "var_samp": [ - 1595 + 1659 ], "variance": [ - 1597 + 1661 ], "__typename": [ - 80 + 83 ] }, "event_media_players_aggregate_order_by": { "avg": [ - 1566 + 1630 ], "count": [ - 3094 + 3377 ], "max": [ - 1572 + 1636 ], "min": [ - 1574 + 1638 ], "stddev": [ - 1582 + 1646 ], "stddev_pop": [ - 1584 + 1648 ], "stddev_samp": [ - 1586 + 1650 ], "sum": [ - 1590 + 1654 ], "var_pop": [ - 1594 + 1658 ], "var_samp": [ - 1596 + 1660 ], "variance": [ - 1598 + 1662 ], "__typename": [ - 80 + 83 ] }, "event_media_players_arr_rel_insert_input": { "data": [ - 1570 + 1634 ], "on_conflict": [ - 1576 + 1640 ], "__typename": [ - 80 + 83 ] }, "event_media_players_avg_fields": { @@ -24134,129 +24899,129 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_media_players_avg_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_players_bool_exp": { "_and": [ - 1567 + 1631 ], "_not": [ - 1567 + 1631 ], "_or": [ - 1567 + 1631 ], "created_at": [ - 4671 + 4959 ], "media": [ - 1545 + 1609 ], "media_id": [ - 5172 + 5460 ], "player": [ - 4056 + 4339 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "event_media_players_constraint": {}, "event_media_players_inc_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_players_insert_input": { "created_at": [ - 4670 + 4958 ], "media": [ - 1554 + 1618 ], "media_id": [ - 5170 + 5458 ], "player": [ - 4063 + 4346 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_players_max_fields": { "created_at": [ - 4670 + 4958 ], "media_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_players_max_order_by": { "created_at": [ - 3094 + 3377 ], "media_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_players_min_fields": { "created_at": [ - 4670 + 4958 ], "media_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_players_min_order_by": { "created_at": [ - 3094 + 3377 ], "media_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_players_mutation_response": { @@ -24264,70 +25029,70 @@ export default { 40 ], "returning": [ - 1558 + 1622 ], "__typename": [ - 80 + 83 ] }, "event_media_players_on_conflict": { "constraint": [ - 1568 + 1632 ], "update_columns": [ - 1591 + 1655 ], "where": [ - 1567 + 1631 ], "__typename": [ - 80 + 83 ] }, "event_media_players_order_by": { "created_at": [ - 3094 + 3377 ], "media": [ - 1556 + 1620 ], "media_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_players_pk_columns_input": { "media_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_players_select_column": {}, "event_media_players_set_input": { "created_at": [ - 4670 + 4958 ], "media_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_players_stddev_fields": { @@ -24335,15 +25100,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_media_players_stddev_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_players_stddev_pop_fields": { @@ -24351,15 +25116,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_media_players_stddev_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_players_stddev_samp_fields": { @@ -24367,71 +25132,71 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_media_players_stddev_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_players_stream_cursor_input": { "initial_value": [ - 1588 + 1652 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "event_media_players_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "media_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_players_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_players_sum_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_players_update_column": {}, "event_media_players_updates": { "_inc": [ - 1569 + 1633 ], "_set": [ - 1580 + 1644 ], "where": [ - 1567 + 1631 ], "__typename": [ - 80 + 83 ] }, "event_media_players_var_pop_fields": { @@ -24439,15 +25204,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_media_players_var_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_players_var_samp_fields": { @@ -24455,15 +25220,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_media_players_var_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_players_variance_fields": { @@ -24471,51 +25236,51 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_media_players_variance_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_select_column": {}, "event_media_set_input": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "external_url": [ - 80 + 83 ], "filename": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "mime_type": [ - 80 + 83 ], "size": [ - 264 + 268 ], "thumbnail_filename": [ - 80 + 83 ], "title": [ - 80 + 83 ], "uploader_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_stddev_fields": { @@ -24526,18 +25291,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_media_stddev_order_by": { "size": [ - 3094 + 3377 ], "uploader_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_stddev_pop_fields": { @@ -24548,18 +25313,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_media_stddev_pop_order_by": { "size": [ - 3094 + 3377 ], "uploader_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_stddev_samp_fields": { @@ -24570,101 +25335,101 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_media_stddev_samp_order_by": { "size": [ - 3094 + 3377 ], "uploader_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_stream_cursor_input": { "initial_value": [ - 1608 + 1672 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "event_media_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "external_url": [ - 80 + 83 ], "filename": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "mime_type": [ - 80 + 83 ], "size": [ - 264 + 268 ], "thumbnail_filename": [ - 80 + 83 ], "title": [ - 80 + 83 ], "uploader_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_sum_fields": { "size": [ - 264 + 268 ], "uploader_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_media_sum_order_by": { "size": [ - 3094 + 3377 ], "uploader_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_update_column": {}, "event_media_updates": { "_inc": [ - 1547 + 1611 ], "_set": [ - 1600 + 1664 ], "where": [ - 1545 + 1609 ], "__typename": [ - 80 + 83 ] }, "event_media_var_pop_fields": { @@ -24675,18 +25440,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_media_var_pop_order_by": { "size": [ - 3094 + 3377 ], "uploader_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_var_samp_fields": { @@ -24697,18 +25462,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_media_var_samp_order_by": { "size": [ - 3094 + 3377 ], "uploader_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_media_variance_fields": { @@ -24719,85 +25484,85 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_media_variance_order_by": { "size": [ - 3094 + 3377 ], "uploader_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_organizers": { "created_at": [ - 4670 + 4958 ], "event": [ - 1749 + 1813 ], "event_id": [ - 5170 + 5458 ], "organizer": [ - 4052 + 4335 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_organizers_aggregate": { "aggregate": [ - 1623 + 1687 ], "nodes": [ - 1619 + 1683 ], "__typename": [ - 80 + 83 ] }, "event_organizers_aggregate_bool_exp": { "count": [ - 1622 + 1686 ], "__typename": [ - 80 + 83 ] }, "event_organizers_aggregate_bool_exp_count": { "arguments": [ - 1640 + 1704 ], "distinct": [ 5 ], "filter": [ - 1628 + 1692 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "event_organizers_aggregate_fields": { "avg": [ - 1626 + 1690 ], "count": [ 40, { "columns": [ - 1640, + 1704, "[event_organizers_select_column!]" ], "distinct": [ @@ -24806,83 +25571,83 @@ export default { } ], "max": [ - 1632 + 1696 ], "min": [ - 1634 + 1698 ], "stddev": [ - 1642 + 1706 ], "stddev_pop": [ - 1644 + 1708 ], "stddev_samp": [ - 1646 + 1710 ], "sum": [ - 1650 + 1714 ], "var_pop": [ - 1654 + 1718 ], "var_samp": [ - 1656 + 1720 ], "variance": [ - 1658 + 1722 ], "__typename": [ - 80 + 83 ] }, "event_organizers_aggregate_order_by": { "avg": [ - 1627 + 1691 ], "count": [ - 3094 + 3377 ], "max": [ - 1633 + 1697 ], "min": [ - 1635 + 1699 ], "stddev": [ - 1643 + 1707 ], "stddev_pop": [ - 1645 + 1709 ], "stddev_samp": [ - 1647 + 1711 ], "sum": [ - 1651 + 1715 ], "var_pop": [ - 1655 + 1719 ], "var_samp": [ - 1657 + 1721 ], "variance": [ - 1659 + 1723 ], "__typename": [ - 80 + 83 ] }, "event_organizers_arr_rel_insert_input": { "data": [ - 1631 + 1695 ], "on_conflict": [ - 1637 + 1701 ], "__typename": [ - 80 + 83 ] }, "event_organizers_avg_fields": { @@ -24890,129 +25655,129 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_organizers_avg_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_organizers_bool_exp": { "_and": [ - 1628 + 1692 ], "_not": [ - 1628 + 1692 ], "_or": [ - 1628 + 1692 ], "created_at": [ - 4671 + 4959 ], "event": [ - 1753 + 1817 ], "event_id": [ - 5172 + 5460 ], "organizer": [ - 4056 + 4339 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "event_organizers_constraint": {}, "event_organizers_inc_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_organizers_insert_input": { "created_at": [ - 4670 + 4958 ], "event": [ - 1760 + 1824 ], "event_id": [ - 5170 + 5458 ], "organizer": [ - 4063 + 4346 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_organizers_max_fields": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_organizers_max_order_by": { "created_at": [ - 3094 + 3377 ], "event_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_organizers_min_fields": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_organizers_min_order_by": { "created_at": [ - 3094 + 3377 ], "event_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_organizers_mutation_response": { @@ -25020,70 +25785,70 @@ export default { 40 ], "returning": [ - 1619 + 1683 ], "__typename": [ - 80 + 83 ] }, "event_organizers_on_conflict": { "constraint": [ - 1629 + 1693 ], "update_columns": [ - 1652 + 1716 ], "where": [ - 1628 + 1692 ], "__typename": [ - 80 + 83 ] }, "event_organizers_order_by": { "created_at": [ - 3094 + 3377 ], "event": [ - 1762 + 1826 ], "event_id": [ - 3094 + 3377 ], "organizer": [ - 4065 + 4348 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_organizers_pk_columns_input": { "event_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_organizers_select_column": {}, "event_organizers_set_input": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_organizers_stddev_fields": { @@ -25091,15 +25856,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_organizers_stddev_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_organizers_stddev_pop_fields": { @@ -25107,15 +25872,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_organizers_stddev_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_organizers_stddev_samp_fields": { @@ -25123,71 +25888,71 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_organizers_stddev_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_organizers_stream_cursor_input": { "initial_value": [ - 1649 + 1713 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "event_organizers_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_organizers_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_organizers_sum_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_organizers_update_column": {}, "event_organizers_updates": { "_inc": [ - 1630 + 1694 ], "_set": [ - 1641 + 1705 ], "where": [ - 1628 + 1692 ], "__typename": [ - 80 + 83 ] }, "event_organizers_var_pop_fields": { @@ -25195,15 +25960,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_organizers_var_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_organizers_var_samp_fields": { @@ -25211,15 +25976,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_organizers_var_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_organizers_variance_fields": { @@ -25227,82 +25992,82 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_organizers_variance_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_players": { "created_at": [ - 4670 + 4958 ], "event": [ - 1749 + 1813 ], "event_id": [ - 5170 + 5458 ], "player": [ - 4052 + 4335 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_players_aggregate": { "aggregate": [ - 1664 + 1728 ], "nodes": [ - 1660 + 1724 ], "__typename": [ - 80 + 83 ] }, "event_players_aggregate_bool_exp": { "count": [ - 1663 + 1727 ], "__typename": [ - 80 + 83 ] }, "event_players_aggregate_bool_exp_count": { "arguments": [ - 1681 + 1745 ], "distinct": [ 5 ], "filter": [ - 1669 + 1733 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "event_players_aggregate_fields": { "avg": [ - 1667 + 1731 ], "count": [ 40, { "columns": [ - 1681, + 1745, "[event_players_select_column!]" ], "distinct": [ @@ -25311,83 +26076,83 @@ export default { } ], "max": [ - 1673 + 1737 ], "min": [ - 1675 + 1739 ], "stddev": [ - 1683 + 1747 ], "stddev_pop": [ - 1685 + 1749 ], "stddev_samp": [ - 1687 + 1751 ], "sum": [ - 1691 + 1755 ], "var_pop": [ - 1695 + 1759 ], "var_samp": [ - 1697 + 1761 ], "variance": [ - 1699 + 1763 ], "__typename": [ - 80 + 83 ] }, "event_players_aggregate_order_by": { "avg": [ - 1668 + 1732 ], "count": [ - 3094 + 3377 ], "max": [ - 1674 + 1738 ], "min": [ - 1676 + 1740 ], "stddev": [ - 1684 + 1748 ], "stddev_pop": [ - 1686 + 1750 ], "stddev_samp": [ - 1688 + 1752 ], "sum": [ - 1692 + 1756 ], "var_pop": [ - 1696 + 1760 ], "var_samp": [ - 1698 + 1762 ], "variance": [ - 1700 + 1764 ], "__typename": [ - 80 + 83 ] }, "event_players_arr_rel_insert_input": { "data": [ - 1672 + 1736 ], "on_conflict": [ - 1678 + 1742 ], "__typename": [ - 80 + 83 ] }, "event_players_avg_fields": { @@ -25395,129 +26160,129 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_players_avg_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_players_bool_exp": { "_and": [ - 1669 + 1733 ], "_not": [ - 1669 + 1733 ], "_or": [ - 1669 + 1733 ], "created_at": [ - 4671 + 4959 ], "event": [ - 1753 + 1817 ], "event_id": [ - 5172 + 5460 ], "player": [ - 4056 + 4339 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "event_players_constraint": {}, "event_players_inc_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_players_insert_input": { "created_at": [ - 4670 + 4958 ], "event": [ - 1760 + 1824 ], "event_id": [ - 5170 + 5458 ], "player": [ - 4063 + 4346 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_players_max_fields": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_players_max_order_by": { "created_at": [ - 3094 + 3377 ], "event_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_players_min_fields": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_players_min_order_by": { "created_at": [ - 3094 + 3377 ], "event_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_players_mutation_response": { @@ -25525,70 +26290,70 @@ export default { 40 ], "returning": [ - 1660 + 1724 ], "__typename": [ - 80 + 83 ] }, "event_players_on_conflict": { "constraint": [ - 1670 + 1734 ], "update_columns": [ - 1693 + 1757 ], "where": [ - 1669 + 1733 ], "__typename": [ - 80 + 83 ] }, "event_players_order_by": { "created_at": [ - 3094 + 3377 ], "event": [ - 1762 + 1826 ], "event_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_players_pk_columns_input": { "event_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_players_select_column": {}, "event_players_set_input": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_players_stddev_fields": { @@ -25596,15 +26361,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_players_stddev_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_players_stddev_pop_fields": { @@ -25612,15 +26377,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_players_stddev_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_players_stddev_samp_fields": { @@ -25628,71 +26393,71 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_players_stddev_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_players_stream_cursor_input": { "initial_value": [ - 1690 + 1754 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "event_players_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_players_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "event_players_sum_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_players_update_column": {}, "event_players_updates": { "_inc": [ - 1671 + 1735 ], "_set": [ - 1682 + 1746 ], "where": [ - 1669 + 1733 ], "__typename": [ - 80 + 83 ] }, "event_players_var_pop_fields": { @@ -25700,15 +26465,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_players_var_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_players_var_samp_fields": { @@ -25716,15 +26481,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_players_var_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_players_variance_fields": { @@ -25732,71 +26497,71 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "event_players_variance_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_teams": { "created_at": [ - 4670 + 4958 ], "event": [ - 1749 + 1813 ], "event_id": [ - 5170 + 5458 ], "team": [ - 4621 + 4909 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_teams_aggregate": { "aggregate": [ - 1705 + 1769 ], "nodes": [ - 1701 + 1765 ], "__typename": [ - 80 + 83 ] }, "event_teams_aggregate_bool_exp": { "count": [ - 1704 + 1768 ], "__typename": [ - 80 + 83 ] }, "event_teams_aggregate_bool_exp_count": { "arguments": [ - 1719 + 1783 ], "distinct": [ 5 ], "filter": [ - 1708 + 1772 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "event_teams_aggregate_fields": { @@ -25804,7 +26569,7 @@ export default { 40, { "columns": [ - 1719, + 1783, "[event_teams_select_column!]" ], "distinct": [ @@ -25813,144 +26578,144 @@ export default { } ], "max": [ - 1711 + 1775 ], "min": [ - 1713 + 1777 ], "__typename": [ - 80 + 83 ] }, "event_teams_aggregate_order_by": { "count": [ - 3094 + 3377 ], "max": [ - 1712 + 1776 ], "min": [ - 1714 + 1778 ], "__typename": [ - 80 + 83 ] }, "event_teams_arr_rel_insert_input": { "data": [ - 1710 + 1774 ], "on_conflict": [ - 1716 + 1780 ], "__typename": [ - 80 + 83 ] }, "event_teams_bool_exp": { "_and": [ - 1708 + 1772 ], "_not": [ - 1708 + 1772 ], "_or": [ - 1708 + 1772 ], "created_at": [ - 4671 + 4959 ], "event": [ - 1753 + 1817 ], "event_id": [ - 5172 + 5460 ], "team": [ - 4632 + 4920 ], "team_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "event_teams_constraint": {}, "event_teams_insert_input": { "created_at": [ - 4670 + 4958 ], "event": [ - 1760 + 1824 ], "event_id": [ - 5170 + 5458 ], "team": [ - 4641 + 4929 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_teams_max_fields": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_teams_max_order_by": { "created_at": [ - 3094 + 3377 ], "event_id": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_teams_min_fields": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_teams_min_order_by": { "created_at": [ - 3094 + 3377 ], "event_id": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_teams_mutation_response": { @@ -25958,163 +26723,163 @@ export default { 40 ], "returning": [ - 1701 + 1765 ], "__typename": [ - 80 + 83 ] }, "event_teams_on_conflict": { "constraint": [ - 1709 + 1773 ], "update_columns": [ - 1723 + 1787 ], "where": [ - 1708 + 1772 ], "__typename": [ - 80 + 83 ] }, "event_teams_order_by": { "created_at": [ - 3094 + 3377 ], "event": [ - 1762 + 1826 ], "event_id": [ - 3094 + 3377 ], "team": [ - 4643 + 4931 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_teams_pk_columns_input": { "event_id": [ - 5170 + 5458 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_teams_select_column": {}, "event_teams_set_input": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_teams_stream_cursor_input": { "initial_value": [ - 1722 + 1786 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "event_teams_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_teams_update_column": {}, "event_teams_updates": { "_set": [ - 1720 + 1784 ], "where": [ - 1708 + 1772 ], "__typename": [ - 80 + 83 ] }, "event_tournaments": { "created_at": [ - 4670 + 4958 ], "event": [ - 1749 + 1813 ], "event_id": [ - 5170 + 5458 ], "tournament": [ - 5106 + 5394 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_aggregate": { "aggregate": [ - 1729 + 1793 ], "nodes": [ - 1725 + 1789 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_aggregate_bool_exp": { "count": [ - 1728 + 1792 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_aggregate_bool_exp_count": { "arguments": [ - 1743 + 1807 ], "distinct": [ 5 ], "filter": [ - 1732 + 1796 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_aggregate_fields": { @@ -26122,7 +26887,7 @@ export default { 40, { "columns": [ - 1743, + 1807, "[event_tournaments_select_column!]" ], "distinct": [ @@ -26131,144 +26896,144 @@ export default { } ], "max": [ - 1735 + 1799 ], "min": [ - 1737 + 1801 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_aggregate_order_by": { "count": [ - 3094 + 3377 ], "max": [ - 1736 + 1800 ], "min": [ - 1738 + 1802 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_arr_rel_insert_input": { "data": [ - 1734 + 1798 ], "on_conflict": [ - 1740 + 1804 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_bool_exp": { "_and": [ - 1732 + 1796 ], "_not": [ - 1732 + 1796 ], "_or": [ - 1732 + 1796 ], "created_at": [ - 4671 + 4959 ], "event": [ - 1753 + 1817 ], "event_id": [ - 5172 + 5460 ], "tournament": [ - 5127 + 5415 ], "tournament_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_constraint": {}, "event_tournaments_insert_input": { "created_at": [ - 4670 + 4958 ], "event": [ - 1760 + 1824 ], "event_id": [ - 5170 + 5458 ], "tournament": [ - 5136 + 5424 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_max_fields": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_max_order_by": { "created_at": [ - 3094 + 3377 ], "event_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_min_fields": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_min_order_by": { "created_at": [ - 3094 + 3377 ], "event_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_mutation_response": { @@ -26276,115 +27041,115 @@ export default { 40 ], "returning": [ - 1725 + 1789 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_on_conflict": { "constraint": [ - 1733 + 1797 ], "update_columns": [ - 1747 + 1811 ], "where": [ - 1732 + 1796 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_order_by": { "created_at": [ - 3094 + 3377 ], "event": [ - 1762 + 1826 ], "event_id": [ - 3094 + 3377 ], "tournament": [ - 5138 + 5426 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_pk_columns_input": { "event_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_select_column": {}, "event_tournaments_set_input": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_stream_cursor_input": { "initial_value": [ - 1746 + 1810 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "event_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "event_tournaments_update_column": {}, "event_tournaments_updates": { "_set": [ - 1744 + 1808 ], "where": [ - 1732 + 1796 ], "__typename": [ - 80 + 83 ] }, "events": { "awards": [ - 195, + 199, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -26394,19 +27159,19 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "awards_aggregate": [ - 196, + 200, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -26416,19 +27181,19 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "banner": [ - 1536 + 1600 ], "banner_media_id": [ - 5170 + 5458 ], "can_upload_media": [ 5 @@ -26437,28 +27202,28 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "ends_at": [ - 4670 + 4958 ], "hide_creator_organizer": [ 5 ], "id": [ - 5170 + 5458 ], "is_organizer": [ 5 ], "media": [ - 1536, + 1600, { "distinct_on": [ - 1599, + 1663, "[event_media_select_column!]" ], "limit": [ @@ -26468,22 +27233,22 @@ export default { 40 ], "order_by": [ - 1556, + 1620, "[event_media_order_by!]" ], "where": [ - 1545 + 1609 ] } ], "media_access": [ - 767 + 771 ], "media_aggregate": [ - 1537, + 1601, { "distinct_on": [ - 1599, + 1663, "[event_media_select_column!]" ], "limit": [ @@ -26493,28 +27258,28 @@ export default { 40 ], "order_by": [ - 1556, + 1620, "[event_media_order_by!]" ], "where": [ - 1545 + 1609 ] } ], "name": [ - 80 + 83 ], "organizer": [ - 4052 + 4335 ], "organizer_steam_id": [ - 264 + 268 ], "organizers": [ - 1619, + 1683, { "distinct_on": [ - 1640, + 1704, "[event_organizers_select_column!]" ], "limit": [ @@ -26524,19 +27289,19 @@ export default { 40 ], "order_by": [ - 1638, + 1702, "[event_organizers_order_by!]" ], "where": [ - 1628 + 1692 ] } ], "organizers_aggregate": [ - 1620, + 1684, { "distinct_on": [ - 1640, + 1704, "[event_organizers_select_column!]" ], "limit": [ @@ -26546,19 +27311,19 @@ export default { 40 ], "order_by": [ - 1638, + 1702, "[event_organizers_order_by!]" ], "where": [ - 1628 + 1692 ] } ], "player_stats": [ - 5173, + 5461, { "distinct_on": [ - 5199, + 5487, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -26568,19 +27333,19 @@ export default { 40 ], "order_by": [ - 5198, + 5486, "[v_event_player_stats_order_by!]" ], "where": [ - 5192 + 5480 ] } ], "player_stats_aggregate": [ - 5174, + 5462, { "distinct_on": [ - 5199, + 5487, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -26590,19 +27355,19 @@ export default { 40 ], "order_by": [ - 5198, + 5486, "[v_event_player_stats_order_by!]" ], "where": [ - 5192 + 5480 ] } ], "players": [ - 1660, + 1724, { "distinct_on": [ - 1681, + 1745, "[event_players_select_column!]" ], "limit": [ @@ -26612,19 +27377,19 @@ export default { 40 ], "order_by": [ - 1679, + 1743, "[event_players_order_by!]" ], "where": [ - 1669 + 1733 ] } ], "players_aggregate": [ - 1661, + 1725, { "distinct_on": [ - 1681, + 1745, "[event_players_select_column!]" ], "limit": [ @@ -26634,22 +27399,22 @@ export default { 40 ], "order_by": [ - 1679, + 1743, "[event_players_order_by!]" ], "where": [ - 1669 + 1733 ] } ], "starts_at": [ - 4670 + 4958 ], "teams": [ - 1701, + 1765, { "distinct_on": [ - 1719, + 1783, "[event_teams_select_column!]" ], "limit": [ @@ -26659,19 +27424,19 @@ export default { 40 ], "order_by": [ - 1717, + 1781, "[event_teams_order_by!]" ], "where": [ - 1708 + 1772 ] } ], "teams_aggregate": [ - 1702, + 1766, { "distinct_on": [ - 1719, + 1783, "[event_teams_select_column!]" ], "limit": [ @@ -26681,19 +27446,19 @@ export default { 40 ], "order_by": [ - 1717, + 1781, "[event_teams_order_by!]" ], "where": [ - 1708 + 1772 ] } ], "tournaments": [ - 1725, + 1789, { "distinct_on": [ - 1743, + 1807, "[event_tournaments_select_column!]" ], "limit": [ @@ -26703,19 +27468,19 @@ export default { 40 ], "order_by": [ - 1741, + 1805, "[event_tournaments_order_by!]" ], "where": [ - 1732 + 1796 ] } ], "tournaments_aggregate": [ - 1726, + 1790, { "distinct_on": [ - 1743, + 1807, "[event_tournaments_select_column!]" ], "limit": [ @@ -26725,41 +27490,41 @@ export default { 40 ], "order_by": [ - 1741, + 1805, "[event_tournaments_order_by!]" ], "where": [ - 1732 + 1796 ] } ], "visibility": [ - 787 + 791 ], "__typename": [ - 80 + 83 ] }, "events_aggregate": { "aggregate": [ - 1751 + 1815 ], "nodes": [ - 1749 + 1813 ], "__typename": [ - 80 + 83 ] }, "events_aggregate_fields": { "avg": [ - 1752 + 1816 ], "count": [ 40, { "columns": [ - 1764, + 1828, "[events_select_column!]" ], "distinct": [ @@ -26768,34 +27533,34 @@ export default { } ], "max": [ - 1757 + 1821 ], "min": [ - 1758 + 1822 ], "stddev": [ - 1766 + 1830 ], "stddev_pop": [ - 1767 + 1831 ], "stddev_samp": [ - 1768 + 1832 ], "sum": [ - 1771 + 1835 ], "var_pop": [ - 1774 + 1838 ], "var_samp": [ - 1775 + 1839 ], "variance": [ - 1776 + 1840 ], "__typename": [ - 80 + 83 ] }, "events_avg_fields": { @@ -26803,30 +27568,30 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "events_bool_exp": { "_and": [ - 1753 + 1817 ], "_not": [ - 1753 + 1817 ], "_or": [ - 1753 + 1817 ], "awards": [ - 204 + 208 ], "awards_aggregate": [ - 197 + 201 ], "banner": [ - 1545 + 1609 ], "banner_media_id": [ - 5172 + 5460 ], "can_upload_media": [ 6 @@ -26835,211 +27600,211 @@ export default { 6 ], "created_at": [ - 4671 + 4959 ], "description": [ - 82 + 85 ], "ends_at": [ - 4671 + 4959 ], "hide_creator_organizer": [ 6 ], "id": [ - 5172 + 5460 ], "is_organizer": [ 6 ], "media": [ - 1545 + 1609 ], "media_access": [ - 768 + 772 ], "media_aggregate": [ - 1538 + 1602 ], "name": [ - 82 + 85 ], "organizer": [ - 4056 + 4339 ], "organizer_steam_id": [ - 266 + 270 ], "organizers": [ - 1628 + 1692 ], "organizers_aggregate": [ - 1621 + 1685 ], "player_stats": [ - 5192 + 5480 ], "player_stats_aggregate": [ - 5175 + 5463 ], "players": [ - 1669 + 1733 ], "players_aggregate": [ - 1662 + 1726 ], "starts_at": [ - 4671 + 4959 ], "teams": [ - 1708 + 1772 ], "teams_aggregate": [ - 1703 + 1767 ], "tournaments": [ - 1732 + 1796 ], "tournaments_aggregate": [ - 1727 + 1791 ], "visibility": [ - 788 + 792 ], "__typename": [ - 80 + 83 ] }, "events_constraint": {}, "events_inc_input": { "organizer_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "events_insert_input": { "awards": [ - 201 + 205 ], "banner": [ - 1554 + 1618 ], "banner_media_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "ends_at": [ - 4670 + 4958 ], "hide_creator_organizer": [ 5 ], "id": [ - 5170 + 5458 ], "media": [ - 1542 + 1606 ], "media_access": [ - 767 + 771 ], "name": [ - 80 + 83 ], "organizer": [ - 4063 + 4346 ], "organizer_steam_id": [ - 264 + 268 ], "organizers": [ - 1625 + 1689 ], "player_stats": [ - 5189 + 5477 ], "players": [ - 1666 + 1730 ], "starts_at": [ - 4670 + 4958 ], "teams": [ - 1707 + 1771 ], "tournaments": [ - 1731 + 1795 ], "visibility": [ - 787 + 791 ], "__typename": [ - 80 + 83 ] }, "events_max_fields": { "banner_media_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "ends_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "organizer_steam_id": [ - 264 + 268 ], "starts_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "events_min_fields": { "banner_media_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "ends_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "organizer_steam_id": [ - 264 + 268 ], "starts_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "events_mutation_response": { @@ -27047,156 +27812,156 @@ export default { 40 ], "returning": [ - 1749 + 1813 ], "__typename": [ - 80 + 83 ] }, "events_obj_rel_insert_input": { "data": [ - 1756 + 1820 ], "on_conflict": [ - 1761 + 1825 ], "__typename": [ - 80 + 83 ] }, "events_on_conflict": { "constraint": [ - 1754 + 1818 ], "update_columns": [ - 1772 + 1836 ], "where": [ - 1753 + 1817 ], "__typename": [ - 80 + 83 ] }, "events_order_by": { "awards_aggregate": [ - 200 + 204 ], "banner": [ - 1556 + 1620 ], "banner_media_id": [ - 3094 + 3377 ], "can_upload_media": [ - 3094 + 3377 ], "can_view": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "description": [ - 3094 + 3377 ], "ends_at": [ - 3094 + 3377 ], "hide_creator_organizer": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "is_organizer": [ - 3094 + 3377 ], "media_access": [ - 3094 + 3377 ], "media_aggregate": [ - 1541 + 1605 ], "name": [ - 3094 + 3377 ], "organizer": [ - 4065 + 4348 ], "organizer_steam_id": [ - 3094 + 3377 ], "organizers_aggregate": [ - 1624 + 1688 ], "player_stats_aggregate": [ - 5188 + 5476 ], "players_aggregate": [ - 1665 + 1729 ], "starts_at": [ - 3094 + 3377 ], "teams_aggregate": [ - 1706 + 1770 ], "tournaments_aggregate": [ - 1730 + 1794 ], "visibility": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "events_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "events_select_column": {}, "events_set_input": { "banner_media_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "ends_at": [ - 4670 + 4958 ], "hide_creator_organizer": [ 5 ], "id": [ - 5170 + 5458 ], "media_access": [ - 767 + 771 ], "name": [ - 80 + 83 ], "organizer_steam_id": [ - 264 + 268 ], "starts_at": [ - 4670 + 4958 ], "visibility": [ - 787 + 791 ], "__typename": [ - 80 + 83 ] }, "events_stddev_fields": { @@ -27204,7 +27969,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "events_stddev_pop_fields": { @@ -27212,7 +27977,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "events_stddev_samp_fields": { @@ -27220,79 +27985,79 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "events_stream_cursor_input": { "initial_value": [ - 1770 + 1834 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "events_stream_cursor_value_input": { "banner_media_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "ends_at": [ - 4670 + 4958 ], "hide_creator_organizer": [ 5 ], "id": [ - 5170 + 5458 ], "media_access": [ - 767 + 771 ], "name": [ - 80 + 83 ], "organizer_steam_id": [ - 264 + 268 ], "starts_at": [ - 4670 + 4958 ], "visibility": [ - 787 + 791 ], "__typename": [ - 80 + 83 ] }, "events_sum_fields": { "organizer_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "events_update_column": {}, "events_updates": { "_inc": [ - 1755 + 1819 ], "_set": [ - 1765 + 1829 ], "where": [ - 1753 + 1817 ], "__typename": [ - 80 + 83 ] }, "events_var_pop_fields": { @@ -27300,7 +28065,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "events_var_samp_fields": { @@ -27308,7 +28073,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "events_variance_fields": { @@ -27316,79 +28081,79 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "float8": {}, "float8_comparison_exp": { "_eq": [ - 1777 + 1841 ], "_gt": [ - 1777 + 1841 ], "_gte": [ - 1777 + 1841 ], "_in": [ - 1777 + 1841 ], "_is_null": [ 5 ], "_lt": [ - 1777 + 1841 ], "_lte": [ - 1777 + 1841 ], "_neq": [ - 1777 + 1841 ], "_nin": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "friends": { "e_status": [ - 802 + 806 ], "other_player_steam_id": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "status": [ - 807 + 811 ], "__typename": [ - 80 + 83 ] }, "friends_aggregate": { "aggregate": [ - 1781 + 1845 ], "nodes": [ - 1779 + 1843 ], "__typename": [ - 80 + 83 ] }, "friends_aggregate_fields": { "avg": [ - 1782 + 1846 ], "count": [ 40, { "columns": [ - 1793, + 1857, "[friends_select_column!]" ], "distinct": [ @@ -27397,34 +28162,34 @@ export default { } ], "max": [ - 1787 + 1851 ], "min": [ - 1788 + 1852 ], "stddev": [ - 1795 + 1859 ], "stddev_pop": [ - 1796 + 1860 ], "stddev_samp": [ - 1797 + 1861 ], "sum": [ - 1800 + 1864 ], "var_pop": [ - 1803 + 1867 ], "var_samp": [ - 1804 + 1868 ], "variance": [ - 1805 + 1869 ], "__typename": [ - 80 + 83 ] }, "friends_avg_fields": { @@ -27435,84 +28200,84 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "friends_bool_exp": { "_and": [ - 1783 + 1847 ], "_not": [ - 1783 + 1847 ], "_or": [ - 1783 + 1847 ], "e_status": [ - 805 + 809 ], "other_player_steam_id": [ - 266 + 270 ], "player_steam_id": [ - 266 + 270 ], "status": [ - 808 + 812 ], "__typename": [ - 80 + 83 ] }, "friends_constraint": {}, "friends_inc_input": { "other_player_steam_id": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "friends_insert_input": { "e_status": [ - 813 + 817 ], "other_player_steam_id": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "status": [ - 807 + 811 ], "__typename": [ - 80 + 83 ] }, "friends_max_fields": { "other_player_steam_id": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "friends_min_fields": { "other_player_steam_id": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "friends_mutation_response": { @@ -27520,67 +28285,67 @@ export default { 40 ], "returning": [ - 1779 + 1843 ], "__typename": [ - 80 + 83 ] }, "friends_on_conflict": { "constraint": [ - 1784 + 1848 ], "update_columns": [ - 1801 + 1865 ], "where": [ - 1783 + 1847 ], "__typename": [ - 80 + 83 ] }, "friends_order_by": { "e_status": [ - 815 + 819 ], "other_player_steam_id": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "friends_pk_columns_input": { "other_player_steam_id": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "friends_select_column": {}, "friends_set_input": { "other_player_steam_id": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "status": [ - 807 + 811 ], "__typename": [ - 80 + 83 ] }, "friends_stddev_fields": { @@ -27591,7 +28356,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "friends_stddev_pop_fields": { @@ -27602,7 +28367,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "friends_stddev_samp_fields": { @@ -27613,58 +28378,58 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "friends_stream_cursor_input": { "initial_value": [ - 1799 + 1863 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "friends_stream_cursor_value_input": { "other_player_steam_id": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "status": [ - 807 + 811 ], "__typename": [ - 80 + 83 ] }, "friends_sum_fields": { "other_player_steam_id": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "friends_update_column": {}, "friends_updates": { "_inc": [ - 1785 + 1849 ], "_set": [ - 1794 + 1858 ], "where": [ - 1783 + 1847 ], "__typename": [ - 80 + 83 ] }, "friends_var_pop_fields": { @@ -27675,7 +28440,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "friends_var_samp_fields": { @@ -27686,7 +28451,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "friends_variance_fields": { @@ -27697,82 +28462,4022 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, - "game_server_nodes": { - "available_server_count": [ - 40 - ], - "build_id": [ - 40 - ], - "cpu_cores_per_socket": [ - 40 - ], - "cpu_frequency_info": [ - 1930, + "game_mode_plugins": { + "config": [ + 2191, { "path": [ - 80 + 83 ] } ], - "cpu_governor_info": [ - 1930, + "game_mode": [ + 1920 + ], + "game_mode_id": [ + 5458 + ], + "load_order": [ + 40 + ], + "plugin": [ + 2007 + ], + "plugin_slug": [ + 83 + ], + "required": [ + 5 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_aggregate": { + "aggregate": [ + 1876 + ], + "nodes": [ + 1870 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_aggregate_bool_exp": { + "bool_and": [ + 1873 + ], + "bool_or": [ + 1874 + ], + "count": [ + 1875 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_aggregate_bool_exp_bool_and": { + "arguments": [ + 1899 + ], + "distinct": [ + 5 + ], + "filter": [ + 1882 + ], + "predicate": [ + 6 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_aggregate_bool_exp_bool_or": { + "arguments": [ + 1900 + ], + "distinct": [ + 5 + ], + "filter": [ + 1882 + ], + "predicate": [ + 6 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_aggregate_bool_exp_count": { + "arguments": [ + 1898 + ], + "distinct": [ + 5 + ], + "filter": [ + 1882 + ], + "predicate": [ + 41 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_aggregate_fields": { + "avg": [ + 1880 + ], + "count": [ + 40, { - "path": [ - 80 + "columns": [ + 1898, + "[game_mode_plugins_select_column!]" + ], + "distinct": [ + 5 ] } ], - "cpu_sockets": [ + "max": [ + 1889 + ], + "min": [ + 1891 + ], + "stddev": [ + 1902 + ], + "stddev_pop": [ + 1904 + ], + "stddev_samp": [ + 1906 + ], + "sum": [ + 1910 + ], + "var_pop": [ + 1914 + ], + "var_samp": [ + 1916 + ], + "variance": [ + 1918 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_aggregate_order_by": { + "avg": [ + 1881 + ], + "count": [ + 3377 + ], + "max": [ + 1890 + ], + "min": [ + 1892 + ], + "stddev": [ + 1903 + ], + "stddev_pop": [ + 1905 + ], + "stddev_samp": [ + 1907 + ], + "sum": [ + 1911 + ], + "var_pop": [ + 1915 + ], + "var_samp": [ + 1917 + ], + "variance": [ + 1919 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_append_input": { + "config": [ + 2191 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_arr_rel_insert_input": { + "data": [ + 1888 + ], + "on_conflict": [ + 1894 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_avg_fields": { + "load_order": [ + 31 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_avg_order_by": { + "load_order": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_bool_exp": { + "_and": [ + 1882 + ], + "_not": [ + 1882 + ], + "_or": [ + 1882 + ], + "config": [ + 2193 + ], + "game_mode": [ + 1924 + ], + "game_mode_id": [ + 5460 + ], + "load_order": [ + 41 + ], + "plugin": [ + 2012 + ], + "plugin_slug": [ + 85 + ], + "required": [ + 6 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_constraint": {}, + "game_mode_plugins_delete_at_path_input": { + "config": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_delete_elem_input": { + "config": [ 40 ], - "cpu_threads_per_core": [ + "__typename": [ + 83 + ] + }, + "game_mode_plugins_delete_key_input": { + "config": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_inc_input": { + "load_order": [ 40 ], - "cpu_warnings": [ - 1930, - { - "path": [ - 80 - ] - } + "__typename": [ + 83 + ] + }, + "game_mode_plugins_insert_input": { + "config": [ + 2191 ], - "cs2_launch_options": [ - 1930, - { - "path": [ - 80 - ] - } + "game_mode": [ + 1933 ], - "cs2_video_settings": [ - 1930, - { - "path": [ - 80 - ] - } + "game_mode_id": [ + 5458 ], - "csgo_build_id": [ + "load_order": [ 40 ], - "demo_network_limiter": [ + "plugin": [ + 2021 + ], + "plugin_slug": [ + 83 + ], + "required": [ + 5 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_max_fields": { + "game_mode_id": [ + 5458 + ], + "load_order": [ 40 ], - "disk_available_gb": [ + "plugin_slug": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_max_order_by": { + "game_mode_id": [ + 3377 + ], + "load_order": [ + 3377 + ], + "plugin_slug": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_min_fields": { + "game_mode_id": [ + 5458 + ], + "load_order": [ 40 ], - "disk_used_percent": [ + "plugin_slug": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_min_order_by": { + "game_mode_id": [ + 3377 + ], + "load_order": [ + 3377 + ], + "plugin_slug": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_mutation_response": { + "affected_rows": [ 40 ], - "e_region": [ - 4166 + "returning": [ + 1870 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_on_conflict": { + "constraint": [ + 1883 + ], + "update_columns": [ + 1912 + ], + "where": [ + 1882 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_order_by": { + "config": [ + 3377 + ], + "game_mode": [ + 1935 + ], + "game_mode_id": [ + 3377 + ], + "load_order": [ + 3377 + ], + "plugin": [ + 2023 + ], + "plugin_slug": [ + 3377 + ], + "required": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_pk_columns_input": { + "game_mode_id": [ + 5458 + ], + "plugin_slug": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_prepend_input": { + "config": [ + 2191 + ], + "__typename": [ + 83 + ] + }, + "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": [ + 2191 + ], + "game_mode_id": [ + 5458 + ], + "load_order": [ + 40 + ], + "plugin_slug": [ + 83 + ], + "required": [ + 5 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_stddev_fields": { + "load_order": [ + 31 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_stddev_order_by": { + "load_order": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_stddev_pop_fields": { + "load_order": [ + 31 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_stddev_pop_order_by": { + "load_order": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_stddev_samp_fields": { + "load_order": [ + 31 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_stddev_samp_order_by": { + "load_order": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_stream_cursor_input": { + "initial_value": [ + 1909 + ], + "ordering": [ + 351 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_stream_cursor_value_input": { + "config": [ + 2191 + ], + "game_mode_id": [ + 5458 + ], + "load_order": [ + 40 + ], + "plugin_slug": [ + 83 + ], + "required": [ + 5 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_sum_fields": { + "load_order": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_sum_order_by": { + "load_order": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_update_column": {}, + "game_mode_plugins_updates": { + "_append": [ + 1878 + ], + "_delete_at_path": [ + 1884 + ], + "_delete_elem": [ + 1885 + ], + "_delete_key": [ + 1886 + ], + "_inc": [ + 1887 + ], + "_prepend": [ + 1897 + ], + "_set": [ + 1901 + ], + "where": [ + 1882 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_var_pop_fields": { + "load_order": [ + 31 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_var_pop_order_by": { + "load_order": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_var_samp_fields": { + "load_order": [ + 31 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_var_samp_order_by": { + "load_order": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_variance_fields": { + "load_order": [ + 31 + ], + "__typename": [ + 83 + ] + }, + "game_mode_plugins_variance_order_by": { + "load_order": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_modes": { + "archived_at": [ + 4958 + ], + "cfg": [ + 83 + ], + "competitive_safe": [ + 5 + ], + "created_at": [ + 4958 + ], + "description": [ + 83 + ], + "enabled": [ + 5 + ], + "extra_game_params": [ + 83 + ], + "icon": [ + 83 + ], + "id": [ + 5458 + ], + "map_pool": [ + 2634 + ], + "map_pool_id": [ + 5458 + ], + "match_option_defaults": [ + 2191, + { + "path": [ + 83 + ] + } + ], + "match_options": [ + 3019, + { + "distinct_on": [ + 3043, + "[match_options_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 3041, + "[match_options_order_by!]" + ], + "where": [ + 3030 + ] + } + ], + "match_options_aggregate": [ + 3020, + { + "distinct_on": [ + 3043, + "[match_options_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 3041, + "[match_options_order_by!]" + ], + "where": [ + 3030 + ] + } + ], + "name": [ + 83 + ], + "plugins": [ + 1870, + { + "distinct_on": [ + 1898, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1895, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1882 + ] + } + ], + "plugins_aggregate": [ + 1871, + { + "distinct_on": [ + 1898, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1895, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1882 + ] + } + ], + "runtime_conflicts": [ + 2191, + { + "path": [ + 83 + ] + } + ], + "slug": [ + 83 + ], + "supported_runtimes": [ + 2191, + { + "path": [ + 83 + ] + } + ], + "updated_at": [ + 4958 + ], + "__typename": [ + 83 + ] + }, + "game_modes_aggregate": { + "aggregate": [ + 1922 + ], + "nodes": [ + 1920 + ], + "__typename": [ + 83 + ] + }, + "game_modes_aggregate_fields": { + "count": [ + 40, + { + "columns": [ + 1938, + "[game_modes_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 1930 + ], + "min": [ + 1931 + ], + "__typename": [ + 83 + ] + }, + "game_modes_append_input": { + "match_option_defaults": [ + 2191 + ], + "__typename": [ + 83 + ] + }, + "game_modes_bool_exp": { + "_and": [ + 1924 + ], + "_not": [ + 1924 + ], + "_or": [ + 1924 + ], + "archived_at": [ + 4959 + ], + "cfg": [ + 85 + ], + "competitive_safe": [ + 6 + ], + "created_at": [ + 4959 + ], + "description": [ + 85 + ], + "enabled": [ + 6 + ], + "extra_game_params": [ + 85 + ], + "icon": [ + 85 + ], + "id": [ + 5460 + ], + "map_pool": [ + 2637 + ], + "map_pool_id": [ + 5460 + ], + "match_option_defaults": [ + 2193 + ], + "match_options": [ + 3030 + ], + "match_options_aggregate": [ + 3021 + ], + "name": [ + 85 + ], + "plugins": [ + 1882 + ], + "plugins_aggregate": [ + 1872 + ], + "runtime_conflicts": [ + 2193 + ], + "slug": [ + 85 + ], + "supported_runtimes": [ + 2193 + ], + "updated_at": [ + 4959 + ], + "__typename": [ + 83 + ] + }, + "game_modes_constraint": {}, + "game_modes_delete_at_path_input": { + "match_option_defaults": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_modes_delete_elem_input": { + "match_option_defaults": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_modes_delete_key_input": { + "match_option_defaults": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_modes_insert_input": { + "archived_at": [ + 4958 + ], + "cfg": [ + 83 + ], + "competitive_safe": [ + 5 + ], + "created_at": [ + 4958 + ], + "description": [ + 83 + ], + "enabled": [ + 5 + ], + "extra_game_params": [ + 83 + ], + "icon": [ + 83 + ], + "id": [ + 5458 + ], + "map_pool": [ + 2643 + ], + "map_pool_id": [ + 5458 + ], + "match_option_defaults": [ + 2191 + ], + "match_options": [ + 3027 + ], + "name": [ + 83 + ], + "plugins": [ + 1879 + ], + "slug": [ + 83 + ], + "updated_at": [ + 4958 + ], + "__typename": [ + 83 + ] + }, + "game_modes_max_fields": { + "archived_at": [ + 4958 + ], + "cfg": [ + 83 + ], + "created_at": [ + 4958 + ], + "description": [ + 83 + ], + "extra_game_params": [ + 83 + ], + "icon": [ + 83 + ], + "id": [ + 5458 + ], + "map_pool_id": [ + 5458 + ], + "name": [ + 83 + ], + "slug": [ + 83 + ], + "updated_at": [ + 4958 + ], + "__typename": [ + 83 + ] + }, + "game_modes_min_fields": { + "archived_at": [ + 4958 + ], + "cfg": [ + 83 + ], + "created_at": [ + 4958 + ], + "description": [ + 83 + ], + "extra_game_params": [ + 83 + ], + "icon": [ + 83 + ], + "id": [ + 5458 + ], + "map_pool_id": [ + 5458 + ], + "name": [ + 83 + ], + "slug": [ + 83 + ], + "updated_at": [ + 4958 + ], + "__typename": [ + 83 + ] + }, + "game_modes_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 1920 + ], + "__typename": [ + 83 + ] + }, + "game_modes_obj_rel_insert_input": { + "data": [ + 1929 + ], + "on_conflict": [ + 1934 + ], + "__typename": [ + 83 + ] + }, + "game_modes_on_conflict": { + "constraint": [ + 1925 + ], + "update_columns": [ + 1942 + ], + "where": [ + 1924 + ], + "__typename": [ + 83 + ] + }, + "game_modes_order_by": { + "archived_at": [ + 3377 + ], + "cfg": [ + 3377 + ], + "competitive_safe": [ + 3377 + ], + "created_at": [ + 3377 + ], + "description": [ + 3377 + ], + "enabled": [ + 3377 + ], + "extra_game_params": [ + 3377 + ], + "icon": [ + 3377 + ], + "id": [ + 3377 + ], + "map_pool": [ + 2645 + ], + "map_pool_id": [ + 3377 + ], + "match_option_defaults": [ + 3377 + ], + "match_options_aggregate": [ + 3026 + ], + "name": [ + 3377 + ], + "plugins_aggregate": [ + 1877 + ], + "runtime_conflicts": [ + 3377 + ], + "slug": [ + 3377 + ], + "supported_runtimes": [ + 3377 + ], + "updated_at": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_modes_pk_columns_input": { + "id": [ + 5458 + ], + "__typename": [ + 83 + ] + }, + "game_modes_prepend_input": { + "match_option_defaults": [ + 2191 + ], + "__typename": [ + 83 + ] + }, + "game_modes_select_column": {}, + "game_modes_set_input": { + "archived_at": [ + 4958 + ], + "cfg": [ + 83 + ], + "competitive_safe": [ + 5 + ], + "created_at": [ + 4958 + ], + "description": [ + 83 + ], + "enabled": [ + 5 + ], + "extra_game_params": [ + 83 + ], + "icon": [ + 83 + ], + "id": [ + 5458 + ], + "map_pool_id": [ + 5458 + ], + "match_option_defaults": [ + 2191 + ], + "name": [ + 83 + ], + "slug": [ + 83 + ], + "updated_at": [ + 4958 + ], + "__typename": [ + 83 + ] + }, + "game_modes_stream_cursor_input": { + "initial_value": [ + 1941 + ], + "ordering": [ + 351 + ], + "__typename": [ + 83 + ] + }, + "game_modes_stream_cursor_value_input": { + "archived_at": [ + 4958 + ], + "cfg": [ + 83 + ], + "competitive_safe": [ + 5 + ], + "created_at": [ + 4958 + ], + "description": [ + 83 + ], + "enabled": [ + 5 + ], + "extra_game_params": [ + 83 + ], + "icon": [ + 83 + ], + "id": [ + 5458 + ], + "map_pool_id": [ + 5458 + ], + "match_option_defaults": [ + 2191 + ], + "name": [ + 83 + ], + "slug": [ + 83 + ], + "updated_at": [ + 4958 + ], + "__typename": [ + 83 + ] + }, + "game_modes_update_column": {}, + "game_modes_updates": { + "_append": [ + 1923 + ], + "_delete_at_path": [ + 1926 + ], + "_delete_elem": [ + 1927 + ], + "_delete_key": [ + 1928 + ], + "_prepend": [ + 1937 + ], + "_set": [ + 1939 + ], + "where": [ + 1924 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs": { + "always_load": [ + 5 + ], + "channel": [ + 852 + ], + "created_at": [ + 4958 + ], + "enabled": [ + 5 + ], + "plugin": [ + 2007 + ], + "plugin_slug": [ + 83 + ], + "updated_at": [ + 4958 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs_aggregate": { + "aggregate": [ + 1946 + ], + "nodes": [ + 1944 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs_aggregate_fields": { + "count": [ + 40, + { + "columns": [ + 1956, + "[game_plugin_installs_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 1950 + ], + "min": [ + 1951 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs_bool_exp": { + "_and": [ + 1947 + ], + "_not": [ + 1947 + ], + "_or": [ + 1947 + ], + "always_load": [ + 6 + ], + "channel": [ + 853 + ], + "created_at": [ + 4959 + ], + "enabled": [ + 6 + ], + "plugin": [ + 2012 + ], + "plugin_slug": [ + 85 + ], + "updated_at": [ + 4959 + ], + "version": [ + 85 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs_constraint": {}, + "game_plugin_installs_insert_input": { + "always_load": [ + 5 + ], + "channel": [ + 852 + ], + "created_at": [ + 4958 + ], + "enabled": [ + 5 + ], + "plugin": [ + 2021 + ], + "plugin_slug": [ + 83 + ], + "updated_at": [ + 4958 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs_max_fields": { + "created_at": [ + 4958 + ], + "plugin_slug": [ + 83 + ], + "updated_at": [ + 4958 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs_min_fields": { + "created_at": [ + 4958 + ], + "plugin_slug": [ + 83 + ], + "updated_at": [ + 4958 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 1944 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs_on_conflict": { + "constraint": [ + 1948 + ], + "update_columns": [ + 1960 + ], + "where": [ + 1947 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs_order_by": { + "always_load": [ + 3377 + ], + "channel": [ + 3377 + ], + "created_at": [ + 3377 + ], + "enabled": [ + 3377 + ], + "plugin": [ + 2023 + ], + "plugin_slug": [ + 3377 + ], + "updated_at": [ + 3377 + ], + "version": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs_pk_columns_input": { + "plugin_slug": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs_select_column": {}, + "game_plugin_installs_set_input": { + "always_load": [ + 5 + ], + "channel": [ + 852 + ], + "created_at": [ + 4958 + ], + "enabled": [ + 5 + ], + "plugin_slug": [ + 83 + ], + "updated_at": [ + 4958 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs_stream_cursor_input": { + "initial_value": [ + 1959 + ], + "ordering": [ + 351 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs_stream_cursor_value_input": { + "always_load": [ + 5 + ], + "channel": [ + 852 + ], + "created_at": [ + 4958 + ], + "enabled": [ + 5 + ], + "plugin_slug": [ + 83 + ], + "updated_at": [ + 4958 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_installs_update_column": {}, + "game_plugin_installs_updates": { + "_set": [ + 1957 + ], + "where": [ + 1947 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions": { + "install_path": [ + 83 + ], + "layout": [ + 83 + ], + "plugin": [ + 2007 + ], + "plugin_slug": [ + 83 + ], + "prerelease": [ + 5 + ], + "published_at": [ + 4958 + ], + "runtime": [ + 1262 + ], + "sha256": [ + 83 + ], + "size": [ + 40 + ], + "url": [ + 83 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_aggregate": { + "aggregate": [ + 1968 + ], + "nodes": [ + 1962 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_aggregate_bool_exp": { + "bool_and": [ + 1965 + ], + "bool_or": [ + 1966 + ], + "count": [ + 1967 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_aggregate_bool_exp_bool_and": { + "arguments": [ + 1986 + ], + "distinct": [ + 5 + ], + "filter": [ + 1973 + ], + "predicate": [ + 6 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_aggregate_bool_exp_bool_or": { + "arguments": [ + 1987 + ], + "distinct": [ + 5 + ], + "filter": [ + 1973 + ], + "predicate": [ + 6 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_aggregate_bool_exp_count": { + "arguments": [ + 1985 + ], + "distinct": [ + 5 + ], + "filter": [ + 1973 + ], + "predicate": [ + 41 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_aggregate_fields": { + "avg": [ + 1971 + ], + "count": [ + 40, + { + "columns": [ + 1985, + "[game_plugin_versions_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 1977 + ], + "min": [ + 1979 + ], + "stddev": [ + 1989 + ], + "stddev_pop": [ + 1991 + ], + "stddev_samp": [ + 1993 + ], + "sum": [ + 1997 + ], + "var_pop": [ + 2001 + ], + "var_samp": [ + 2003 + ], + "variance": [ + 2005 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_aggregate_order_by": { + "avg": [ + 1972 + ], + "count": [ + 3377 + ], + "max": [ + 1978 + ], + "min": [ + 1980 + ], + "stddev": [ + 1990 + ], + "stddev_pop": [ + 1992 + ], + "stddev_samp": [ + 1994 + ], + "sum": [ + 1998 + ], + "var_pop": [ + 2002 + ], + "var_samp": [ + 2004 + ], + "variance": [ + 2006 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_arr_rel_insert_input": { + "data": [ + 1976 + ], + "on_conflict": [ + 1982 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_avg_fields": { + "size": [ + 31 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_avg_order_by": { + "size": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_bool_exp": { + "_and": [ + 1973 + ], + "_not": [ + 1973 + ], + "_or": [ + 1973 + ], + "install_path": [ + 85 + ], + "layout": [ + 85 + ], + "plugin": [ + 2012 + ], + "plugin_slug": [ + 85 + ], + "prerelease": [ + 6 + ], + "published_at": [ + 4959 + ], + "runtime": [ + 1263 + ], + "sha256": [ + 85 + ], + "size": [ + 41 + ], + "url": [ + 85 + ], + "version": [ + 85 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_constraint": {}, + "game_plugin_versions_inc_input": { + "size": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_insert_input": { + "install_path": [ + 83 + ], + "layout": [ + 83 + ], + "plugin": [ + 2021 + ], + "plugin_slug": [ + 83 + ], + "prerelease": [ + 5 + ], + "published_at": [ + 4958 + ], + "runtime": [ + 1262 + ], + "sha256": [ + 83 + ], + "size": [ + 40 + ], + "url": [ + 83 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_max_fields": { + "install_path": [ + 83 + ], + "layout": [ + 83 + ], + "plugin_slug": [ + 83 + ], + "published_at": [ + 4958 + ], + "sha256": [ + 83 + ], + "size": [ + 40 + ], + "url": [ + 83 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_max_order_by": { + "install_path": [ + 3377 + ], + "layout": [ + 3377 + ], + "plugin_slug": [ + 3377 + ], + "published_at": [ + 3377 + ], + "sha256": [ + 3377 + ], + "size": [ + 3377 + ], + "url": [ + 3377 + ], + "version": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_min_fields": { + "install_path": [ + 83 + ], + "layout": [ + 83 + ], + "plugin_slug": [ + 83 + ], + "published_at": [ + 4958 + ], + "sha256": [ + 83 + ], + "size": [ + 40 + ], + "url": [ + 83 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_min_order_by": { + "install_path": [ + 3377 + ], + "layout": [ + 3377 + ], + "plugin_slug": [ + 3377 + ], + "published_at": [ + 3377 + ], + "sha256": [ + 3377 + ], + "size": [ + 3377 + ], + "url": [ + 3377 + ], + "version": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 1962 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_on_conflict": { + "constraint": [ + 1974 + ], + "update_columns": [ + 1999 + ], + "where": [ + 1973 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_order_by": { + "install_path": [ + 3377 + ], + "layout": [ + 3377 + ], + "plugin": [ + 2023 + ], + "plugin_slug": [ + 3377 + ], + "prerelease": [ + 3377 + ], + "published_at": [ + 3377 + ], + "runtime": [ + 3377 + ], + "sha256": [ + 3377 + ], + "size": [ + 3377 + ], + "url": [ + 3377 + ], + "version": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_pk_columns_input": { + "plugin_slug": [ + 83 + ], + "runtime": [ + 1262 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "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": [ + 83 + ], + "layout": [ + 83 + ], + "plugin_slug": [ + 83 + ], + "prerelease": [ + 5 + ], + "published_at": [ + 4958 + ], + "runtime": [ + 1262 + ], + "sha256": [ + 83 + ], + "size": [ + 40 + ], + "url": [ + 83 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_stddev_fields": { + "size": [ + 31 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_stddev_order_by": { + "size": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_stddev_pop_fields": { + "size": [ + 31 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_stddev_pop_order_by": { + "size": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_stddev_samp_fields": { + "size": [ + 31 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_stddev_samp_order_by": { + "size": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_stream_cursor_input": { + "initial_value": [ + 1996 + ], + "ordering": [ + 351 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_stream_cursor_value_input": { + "install_path": [ + 83 + ], + "layout": [ + 83 + ], + "plugin_slug": [ + 83 + ], + "prerelease": [ + 5 + ], + "published_at": [ + 4958 + ], + "runtime": [ + 1262 + ], + "sha256": [ + 83 + ], + "size": [ + 40 + ], + "url": [ + 83 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_sum_fields": { + "size": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_sum_order_by": { + "size": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_update_column": {}, + "game_plugin_versions_updates": { + "_inc": [ + 1975 + ], + "_set": [ + 1988 + ], + "where": [ + 1973 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_var_pop_fields": { + "size": [ + 31 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_var_pop_order_by": { + "size": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_var_samp_fields": { + "size": [ + 31 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_var_samp_order_by": { + "size": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_variance_fields": { + "size": [ + 31 + ], + "__typename": [ + 83 + ] + }, + "game_plugin_versions_variance_order_by": { + "size": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_plugins": { + "author": [ + 83 + ], + "config_path": [ + 83 + ], + "config_schema": [ + 2191, + { + "path": [ + 83 + ] + } + ], + "cvars": [ + 83 + ], + "description": [ + 83 + ], + "game_modes": [ + 1870, + { + "distinct_on": [ + 1898, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1895, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1882 + ] + } + ], + "game_modes_aggregate": [ + 1871, + { + "distinct_on": [ + 1898, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1895, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1882 + ] + } + ], + "homepage": [ + 83 + ], + "hot_swappable": [ + 5 + ], + "install_state": [ + 83 + ], + "installed_node_count": [ + 40 + ], + "kind": [ + 892 + ], + "name": [ + 83 + ], + "node_installs": [ + 2039, + { + "distinct_on": [ + 2059, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2057, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2048 + ] + } + ], + "node_installs_aggregate": [ + 2040, + { + "distinct_on": [ + 2059, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2057, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2048 + ] + } + ], + "pairs_with": [ + 83 + ], + "panel": [ + 2191, + { + "path": [ + 83 + ] + } + ], + "requires_service": [ + 83 + ], + "slug": [ + 83 + ], + "synced_at": [ + 4958 + ], + "tags": [ + 83 + ], + "target_node_count": [ + 40 + ], + "verified": [ + 5 + ], + "versions": [ + 1962, + { + "distinct_on": [ + 1985, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1983, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 1973 + ] + } + ], + "versions_aggregate": [ + 1963, + { + "distinct_on": [ + 1985, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1983, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 1973 + ] + } + ], + "wiring": [ + 2191, + { + "path": [ + 83 + ] + } + ], + "__typename": [ + 83 + ] + }, + "game_plugins_aggregate": { + "aggregate": [ + 2009 + ], + "nodes": [ + 2007 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_aggregate_fields": { + "avg": [ + 2011 + ], + "count": [ + 40, + { + "columns": [ + 2026, + "[game_plugins_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 2018 + ], + "min": [ + 2019 + ], + "stddev": [ + 2028 + ], + "stddev_pop": [ + 2029 + ], + "stddev_samp": [ + 2030 + ], + "sum": [ + 2033 + ], + "var_pop": [ + 2036 + ], + "var_samp": [ + 2037 + ], + "variance": [ + 2038 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_append_input": { + "config_schema": [ + 2191 + ], + "panel": [ + 2191 + ], + "wiring": [ + 2191 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_avg_fields": { + "installed_node_count": [ + 40 + ], + "target_node_count": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_bool_exp": { + "_and": [ + 2012 + ], + "_not": [ + 2012 + ], + "_or": [ + 2012 + ], + "author": [ + 85 + ], + "config_path": [ + 85 + ], + "config_schema": [ + 2193 + ], + "cvars": [ + 84 + ], + "description": [ + 85 + ], + "game_modes": [ + 1882 + ], + "game_modes_aggregate": [ + 1872 + ], + "homepage": [ + 85 + ], + "hot_swappable": [ + 6 + ], + "install_state": [ + 85 + ], + "installed_node_count": [ + 41 + ], + "kind": [ + 893 + ], + "name": [ + 85 + ], + "node_installs": [ + 2048 + ], + "node_installs_aggregate": [ + 2041 + ], + "pairs_with": [ + 84 + ], + "panel": [ + 2193 + ], + "requires_service": [ + 85 + ], + "slug": [ + 85 + ], + "synced_at": [ + 4959 + ], + "tags": [ + 84 + ], + "target_node_count": [ + 41 + ], + "verified": [ + 6 + ], + "versions": [ + 1973 + ], + "versions_aggregate": [ + 1964 + ], + "wiring": [ + 2193 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_constraint": {}, + "game_plugins_delete_at_path_input": { + "config_schema": [ + 83 + ], + "panel": [ + 83 + ], + "wiring": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_delete_elem_input": { + "config_schema": [ + 40 + ], + "panel": [ + 40 + ], + "wiring": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_delete_key_input": { + "config_schema": [ + 83 + ], + "panel": [ + 83 + ], + "wiring": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_insert_input": { + "author": [ + 83 + ], + "config_path": [ + 83 + ], + "config_schema": [ + 2191 + ], + "cvars": [ + 83 + ], + "description": [ + 83 + ], + "game_modes": [ + 1879 + ], + "homepage": [ + 83 + ], + "hot_swappable": [ + 5 + ], + "kind": [ + 892 + ], + "name": [ + 83 + ], + "node_installs": [ + 2047 + ], + "pairs_with": [ + 83 + ], + "panel": [ + 2191 + ], + "requires_service": [ + 83 + ], + "slug": [ + 83 + ], + "synced_at": [ + 4958 + ], + "tags": [ + 83 + ], + "verified": [ + 5 + ], + "versions": [ + 1970 + ], + "wiring": [ + 2191 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_max_fields": { + "author": [ + 83 + ], + "config_path": [ + 83 + ], + "cvars": [ + 83 + ], + "description": [ + 83 + ], + "homepage": [ + 83 + ], + "install_state": [ + 83 + ], + "installed_node_count": [ + 40 + ], + "name": [ + 83 + ], + "pairs_with": [ + 83 + ], + "requires_service": [ + 83 + ], + "slug": [ + 83 + ], + "synced_at": [ + 4958 + ], + "tags": [ + 83 + ], + "target_node_count": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_min_fields": { + "author": [ + 83 + ], + "config_path": [ + 83 + ], + "cvars": [ + 83 + ], + "description": [ + 83 + ], + "homepage": [ + 83 + ], + "install_state": [ + 83 + ], + "installed_node_count": [ + 40 + ], + "name": [ + 83 + ], + "pairs_with": [ + 83 + ], + "requires_service": [ + 83 + ], + "slug": [ + 83 + ], + "synced_at": [ + 4958 + ], + "tags": [ + 83 + ], + "target_node_count": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 2007 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_obj_rel_insert_input": { + "data": [ + 2017 + ], + "on_conflict": [ + 2022 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_on_conflict": { + "constraint": [ + 2013 + ], + "update_columns": [ + 2034 + ], + "where": [ + 2012 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_order_by": { + "author": [ + 3377 + ], + "config_path": [ + 3377 + ], + "config_schema": [ + 3377 + ], + "cvars": [ + 3377 + ], + "description": [ + 3377 + ], + "game_modes_aggregate": [ + 1877 + ], + "homepage": [ + 3377 + ], + "hot_swappable": [ + 3377 + ], + "install_state": [ + 3377 + ], + "installed_node_count": [ + 3377 + ], + "kind": [ + 3377 + ], + "name": [ + 3377 + ], + "node_installs_aggregate": [ + 2046 + ], + "pairs_with": [ + 3377 + ], + "panel": [ + 3377 + ], + "requires_service": [ + 3377 + ], + "slug": [ + 3377 + ], + "synced_at": [ + 3377 + ], + "tags": [ + 3377 + ], + "target_node_count": [ + 3377 + ], + "verified": [ + 3377 + ], + "versions_aggregate": [ + 1969 + ], + "wiring": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_pk_columns_input": { + "slug": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_prepend_input": { + "config_schema": [ + 2191 + ], + "panel": [ + 2191 + ], + "wiring": [ + 2191 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_select_column": {}, + "game_plugins_set_input": { + "author": [ + 83 + ], + "config_path": [ + 83 + ], + "config_schema": [ + 2191 + ], + "cvars": [ + 83 + ], + "description": [ + 83 + ], + "homepage": [ + 83 + ], + "hot_swappable": [ + 5 + ], + "kind": [ + 892 + ], + "name": [ + 83 + ], + "pairs_with": [ + 83 + ], + "panel": [ + 2191 + ], + "requires_service": [ + 83 + ], + "slug": [ + 83 + ], + "synced_at": [ + 4958 + ], + "tags": [ + 83 + ], + "verified": [ + 5 + ], + "wiring": [ + 2191 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_stddev_fields": { + "installed_node_count": [ + 40 + ], + "target_node_count": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_stddev_pop_fields": { + "installed_node_count": [ + 40 + ], + "target_node_count": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_stddev_samp_fields": { + "installed_node_count": [ + 40 + ], + "target_node_count": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_stream_cursor_input": { + "initial_value": [ + 2032 + ], + "ordering": [ + 351 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_stream_cursor_value_input": { + "author": [ + 83 + ], + "config_path": [ + 83 + ], + "config_schema": [ + 2191 + ], + "cvars": [ + 83 + ], + "description": [ + 83 + ], + "homepage": [ + 83 + ], + "hot_swappable": [ + 5 + ], + "kind": [ + 892 + ], + "name": [ + 83 + ], + "pairs_with": [ + 83 + ], + "panel": [ + 2191 + ], + "requires_service": [ + 83 + ], + "slug": [ + 83 + ], + "synced_at": [ + 4958 + ], + "tags": [ + 83 + ], + "verified": [ + 5 + ], + "wiring": [ + 2191 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_sum_fields": { + "installed_node_count": [ + 40 + ], + "target_node_count": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_update_column": {}, + "game_plugins_updates": { + "_append": [ + 2010 + ], + "_delete_at_path": [ + 2014 + ], + "_delete_elem": [ + 2015 + ], + "_delete_key": [ + 2016 + ], + "_prepend": [ + 2025 + ], + "_set": [ + 2027 + ], + "where": [ + 2012 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_var_pop_fields": { + "installed_node_count": [ + 40 + ], + "target_node_count": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_var_samp_fields": { + "installed_node_count": [ + 40 + ], + "target_node_count": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_plugins_variance_fields": { + "installed_node_count": [ + 40 + ], + "target_node_count": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins": { + "channel": [ + 852 + ], + "created_at": [ + 4958 + ], + "detected": [ + 5 + ], + "detected_version": [ + 83 + ], + "game_server_node": [ + 2067 + ], + "game_server_node_id": [ + 83 + ], + "id": [ + 5458 + ], + "installed_at": [ + 4958 + ], + "last_error": [ + 83 + ], + "plugin": [ + 2007 + ], + "plugin_slug": [ + 83 + ], + "runtime": [ + 1262 + ], + "source": [ + 83 + ], + "status": [ + 872 + ], + "updated_at": [ + 4958 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_aggregate": { + "aggregate": [ + 2045 + ], + "nodes": [ + 2039 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_aggregate_bool_exp": { + "bool_and": [ + 2042 + ], + "bool_or": [ + 2043 + ], + "count": [ + 2044 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_aggregate_bool_exp_bool_and": { + "arguments": [ + 2060 + ], + "distinct": [ + 5 + ], + "filter": [ + 2048 + ], + "predicate": [ + 6 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_aggregate_bool_exp_bool_or": { + "arguments": [ + 2061 + ], + "distinct": [ + 5 + ], + "filter": [ + 2048 + ], + "predicate": [ + 6 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_aggregate_bool_exp_count": { + "arguments": [ + 2059 + ], + "distinct": [ + 5 + ], + "filter": [ + 2048 + ], + "predicate": [ + 41 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_aggregate_fields": { + "count": [ + 40, + { + "columns": [ + 2059, + "[game_server_node_plugins_select_column!]" + ], + "distinct": [ + 5 + ] + } + ], + "max": [ + 2051 + ], + "min": [ + 2053 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_aggregate_order_by": { + "count": [ + 3377 + ], + "max": [ + 2052 + ], + "min": [ + 2054 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_arr_rel_insert_input": { + "data": [ + 2050 + ], + "on_conflict": [ + 2056 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_bool_exp": { + "_and": [ + 2048 + ], + "_not": [ + 2048 + ], + "_or": [ + 2048 + ], + "channel": [ + 853 + ], + "created_at": [ + 4959 + ], + "detected": [ + 6 + ], + "detected_version": [ + 85 + ], + "game_server_node": [ + 2079 + ], + "game_server_node_id": [ + 85 + ], + "id": [ + 5460 + ], + "installed_at": [ + 4959 + ], + "last_error": [ + 85 + ], + "plugin": [ + 2012 + ], + "plugin_slug": [ + 85 + ], + "runtime": [ + 1263 + ], + "source": [ + 85 + ], + "status": [ + 873 + ], + "updated_at": [ + 4959 + ], + "version": [ + 85 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_constraint": {}, + "game_server_node_plugins_insert_input": { + "channel": [ + 852 + ], + "created_at": [ + 4958 + ], + "detected": [ + 5 + ], + "detected_version": [ + 83 + ], + "game_server_node": [ + 2091 + ], + "game_server_node_id": [ + 83 + ], + "id": [ + 5458 + ], + "installed_at": [ + 4958 + ], + "last_error": [ + 83 + ], + "plugin": [ + 2021 + ], + "plugin_slug": [ + 83 + ], + "runtime": [ + 1262 + ], + "source": [ + 83 + ], + "status": [ + 872 + ], + "updated_at": [ + 4958 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_max_fields": { + "created_at": [ + 4958 + ], + "detected_version": [ + 83 + ], + "game_server_node_id": [ + 83 + ], + "id": [ + 5458 + ], + "installed_at": [ + 4958 + ], + "last_error": [ + 83 + ], + "plugin_slug": [ + 83 + ], + "source": [ + 83 + ], + "updated_at": [ + 4958 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_max_order_by": { + "created_at": [ + 3377 + ], + "detected_version": [ + 3377 + ], + "game_server_node_id": [ + 3377 + ], + "id": [ + 3377 + ], + "installed_at": [ + 3377 + ], + "last_error": [ + 3377 + ], + "plugin_slug": [ + 3377 + ], + "source": [ + 3377 + ], + "updated_at": [ + 3377 + ], + "version": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_min_fields": { + "created_at": [ + 4958 + ], + "detected_version": [ + 83 + ], + "game_server_node_id": [ + 83 + ], + "id": [ + 5458 + ], + "installed_at": [ + 4958 + ], + "last_error": [ + 83 + ], + "plugin_slug": [ + 83 + ], + "source": [ + 83 + ], + "updated_at": [ + 4958 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_min_order_by": { + "created_at": [ + 3377 + ], + "detected_version": [ + 3377 + ], + "game_server_node_id": [ + 3377 + ], + "id": [ + 3377 + ], + "installed_at": [ + 3377 + ], + "last_error": [ + 3377 + ], + "plugin_slug": [ + 3377 + ], + "source": [ + 3377 + ], + "updated_at": [ + 3377 + ], + "version": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_mutation_response": { + "affected_rows": [ + 40 + ], + "returning": [ + 2039 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_on_conflict": { + "constraint": [ + 2049 + ], + "update_columns": [ + 2065 + ], + "where": [ + 2048 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_order_by": { + "channel": [ + 3377 + ], + "created_at": [ + 3377 + ], + "detected": [ + 3377 + ], + "detected_version": [ + 3377 + ], + "game_server_node": [ + 2093 + ], + "game_server_node_id": [ + 3377 + ], + "id": [ + 3377 + ], + "installed_at": [ + 3377 + ], + "last_error": [ + 3377 + ], + "plugin": [ + 2023 + ], + "plugin_slug": [ + 3377 + ], + "runtime": [ + 3377 + ], + "source": [ + 3377 + ], + "status": [ + 3377 + ], + "updated_at": [ + 3377 + ], + "version": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_pk_columns_input": { + "id": [ + 5458 + ], + "__typename": [ + 83 + ] + }, + "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": [ + 852 + ], + "created_at": [ + 4958 + ], + "detected": [ + 5 + ], + "detected_version": [ + 83 + ], + "game_server_node_id": [ + 83 + ], + "id": [ + 5458 + ], + "installed_at": [ + 4958 + ], + "last_error": [ + 83 + ], + "plugin_slug": [ + 83 + ], + "runtime": [ + 1262 + ], + "source": [ + 83 + ], + "status": [ + 872 + ], + "updated_at": [ + 4958 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_stream_cursor_input": { + "initial_value": [ + 2064 + ], + "ordering": [ + 351 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_stream_cursor_value_input": { + "channel": [ + 852 + ], + "created_at": [ + 4958 + ], + "detected": [ + 5 + ], + "detected_version": [ + 83 + ], + "game_server_node_id": [ + 83 + ], + "id": [ + 5458 + ], + "installed_at": [ + 4958 + ], + "last_error": [ + 83 + ], + "plugin_slug": [ + 83 + ], + "runtime": [ + 1262 + ], + "source": [ + 83 + ], + "status": [ + 872 + ], + "updated_at": [ + 4958 + ], + "version": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "game_server_node_plugins_update_column": {}, + "game_server_node_plugins_updates": { + "_set": [ + 2062 + ], + "where": [ + 2048 + ], + "__typename": [ + 83 + ] + }, + "game_server_nodes": { + "available_server_count": [ + 40 + ], + "build_id": [ + 40 + ], + "cpu_cores_per_socket": [ + 40 + ], + "cpu_frequency_info": [ + 2191, + { + "path": [ + 83 + ] + } + ], + "cpu_governor_info": [ + 2191, + { + "path": [ + 83 + ] + } + ], + "cpu_sockets": [ + 40 + ], + "cpu_threads_per_core": [ + 40 + ], + "cpu_warnings": [ + 2191, + { + "path": [ + 83 + ] + } + ], + "cs2_launch_options": [ + 2191, + { + "path": [ + 83 + ] + } + ], + "cs2_video_settings": [ + 2191, + { + "path": [ + 83 + ] + } + ], + "csgo_build_id": [ + 40 + ], + "demo_network_limiter": [ + 40 + ], + "disk_available_gb": [ + 40 + ], + "disk_used_percent": [ + 40 + ], + "e_region": [ + 4449 ], "e_status": [ - 843 + 907 ], "enabled": [ 5 @@ -27790,10 +32495,10 @@ export default { 5 ], "gpu_info": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], @@ -27804,46 +32509,93 @@ export default { 5 ], "id": [ - 80 + 83 ], "label": [ - 80 + 83 ], "lan_ip": [ - 1926 + 2187 ], "node_ip": [ - 1926 + 2187 ], "offline_at": [ - 4670 + 4958 ], "pin_build_id": [ 40 ], "pin_plugin_runtime": [ - 80 + 83 ], "pin_plugin_version": [ - 80 + 83 ], "pinned_version": [ - 1857 + 2118 ], "plugin_supported": [ 5 ], + "plugins": [ + 2039, + { + "distinct_on": [ + 2059, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2057, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2048 + ] + } + ], + "plugins_aggregate": [ + 2040, + { + "distinct_on": [ + 2059, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2057, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2048 + ] + } + ], + "plugins_synced_at": [ + 4958 + ], "public_ip": [ - 1926 + 2187 ], "region": [ - 80 + 83 ], "servers": [ - 4193, + 4476, { "distinct_on": [ - 4217, + 4505, "[servers_select_column!]" ], "limit": [ @@ -27853,19 +32605,19 @@ export default { 40 ], "order_by": [ - 4215, + 4502, "[servers_order_by!]" ], "where": [ - 4204 + 4488 ] } ], "servers_aggregate": [ - 4194, + 4477, { "distinct_on": [ - 4217, + 4505, "[servers_select_column!]" ], "limit": [ @@ -27875,28 +32627,28 @@ export default { 40 ], "order_by": [ - 4215, + 4502, "[servers_order_by!]" ], "where": [ - 4204 + 4488 ] } ], "shader_bake_progress": [ - 3092 + 3375 ], "shader_bake_progress_stage": [ - 80 + 83 ], "shader_bake_status": [ - 80 + 83 ], "shader_bake_status_history": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], @@ -27904,7 +32656,7 @@ export default { 40 ], "status": [ - 848 + 912 ], "supports_cpu_pinning": [ 5 @@ -27913,106 +32665,106 @@ export default { 5 ], "token": [ - 80 + 83 ], "total_server_count": [ 40 ], "update_status": [ - 80 + 83 ], "version": [ - 1857 + 2118 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_aggregate": { "aggregate": [ - 1812 + 2073 ], "nodes": [ - 1806 + 2067 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 1809 + 2070 ], "bool_or": [ - 1810 + 2071 ], "count": [ - 1811 + 2072 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 1836 + 2097 ], "distinct": [ 5 ], "filter": [ - 1818 + 2079 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 1837 + 2098 ], "distinct": [ 5 ], "filter": [ - 1818 + 2079 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 1835 + 2096 ], "distinct": [ 5 ], "filter": [ - 1818 + 2079 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_aggregate_fields": { "avg": [ - 1816 + 2077 ], "count": [ 40, { "columns": [ - 1835, + 2096, "[game_server_nodes_select_column!]" ], "distinct": [ @@ -28021,109 +32773,109 @@ export default { } ], "max": [ - 1825 + 2086 ], "min": [ - 1827 + 2088 ], "stddev": [ - 1839 + 2100 ], "stddev_pop": [ - 1841 + 2102 ], "stddev_samp": [ - 1843 + 2104 ], "sum": [ - 1847 + 2108 ], "var_pop": [ - 1851 + 2112 ], "var_samp": [ - 1853 + 2114 ], "variance": [ - 1855 + 2116 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_aggregate_order_by": { "avg": [ - 1817 + 2078 ], "count": [ - 3094 + 3377 ], "max": [ - 1826 + 2087 ], "min": [ - 1828 + 2089 ], "stddev": [ - 1840 + 2101 ], "stddev_pop": [ - 1842 + 2103 ], "stddev_samp": [ - 1844 + 2105 ], "sum": [ - 1848 + 2109 ], "var_pop": [ - 1852 + 2113 ], "var_samp": [ - 1854 + 2115 ], "variance": [ - 1856 + 2117 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 1930 + 2191 ], "cpu_governor_info": [ - 1930 + 2191 ], "cpu_warnings": [ - 1930 + 2191 ], "cs2_launch_options": [ - 1930 + 2191 ], "cs2_video_settings": [ - 1930 + 2191 ], "gpu_info": [ - 1930 + 2191 ], "shader_bake_status_history": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 1824 + 2085 ], "on_conflict": [ - 1831 + 2092 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_avg_fields": { @@ -28170,59 +32922,59 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_avg_order_by": { "build_id": [ - 3094 + 3377 ], "cpu_cores_per_socket": [ - 3094 + 3377 ], "cpu_sockets": [ - 3094 + 3377 ], "cpu_threads_per_core": [ - 3094 + 3377 ], "csgo_build_id": [ - 3094 + 3377 ], "demo_network_limiter": [ - 3094 + 3377 ], "disk_available_gb": [ - 3094 + 3377 ], "disk_used_percent": [ - 3094 + 3377 ], "end_port_range": [ - 3094 + 3377 ], "pin_build_id": [ - 3094 + 3377 ], "shader_bake_progress": [ - 3094 + 3377 ], "start_port_range": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_bool_exp": { "_and": [ - 1818 + 2079 ], "_not": [ - 1818 + 2079 ], "_or": [ - 1818 + 2079 ], "available_server_count": [ 41 @@ -28234,10 +32986,10 @@ export default { 41 ], "cpu_frequency_info": [ - 1932 + 2193 ], "cpu_governor_info": [ - 1932 + 2193 ], "cpu_sockets": [ 41 @@ -28246,13 +32998,13 @@ export default { 41 ], "cpu_warnings": [ - 1932 + 2193 ], "cs2_launch_options": [ - 1932 + 2193 ], "cs2_video_settings": [ - 1932 + 2193 ], "csgo_build_id": [ 41 @@ -28267,10 +33019,10 @@ export default { 41 ], "e_region": [ - 4170 + 4453 ], "e_status": [ - 846 + 910 ], "enabled": [ 6 @@ -28288,7 +33040,7 @@ export default { 6 ], "gpu_info": [ - 1932 + 2193 ], "gpu_rendering_enabled": [ 6 @@ -28297,64 +33049,73 @@ export default { 6 ], "id": [ - 82 + 85 ], "label": [ - 82 + 85 ], "lan_ip": [ - 1927 + 2188 ], "node_ip": [ - 1927 + 2188 ], "offline_at": [ - 4671 + 4959 ], "pin_build_id": [ 41 ], "pin_plugin_runtime": [ - 82 + 85 ], "pin_plugin_version": [ - 82 + 85 ], "pinned_version": [ - 1862 + 2123 ], "plugin_supported": [ 6 ], + "plugins": [ + 2048 + ], + "plugins_aggregate": [ + 2041 + ], + "plugins_synced_at": [ + 4959 + ], "public_ip": [ - 1927 + 2188 ], "region": [ - 82 + 85 ], "servers": [ - 4204 + 4488 ], "servers_aggregate": [ - 4195 + 4478 ], "shader_bake_progress": [ - 3093 + 3376 ], "shader_bake_progress_stage": [ - 82 + 85 ], "shader_bake_status": [ - 82 + 85 ], "shader_bake_status_history": [ - 1932 + 2193 ], "start_port_range": [ 41 ], "status": [ - 849 + 913 ], "supports_cpu_pinning": [ 6 @@ -28363,46 +33124,46 @@ export default { 6 ], "token": [ - 82 + 85 ], "total_server_count": [ 41 ], "update_status": [ - 82 + 85 ], "version": [ - 1862 + 2123 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_constraint": {}, "game_server_nodes_delete_at_path_input": { "cpu_frequency_info": [ - 80 + 83 ], "cpu_governor_info": [ - 80 + 83 ], "cpu_warnings": [ - 80 + 83 ], "cs2_launch_options": [ - 80 + 83 ], "cs2_video_settings": [ - 80 + 83 ], "gpu_info": [ - 80 + 83 ], "shader_bake_status_history": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_delete_elem_input": { @@ -28428,33 +33189,33 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_delete_key_input": { "cpu_frequency_info": [ - 80 + 83 ], "cpu_governor_info": [ - 80 + 83 ], "cpu_warnings": [ - 80 + 83 ], "cs2_launch_options": [ - 80 + 83 ], "cs2_video_settings": [ - 80 + 83 ], "gpu_info": [ - 80 + 83 ], "shader_bake_status_history": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_inc_input": { @@ -28489,13 +33250,13 @@ export default { 40 ], "shader_bake_progress": [ - 3092 + 3375 ], "start_port_range": [ 40 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_insert_input": { @@ -28506,10 +33267,10 @@ export default { 40 ], "cpu_frequency_info": [ - 1930 + 2191 ], "cpu_governor_info": [ - 1930 + 2191 ], "cpu_sockets": [ 40 @@ -28518,13 +33279,13 @@ export default { 40 ], "cpu_warnings": [ - 1930 + 2191 ], "cs2_launch_options": [ - 1930 + 2191 ], "cs2_video_settings": [ - 1930 + 2191 ], "csgo_build_id": [ 40 @@ -28539,10 +33300,10 @@ export default { 40 ], "e_region": [ - 4176 + 4459 ], "e_status": [ - 854 + 918 ], "enabled": [ 5 @@ -28560,7 +33321,7 @@ export default { 5 ], "gpu_info": [ - 1930 + 2191 ], "gpu_rendering_enabled": [ 5 @@ -28569,58 +33330,64 @@ export default { 5 ], "id": [ - 80 + 83 ], "label": [ - 80 + 83 ], "lan_ip": [ - 1926 + 2187 ], "node_ip": [ - 1926 + 2187 ], "offline_at": [ - 4670 + 4958 ], "pin_build_id": [ 40 ], "pin_plugin_runtime": [ - 80 + 83 ], "pin_plugin_version": [ - 80 + 83 ], "pinned_version": [ - 1872 + 2133 + ], + "plugins": [ + 2047 + ], + "plugins_synced_at": [ + 4958 ], "public_ip": [ - 1926 + 2187 ], "region": [ - 80 + 83 ], "servers": [ - 4201 + 4485 ], "shader_bake_progress": [ - 3092 + 3375 ], "shader_bake_progress_stage": [ - 80 + 83 ], "shader_bake_status": [ - 80 + 83 ], "shader_bake_status_history": [ - 1930 + 2191 ], "start_port_range": [ 40 ], "status": [ - 848 + 912 ], "supports_cpu_pinning": [ 5 @@ -28629,16 +33396,16 @@ export default { 5 ], "token": [ - 80 + 83 ], "update_status": [ - 80 + 83 ], "version": [ - 1872 + 2133 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_max_fields": { @@ -28673,120 +33440,126 @@ export default { 40 ], "id": [ - 80 + 83 ], "label": [ - 80 + 83 ], "offline_at": [ - 4670 + 4958 ], "pin_build_id": [ 40 ], "pin_plugin_runtime": [ - 80 + 83 ], "pin_plugin_version": [ - 80 + 83 + ], + "plugins_synced_at": [ + 4958 ], "region": [ - 80 + 83 ], "shader_bake_progress": [ - 3092 + 3375 ], "shader_bake_progress_stage": [ - 80 + 83 ], "shader_bake_status": [ - 80 + 83 ], "start_port_range": [ 40 ], "token": [ - 80 + 83 ], "total_server_count": [ 40 ], "update_status": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_max_order_by": { "build_id": [ - 3094 + 3377 ], "cpu_cores_per_socket": [ - 3094 + 3377 ], "cpu_sockets": [ - 3094 + 3377 ], "cpu_threads_per_core": [ - 3094 + 3377 ], "csgo_build_id": [ - 3094 + 3377 ], "demo_network_limiter": [ - 3094 + 3377 ], "disk_available_gb": [ - 3094 + 3377 ], "disk_used_percent": [ - 3094 + 3377 ], "end_port_range": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "offline_at": [ - 3094 + 3377 ], "pin_build_id": [ - 3094 + 3377 ], "pin_plugin_runtime": [ - 3094 + 3377 ], "pin_plugin_version": [ - 3094 + 3377 + ], + "plugins_synced_at": [ + 3377 ], "region": [ - 3094 + 3377 ], "shader_bake_progress": [ - 3094 + 3377 ], "shader_bake_progress_stage": [ - 3094 + 3377 ], "shader_bake_status": [ - 3094 + 3377 ], "start_port_range": [ - 3094 + 3377 ], "token": [ - 3094 + 3377 ], "update_status": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_min_fields": { @@ -28821,120 +33594,126 @@ export default { 40 ], "id": [ - 80 + 83 ], "label": [ - 80 + 83 ], "offline_at": [ - 4670 + 4958 ], "pin_build_id": [ 40 ], "pin_plugin_runtime": [ - 80 + 83 ], "pin_plugin_version": [ - 80 + 83 + ], + "plugins_synced_at": [ + 4958 ], "region": [ - 80 + 83 ], "shader_bake_progress": [ - 3092 + 3375 ], "shader_bake_progress_stage": [ - 80 + 83 ], "shader_bake_status": [ - 80 + 83 ], "start_port_range": [ 40 ], "token": [ - 80 + 83 ], "total_server_count": [ 40 ], "update_status": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_min_order_by": { "build_id": [ - 3094 + 3377 ], "cpu_cores_per_socket": [ - 3094 + 3377 ], "cpu_sockets": [ - 3094 + 3377 ], "cpu_threads_per_core": [ - 3094 + 3377 ], "csgo_build_id": [ - 3094 + 3377 ], "demo_network_limiter": [ - 3094 + 3377 ], "disk_available_gb": [ - 3094 + 3377 ], "disk_used_percent": [ - 3094 + 3377 ], "end_port_range": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "offline_at": [ - 3094 + 3377 ], "pin_build_id": [ - 3094 + 3377 ], "pin_plugin_runtime": [ - 3094 + 3377 ], "pin_plugin_version": [ - 3094 + 3377 + ], + "plugins_synced_at": [ + 3377 ], "region": [ - 3094 + 3377 ], "shader_bake_progress": [ - 3094 + 3377 ], "shader_bake_progress_stage": [ - 3094 + 3377 ], "shader_bake_status": [ - 3094 + 3377 ], "start_port_range": [ - 3094 + 3377 ], "token": [ - 3094 + 3377 ], "update_status": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_mutation_response": { @@ -28942,221 +33721,227 @@ export default { 40 ], "returning": [ - 1806 + 2067 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1824 + 2085 ], "on_conflict": [ - 1831 + 2092 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_on_conflict": { "constraint": [ - 1819 + 2080 ], "update_columns": [ - 1849 + 2110 ], "where": [ - 1818 + 2079 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_order_by": { "available_server_count": [ - 3094 + 3377 ], "build_id": [ - 3094 + 3377 ], "cpu_cores_per_socket": [ - 3094 + 3377 ], "cpu_frequency_info": [ - 3094 + 3377 ], "cpu_governor_info": [ - 3094 + 3377 ], "cpu_sockets": [ - 3094 + 3377 ], "cpu_threads_per_core": [ - 3094 + 3377 ], "cpu_warnings": [ - 3094 + 3377 ], "cs2_launch_options": [ - 3094 + 3377 ], "cs2_video_settings": [ - 3094 + 3377 ], "csgo_build_id": [ - 3094 + 3377 ], "demo_network_limiter": [ - 3094 + 3377 ], "disk_available_gb": [ - 3094 + 3377 ], "disk_used_percent": [ - 3094 + 3377 ], "e_region": [ - 4178 + 4461 ], "e_status": [ - 856 + 920 ], "enabled": [ - 3094 + 3377 ], "enabled_for_match_making": [ - 3094 + 3377 ], "end_port_range": [ - 3094 + 3377 ], "gpu": [ - 3094 + 3377 ], "gpu_demos_enabled": [ - 3094 + 3377 ], "gpu_info": [ - 3094 + 3377 ], "gpu_rendering_enabled": [ - 3094 + 3377 ], "gpu_streaming_enabled": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "lan_ip": [ - 3094 + 3377 ], "node_ip": [ - 3094 + 3377 ], "offline_at": [ - 3094 + 3377 ], "pin_build_id": [ - 3094 + 3377 ], "pin_plugin_runtime": [ - 3094 + 3377 ], "pin_plugin_version": [ - 3094 + 3377 ], "pinned_version": [ - 1874 + 2135 ], "plugin_supported": [ - 3094 + 3377 + ], + "plugins_aggregate": [ + 2046 + ], + "plugins_synced_at": [ + 3377 ], "public_ip": [ - 3094 + 3377 ], "region": [ - 3094 + 3377 ], "servers_aggregate": [ - 4200 + 4483 ], "shader_bake_progress": [ - 3094 + 3377 ], "shader_bake_progress_stage": [ - 3094 + 3377 ], "shader_bake_status": [ - 3094 + 3377 ], "shader_bake_status_history": [ - 3094 + 3377 ], "start_port_range": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "supports_cpu_pinning": [ - 3094 + 3377 ], "supports_low_latency": [ - 3094 + 3377 ], "token": [ - 3094 + 3377 ], "total_server_count": [ - 3094 + 3377 ], "update_status": [ - 3094 + 3377 ], "version": [ - 1874 + 2135 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_pk_columns_input": { "id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1930 + 2191 ], "cpu_governor_info": [ - 1930 + 2191 ], "cpu_warnings": [ - 1930 + 2191 ], "cs2_launch_options": [ - 1930 + 2191 ], "cs2_video_settings": [ - 1930 + 2191 ], "gpu_info": [ - 1930 + 2191 ], "shader_bake_status_history": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_select_column": {}, @@ -29170,10 +33955,10 @@ export default { 40 ], "cpu_frequency_info": [ - 1930 + 2191 ], "cpu_governor_info": [ - 1930 + 2191 ], "cpu_sockets": [ 40 @@ -29182,13 +33967,13 @@ export default { 40 ], "cpu_warnings": [ - 1930 + 2191 ], "cs2_launch_options": [ - 1930 + 2191 ], "cs2_video_settings": [ - 1930 + 2191 ], "csgo_build_id": [ 40 @@ -29218,7 +34003,7 @@ export default { 5 ], "gpu_info": [ - 1930 + 2191 ], "gpu_rendering_enabled": [ 5 @@ -29227,52 +34012,55 @@ export default { 5 ], "id": [ - 80 + 83 ], "label": [ - 80 + 83 ], "lan_ip": [ - 1926 + 2187 ], "node_ip": [ - 1926 + 2187 ], "offline_at": [ - 4670 + 4958 ], "pin_build_id": [ 40 ], "pin_plugin_runtime": [ - 80 + 83 ], "pin_plugin_version": [ - 80 + 83 + ], + "plugins_synced_at": [ + 4958 ], "public_ip": [ - 1926 + 2187 ], "region": [ - 80 + 83 ], "shader_bake_progress": [ - 3092 + 3375 ], "shader_bake_progress_stage": [ - 80 + 83 ], "shader_bake_status": [ - 80 + 83 ], "shader_bake_status_history": [ - 1930 + 2191 ], "start_port_range": [ 40 ], "status": [ - 848 + 912 ], "supports_cpu_pinning": [ 5 @@ -29281,13 +34069,13 @@ export default { 5 ], "token": [ - 80 + 83 ], "update_status": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_stddev_fields": { @@ -29334,48 +34122,48 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_stddev_order_by": { "build_id": [ - 3094 + 3377 ], "cpu_cores_per_socket": [ - 3094 + 3377 ], "cpu_sockets": [ - 3094 + 3377 ], "cpu_threads_per_core": [ - 3094 + 3377 ], "csgo_build_id": [ - 3094 + 3377 ], "demo_network_limiter": [ - 3094 + 3377 ], "disk_available_gb": [ - 3094 + 3377 ], "disk_used_percent": [ - 3094 + 3377 ], "end_port_range": [ - 3094 + 3377 ], "pin_build_id": [ - 3094 + 3377 ], "shader_bake_progress": [ - 3094 + 3377 ], "start_port_range": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_stddev_pop_fields": { @@ -29422,48 +34210,48 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 3094 + 3377 ], "cpu_cores_per_socket": [ - 3094 + 3377 ], "cpu_sockets": [ - 3094 + 3377 ], "cpu_threads_per_core": [ - 3094 + 3377 ], "csgo_build_id": [ - 3094 + 3377 ], "demo_network_limiter": [ - 3094 + 3377 ], "disk_available_gb": [ - 3094 + 3377 ], "disk_used_percent": [ - 3094 + 3377 ], "end_port_range": [ - 3094 + 3377 ], "pin_build_id": [ - 3094 + 3377 ], "shader_bake_progress": [ - 3094 + 3377 ], "start_port_range": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_stddev_samp_fields": { @@ -29510,59 +34298,59 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 3094 + 3377 ], "cpu_cores_per_socket": [ - 3094 + 3377 ], "cpu_sockets": [ - 3094 + 3377 ], "cpu_threads_per_core": [ - 3094 + 3377 ], "csgo_build_id": [ - 3094 + 3377 ], "demo_network_limiter": [ - 3094 + 3377 ], "disk_available_gb": [ - 3094 + 3377 ], "disk_used_percent": [ - 3094 + 3377 ], "end_port_range": [ - 3094 + 3377 ], "pin_build_id": [ - 3094 + 3377 ], "shader_bake_progress": [ - 3094 + 3377 ], "start_port_range": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1846 + 2107 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_stream_cursor_value_input": { @@ -29573,10 +34361,10 @@ export default { 40 ], "cpu_frequency_info": [ - 1930 + 2191 ], "cpu_governor_info": [ - 1930 + 2191 ], "cpu_sockets": [ 40 @@ -29585,13 +34373,13 @@ export default { 40 ], "cpu_warnings": [ - 1930 + 2191 ], "cs2_launch_options": [ - 1930 + 2191 ], "cs2_video_settings": [ - 1930 + 2191 ], "csgo_build_id": [ 40 @@ -29621,7 +34409,7 @@ export default { 5 ], "gpu_info": [ - 1930 + 2191 ], "gpu_rendering_enabled": [ 5 @@ -29630,52 +34418,55 @@ export default { 5 ], "id": [ - 80 + 83 ], "label": [ - 80 + 83 ], "lan_ip": [ - 1926 + 2187 ], "node_ip": [ - 1926 + 2187 ], "offline_at": [ - 4670 + 4958 ], "pin_build_id": [ 40 ], "pin_plugin_runtime": [ - 80 + 83 ], "pin_plugin_version": [ - 80 + 83 + ], + "plugins_synced_at": [ + 4958 ], "public_ip": [ - 1926 + 2187 ], "region": [ - 80 + 83 ], "shader_bake_progress": [ - 3092 + 3375 ], "shader_bake_progress_stage": [ - 80 + 83 ], "shader_bake_status": [ - 80 + 83 ], "shader_bake_status_history": [ - 1930 + 2191 ], "start_port_range": [ 40 ], "status": [ - 848 + 912 ], "supports_cpu_pinning": [ 5 @@ -29684,13 +34475,13 @@ export default { 5 ], "token": [ - 80 + 83 ], "update_status": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_sum_fields": { @@ -29728,7 +34519,7 @@ export default { 40 ], "shader_bake_progress": [ - 3092 + 3375 ], "start_port_range": [ 40 @@ -29737,78 +34528,78 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_sum_order_by": { "build_id": [ - 3094 + 3377 ], "cpu_cores_per_socket": [ - 3094 + 3377 ], "cpu_sockets": [ - 3094 + 3377 ], "cpu_threads_per_core": [ - 3094 + 3377 ], "csgo_build_id": [ - 3094 + 3377 ], "demo_network_limiter": [ - 3094 + 3377 ], "disk_available_gb": [ - 3094 + 3377 ], "disk_used_percent": [ - 3094 + 3377 ], "end_port_range": [ - 3094 + 3377 ], "pin_build_id": [ - 3094 + 3377 ], "shader_bake_progress": [ - 3094 + 3377 ], "start_port_range": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1814 + 2075 ], "_delete_at_path": [ - 1820 + 2081 ], "_delete_elem": [ - 1821 + 2082 ], "_delete_key": [ - 1822 + 2083 ], "_inc": [ - 1823 + 2084 ], "_prepend": [ - 1834 + 2095 ], "_set": [ - 1838 + 2099 ], "where": [ - 1818 + 2079 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_var_pop_fields": { @@ -29855,48 +34646,48 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 3094 + 3377 ], "cpu_cores_per_socket": [ - 3094 + 3377 ], "cpu_sockets": [ - 3094 + 3377 ], "cpu_threads_per_core": [ - 3094 + 3377 ], "csgo_build_id": [ - 3094 + 3377 ], "demo_network_limiter": [ - 3094 + 3377 ], "disk_available_gb": [ - 3094 + 3377 ], "disk_used_percent": [ - 3094 + 3377 ], "end_port_range": [ - 3094 + 3377 ], "pin_build_id": [ - 3094 + 3377 ], "shader_bake_progress": [ - 3094 + 3377 ], "start_port_range": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_var_samp_fields": { @@ -29943,48 +34734,48 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 3094 + 3377 ], "cpu_cores_per_socket": [ - 3094 + 3377 ], "cpu_sockets": [ - 3094 + 3377 ], "cpu_threads_per_core": [ - 3094 + 3377 ], "csgo_build_id": [ - 3094 + 3377 ], "demo_network_limiter": [ - 3094 + 3377 ], "disk_available_gb": [ - 3094 + 3377 ], "disk_used_percent": [ - 3094 + 3377 ], "end_port_range": [ - 3094 + 3377 ], "pin_build_id": [ - 3094 + 3377 ], "shader_bake_progress": [ - 3094 + 3377 ], "start_port_range": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_variance_fields": { @@ -30031,48 +34822,48 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "game_server_nodes_variance_order_by": { "build_id": [ - 3094 + 3377 ], "cpu_cores_per_socket": [ - 3094 + 3377 ], "cpu_sockets": [ - 3094 + 3377 ], "cpu_threads_per_core": [ - 3094 + 3377 ], "csgo_build_id": [ - 3094 + 3377 ], "demo_network_limiter": [ - 3094 + 3377 ], "disk_available_gb": [ - 3094 + 3377 ], "disk_used_percent": [ - 3094 + 3377 ], "end_port_range": [ - 3094 + 3377 ], "pin_build_id": [ - 3094 + 3377 ], "shader_bake_progress": [ - 3094 + 3377 ], "start_port_range": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "game_versions": { @@ -30086,46 +34877,46 @@ export default { 5 ], "description": [ - 80 + 83 ], "downloads": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "updated_at": [ - 4670 + 4958 ], "version": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_versions_aggregate": { "aggregate": [ - 1859 + 2120 ], "nodes": [ - 1857 + 2118 ], "__typename": [ - 80 + 83 ] }, "game_versions_aggregate_fields": { "avg": [ - 1861 + 2122 ], "count": [ 40, { "columns": [ - 1877, + 2138, "[game_versions_select_column!]" ], "distinct": [ @@ -30134,42 +34925,42 @@ export default { } ], "max": [ - 1869 + 2130 ], "min": [ - 1870 + 2131 ], "stddev": [ - 1879 + 2140 ], "stddev_pop": [ - 1880 + 2141 ], "stddev_samp": [ - 1881 + 2142 ], "sum": [ - 1884 + 2145 ], "var_pop": [ - 1887 + 2148 ], "var_samp": [ - 1888 + 2149 ], "variance": [ - 1889 + 2150 ], "__typename": [ - 80 + 83 ] }, "game_versions_append_input": { "downloads": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "game_versions_avg_fields": { @@ -30177,18 +34968,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "game_versions_bool_exp": { "_and": [ - 1862 + 2123 ], "_not": [ - 1862 + 2123 ], "_or": [ - 1862 + 2123 ], "build_id": [ 41 @@ -30200,28 +34991,28 @@ export default { 6 ], "description": [ - 82 + 85 ], "downloads": [ - 1932 + 2193 ], "updated_at": [ - 4671 + 4959 ], "version": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "game_versions_constraint": {}, "game_versions_delete_at_path_input": { "downloads": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_versions_delete_elem_input": { @@ -30229,15 +35020,15 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "game_versions_delete_key_input": { "downloads": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_versions_inc_input": { @@ -30245,7 +35036,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "game_versions_insert_input": { @@ -30259,19 +35050,19 @@ export default { 5 ], "description": [ - 80 + 83 ], "downloads": [ - 1930 + 2191 ], "updated_at": [ - 4670 + 4958 ], "version": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_versions_max_fields": { @@ -30279,16 +35070,16 @@ export default { 40 ], "description": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "version": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_versions_min_fields": { @@ -30296,16 +35087,16 @@ export default { 40 ], "description": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "version": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_versions_mutation_response": { @@ -30313,61 +35104,61 @@ export default { 40 ], "returning": [ - 1857 + 2118 ], "__typename": [ - 80 + 83 ] }, "game_versions_obj_rel_insert_input": { "data": [ - 1868 + 2129 ], "on_conflict": [ - 1873 + 2134 ], "__typename": [ - 80 + 83 ] }, "game_versions_on_conflict": { "constraint": [ - 1863 + 2124 ], "update_columns": [ - 1885 + 2146 ], "where": [ - 1862 + 2123 ], "__typename": [ - 80 + 83 ] }, "game_versions_order_by": { "build_id": [ - 3094 + 3377 ], "current": [ - 3094 + 3377 ], "cvars": [ - 3094 + 3377 ], "description": [ - 3094 + 3377 ], "downloads": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "version": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "game_versions_pk_columns_input": { @@ -30375,15 +35166,15 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "game_versions_prepend_input": { "downloads": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "game_versions_select_column": {}, @@ -30398,19 +35189,19 @@ export default { 5 ], "description": [ - 80 + 83 ], "downloads": [ - 1930 + 2191 ], "updated_at": [ - 4670 + 4958 ], "version": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_versions_stddev_fields": { @@ -30418,7 +35209,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "game_versions_stddev_pop_fields": { @@ -30426,7 +35217,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "game_versions_stddev_samp_fields": { @@ -30434,18 +35225,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "game_versions_stream_cursor_input": { "initial_value": [ - 1883 + 2144 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "game_versions_stream_cursor_value_input": { @@ -30459,19 +35250,19 @@ export default { 5 ], "description": [ - 80 + 83 ], "downloads": [ - 1930 + 2191 ], "updated_at": [ - 4670 + 4958 ], "version": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "game_versions_sum_fields": { @@ -30479,37 +35270,37 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1860 + 2121 ], "_delete_at_path": [ - 1864 + 2125 ], "_delete_elem": [ - 1865 + 2126 ], "_delete_key": [ - 1866 + 2127 ], "_inc": [ - 1867 + 2128 ], "_prepend": [ - 1876 + 2137 ], "_set": [ - 1878 + 2139 ], "where": [ - 1862 + 2123 ], "__typename": [ - 80 + 83 ] }, "game_versions_var_pop_fields": { @@ -30517,7 +35308,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "game_versions_var_samp_fields": { @@ -30525,7 +35316,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "game_versions_variance_fields": { @@ -30533,60 +35324,60 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations": { "branch": [ - 80 + 83 ], "build_id": [ 40 ], "game_version": [ - 1857 + 2118 ], "id": [ - 5170 + 5458 ], "results": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "status": [ - 80 + 83 ], "validated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1892 + 2153 ], "nodes": [ - 1890 + 2151 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1894 + 2155 ], "count": [ 40, { "columns": [ - 1909, + 2170, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -30595,42 +35386,42 @@ export default { } ], "max": [ - 1902 + 2163 ], "min": [ - 1903 + 2164 ], "stddev": [ - 1911 + 2172 ], "stddev_pop": [ - 1912 + 2173 ], "stddev_samp": [ - 1913 + 2174 ], "sum": [ - 1916 + 2177 ], "var_pop": [ - 1919 + 2180 ], "var_samp": [ - 1920 + 2181 ], "variance": [ - 1921 + 2182 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_append_input": { "results": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_avg_fields": { @@ -30638,51 +35429,51 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1895 + 2156 ], "_not": [ - 1895 + 2156 ], "_or": [ - 1895 + 2156 ], "branch": [ - 82 + 85 ], "build_id": [ 41 ], "game_version": [ - 1862 + 2123 ], "id": [ - 5172 + 5460 ], "results": [ - 1932 + 2193 ], "status": [ - 82 + 85 ], "validated_at": [ - 4671 + 4959 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_constraint": {}, "gamedata_signature_validations_delete_at_path_input": { "results": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_delete_elem_input": { @@ -30690,15 +35481,15 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_delete_key_input": { "results": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_inc_input": { @@ -30706,73 +35497,73 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_insert_input": { "branch": [ - 80 + 83 ], "build_id": [ 40 ], "game_version": [ - 1872 + 2133 ], "id": [ - 5170 + 5458 ], "results": [ - 1930 + 2191 ], "status": [ - 80 + 83 ], "validated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_max_fields": { "branch": [ - 80 + 83 ], "build_id": [ 40 ], "id": [ - 5170 + 5458 ], "status": [ - 80 + 83 ], "validated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_min_fields": { "branch": [ - 80 + 83 ], "build_id": [ 40 ], "id": [ - 5170 + 5458 ], "status": [ - 80 + 83 ], "validated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_mutation_response": { @@ -30780,90 +35571,90 @@ export default { 40 ], "returning": [ - 1890 + 2151 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1896 + 2157 ], "update_columns": [ - 1917 + 2178 ], "where": [ - 1895 + 2156 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_order_by": { "branch": [ - 3094 + 3377 ], "build_id": [ - 3094 + 3377 ], "game_version": [ - 1874 + 2135 ], "id": [ - 3094 + 3377 ], "results": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "validated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_prepend_input": { "results": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_select_column": {}, "gamedata_signature_validations_set_input": { "branch": [ - 80 + 83 ], "build_id": [ 40 ], "id": [ - 5170 + 5458 ], "results": [ - 1930 + 2191 ], "status": [ - 80 + 83 ], "validated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_stddev_fields": { @@ -30871,7 +35662,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_stddev_pop_fields": { @@ -30879,7 +35670,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_stddev_samp_fields": { @@ -30887,41 +35678,41 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1915 + 2176 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_stream_cursor_value_input": { "branch": [ - 80 + 83 ], "build_id": [ 40 ], "id": [ - 5170 + 5458 ], "results": [ - 1930 + 2191 ], "status": [ - 80 + 83 ], "validated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_sum_fields": { @@ -30929,37 +35720,37 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1893 + 2154 ], "_delete_at_path": [ - 1897 + 2158 ], "_delete_elem": [ - 1898 + 2159 ], "_delete_key": [ - 1899 + 2160 ], "_inc": [ - 1900 + 2161 ], "_prepend": [ - 1908 + 2169 ], "_set": [ - 1910 + 2171 ], "where": [ - 1895 + 2156 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_var_pop_fields": { @@ -30967,7 +35758,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_var_samp_fields": { @@ -30975,7 +35766,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "gamedata_signature_validations_variance_fields": { @@ -30983,215 +35774,215 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "get_event_leaderboard_args": { "_category": [ - 80 + 83 ], "_event_id": [ - 5170 + 5458 ], "_match_type": [ - 80 + 83 ], "_min_rounds": [ 40 ], "__typename": [ - 80 + 83 ] }, "get_leaderboard_args": { "_category": [ - 80 + 83 ], "_exclude_tournaments": [ 5 ], "_match_type": [ - 80 + 83 ], "_role": [ - 80 + 83 ], "_season_id": [ - 5170 + 5458 ], "_source": [ - 80 + 83 ], "_window_days": [ 40 ], "__typename": [ - 80 + 83 ] }, "get_league_season_leaderboard_args": { "_category": [ - 80 + 83 ], "_league_season_id": [ - 5170 + 5458 ], "_role": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "get_player_leaderboard_rank_args": { "_category": [ - 80 + 83 ], "_exclude_tournaments": [ 5 ], "_match_type": [ - 80 + 83 ], "_player_steam_id": [ - 80 + 83 ], "_season_id": [ - 5170 + 5458 ], "_source": [ - 80 + 83 ], "_window_days": [ 40 ], "__typename": [ - 80 + 83 ] }, "inet": {}, "inet_comparison_exp": { "_eq": [ - 1926 + 2187 ], "_gt": [ - 1926 + 2187 ], "_gte": [ - 1926 + 2187 ], "_in": [ - 1926 + 2187 ], "_is_null": [ 5 ], "_lt": [ - 1926 + 2187 ], "_lte": [ - 1926 + 2187 ], "_neq": [ - 1926 + 2187 ], "_nin": [ - 1926 + 2187 ], "__typename": [ - 80 + 83 ] }, "json": {}, "json_comparison_exp": { "_eq": [ - 1928 + 2189 ], "_gt": [ - 1928 + 2189 ], "_gte": [ - 1928 + 2189 ], "_in": [ - 1928 + 2189 ], "_is_null": [ 5 ], "_lt": [ - 1928 + 2189 ], "_lte": [ - 1928 + 2189 ], "_neq": [ - 1928 + 2189 ], "_nin": [ - 1928 + 2189 ], "__typename": [ - 80 + 83 ] }, "jsonb": {}, "jsonb_cast_exp": { "String": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "jsonb_comparison_exp": { "_cast": [ - 1931 + 2192 ], "_contained_in": [ - 1930 + 2191 ], "_contains": [ - 1930 + 2191 ], "_eq": [ - 1930 + 2191 ], "_gt": [ - 1930 + 2191 ], "_gte": [ - 1930 + 2191 ], "_has_key": [ - 80 + 83 ], "_has_keys_all": [ - 80 + 83 ], "_has_keys_any": [ - 80 + 83 ], "_in": [ - 1930 + 2191 ], "_is_null": [ 5 ], "_lt": [ - 1930 + 2191 ], "_lte": [ - 1930 + 2191 ], "_neq": [ - 1930 + 2191 ], "_nin": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries": { @@ -31199,53 +35990,53 @@ export default { 40 ], "player_avatar_url": [ - 80 + 83 ], "player_country": [ - 80 + 83 ], "player_custom_avatar_url": [ - 80 + 83 ], "player_name": [ - 80 + 83 ], "player_steam_id": [ - 80 + 83 ], "secondary_value": [ - 1777 + 1841 ], "tertiary_value": [ - 1777 + 1841 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_aggregate": { "aggregate": [ - 1935 + 2196 ], "nodes": [ - 1933 + 2194 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1936 + 2197 ], "count": [ 40, { "columns": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -31254,34 +36045,34 @@ export default { } ], "max": [ - 1940 + 2201 ], "min": [ - 1941 + 2202 ], "stddev": [ - 1946 + 2207 ], "stddev_pop": [ - 1947 + 2208 ], "stddev_samp": [ - 1948 + 2209 ], "sum": [ - 1951 + 2212 ], "var_pop": [ - 1953 + 2214 ], "var_samp": [ - 1954 + 2215 ], "variance": [ - 1955 + 2216 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_avg_fields": { @@ -31298,48 +36089,48 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_bool_exp": { "_and": [ - 1937 + 2198 ], "_not": [ - 1937 + 2198 ], "_or": [ - 1937 + 2198 ], "matches_played": [ 41 ], "player_avatar_url": [ - 82 + 85 ], "player_country": [ - 82 + 85 ], "player_custom_avatar_url": [ - 82 + 85 ], "player_name": [ - 82 + 85 ], "player_steam_id": [ - 82 + 85 ], "secondary_value": [ - 1778 + 1842 ], "tertiary_value": [ - 1778 + 1842 ], "value": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_inc_input": { @@ -31347,16 +36138,16 @@ export default { 40 ], "secondary_value": [ - 1777 + 1841 ], "tertiary_value": [ - 1777 + 1841 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_insert_input": { @@ -31364,31 +36155,31 @@ export default { 40 ], "player_avatar_url": [ - 80 + 83 ], "player_country": [ - 80 + 83 ], "player_custom_avatar_url": [ - 80 + 83 ], "player_name": [ - 80 + 83 ], "player_steam_id": [ - 80 + 83 ], "secondary_value": [ - 1777 + 1841 ], "tertiary_value": [ - 1777 + 1841 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_max_fields": { @@ -31396,31 +36187,31 @@ export default { 40 ], "player_avatar_url": [ - 80 + 83 ], "player_country": [ - 80 + 83 ], "player_custom_avatar_url": [ - 80 + 83 ], "player_name": [ - 80 + 83 ], "player_steam_id": [ - 80 + 83 ], "secondary_value": [ - 1777 + 1841 ], "tertiary_value": [ - 1777 + 1841 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_min_fields": { @@ -31428,31 +36219,31 @@ export default { 40 ], "player_avatar_url": [ - 80 + 83 ], "player_country": [ - 80 + 83 ], "player_custom_avatar_url": [ - 80 + 83 ], "player_name": [ - 80 + 83 ], "player_steam_id": [ - 80 + 83 ], "secondary_value": [ - 1777 + 1841 ], "tertiary_value": [ - 1777 + 1841 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_mutation_response": { @@ -31460,42 +36251,42 @@ export default { 40 ], "returning": [ - 1933 + 2194 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_order_by": { "matches_played": [ - 3094 + 3377 ], "player_avatar_url": [ - 3094 + 3377 ], "player_country": [ - 3094 + 3377 ], "player_custom_avatar_url": [ - 3094 + 3377 ], "player_name": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "secondary_value": [ - 3094 + 3377 ], "tertiary_value": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_select_column": {}, @@ -31504,31 +36295,31 @@ export default { 40 ], "player_avatar_url": [ - 80 + 83 ], "player_country": [ - 80 + 83 ], "player_custom_avatar_url": [ - 80 + 83 ], "player_name": [ - 80 + 83 ], "player_steam_id": [ - 80 + 83 ], "secondary_value": [ - 1777 + 1841 ], "tertiary_value": [ - 1777 + 1841 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_stddev_fields": { @@ -31545,7 +36336,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_stddev_pop_fields": { @@ -31562,7 +36353,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_stddev_samp_fields": { @@ -31579,18 +36370,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1950 + 2211 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_stream_cursor_value_input": { @@ -31598,31 +36389,31 @@ export default { 40 ], "player_avatar_url": [ - 80 + 83 ], "player_country": [ - 80 + 83 ], "player_custom_avatar_url": [ - 80 + 83 ], "player_name": [ - 80 + 83 ], "player_steam_id": [ - 80 + 83 ], "secondary_value": [ - 1777 + 1841 ], "tertiary_value": [ - 1777 + 1841 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_sum_fields": { @@ -31630,30 +36421,30 @@ export default { 40 ], "secondary_value": [ - 1777 + 1841 ], "tertiary_value": [ - 1777 + 1841 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_updates": { "_inc": [ - 1938 + 2199 ], "_set": [ - 1945 + 2206 ], "where": [ - 1937 + 2198 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_var_pop_fields": { @@ -31670,7 +36461,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_var_samp_fields": { @@ -31687,7 +36478,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "leaderboard_entries_variance_fields": { @@ -31704,35 +36495,35 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 5170 + 5458 ], "_winning_tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_divisions": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "season_divisions": [ - 2108, + 2369, { "distinct_on": [ - 2127, + 2388, "[league_season_divisions_select_column!]" ], "limit": [ @@ -31742,19 +36533,19 @@ export default { 40 ], "order_by": [ - 2125, + 2386, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2376 ] } ], "season_divisions_aggregate": [ - 2109, + 2370, { "distinct_on": [ - 2127, + 2388, "[league_season_divisions_select_column!]" ], "limit": [ @@ -31764,41 +36555,41 @@ export default { 40 ], "order_by": [ - 2125, + 2386, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2376 ] } ], "tier": [ - 4257 + 4545 ], "__typename": [ - 80 + 83 ] }, "league_divisions_aggregate": { "aggregate": [ - 1959 + 2220 ], "nodes": [ - 1957 + 2218 ], "__typename": [ - 80 + 83 ] }, "league_divisions_aggregate_fields": { "avg": [ - 1960 + 2221 ], "count": [ 40, { "columns": [ - 1972, + 2233, "[league_divisions_select_column!]" ], "distinct": [ @@ -31807,34 +36598,34 @@ export default { } ], "max": [ - 1965 + 2226 ], "min": [ - 1966 + 2227 ], "stddev": [ - 1974 + 2235 ], "stddev_pop": [ - 1975 + 2236 ], "stddev_samp": [ - 1976 + 2237 ], "sum": [ - 1979 + 2240 ], "var_pop": [ - 1982 + 2243 ], "var_samp": [ - 1983 + 2244 ], "variance": [ - 1984 + 2245 ], "__typename": [ - 80 + 83 ] }, "league_divisions_avg_fields": { @@ -31842,102 +36633,102 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_divisions_bool_exp": { "_and": [ - 1961 + 2222 ], "_not": [ - 1961 + 2222 ], "_or": [ - 1961 + 2222 ], "created_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "name": [ - 82 + 85 ], "season_divisions": [ - 2115 + 2376 ], "season_divisions_aggregate": [ - 2110 + 2371 ], "tier": [ - 4258 + 4546 ], "__typename": [ - 80 + 83 ] }, "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 4257 + 4545 ], "__typename": [ - 80 + 83 ] }, "league_divisions_insert_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "season_divisions": [ - 2114 + 2375 ], "tier": [ - 4257 + 4545 ], "__typename": [ - 80 + 83 ] }, "league_divisions_max_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "tier": [ - 4257 + 4545 ], "__typename": [ - 80 + 83 ] }, "league_divisions_min_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "tier": [ - 4257 + 4545 ], "__typename": [ - 80 + 83 ] }, "league_divisions_mutation_response": { @@ -31945,81 +36736,81 @@ export default { 40 ], "returning": [ - 1957 + 2218 ], "__typename": [ - 80 + 83 ] }, "league_divisions_obj_rel_insert_input": { "data": [ - 1964 + 2225 ], "on_conflict": [ - 1969 + 2230 ], "__typename": [ - 80 + 83 ] }, "league_divisions_on_conflict": { "constraint": [ - 1962 + 2223 ], "update_columns": [ - 1980 + 2241 ], "where": [ - 1961 + 2222 ], "__typename": [ - 80 + 83 ] }, "league_divisions_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "season_divisions_aggregate": [ - 2113 + 2374 ], "tier": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_divisions_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "tier": [ - 4257 + 4545 ], "__typename": [ - 80 + 83 ] }, "league_divisions_stddev_fields": { @@ -32027,7 +36818,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_divisions_stddev_pop_fields": { @@ -32035,7 +36826,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_divisions_stddev_samp_fields": { @@ -32043,58 +36834,58 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_divisions_stream_cursor_input": { "initial_value": [ - 1978 + 2239 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "tier": [ - 4257 + 4545 ], "__typename": [ - 80 + 83 ] }, "league_divisions_sum_fields": { "tier": [ - 4257 + 4545 ], "__typename": [ - 80 + 83 ] }, "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 1963 + 2224 ], "_set": [ - 1973 + 2234 ], "where": [ - 1961 + 2222 ], "__typename": [ - 80 + 83 ] }, "league_divisions_var_pop_fields": { @@ -32102,7 +36893,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_divisions_var_samp_fields": { @@ -32110,7 +36901,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_divisions_variance_fields": { @@ -32118,83 +36909,83 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks": { "closes_at": [ - 4670 + 4958 ], "created_at": [ - 4670 + 4958 ], "default_match_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "opens_at": [ - 4670 + 4958 ], "season": [ - 2133 + 2394 ], "week_number": [ 40 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_aggregate": { "aggregate": [ - 1989 + 2250 ], "nodes": [ - 1985 + 2246 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 1988 + 2249 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 2006 + 2267 ], "distinct": [ 5 ], "filter": [ - 1994 + 2255 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_aggregate_fields": { "avg": [ - 1992 + 2253 ], "count": [ 40, { "columns": [ - 2006, + 2267, "[league_match_weeks_select_column!]" ], "distinct": [ @@ -32203,83 +36994,83 @@ export default { } ], "max": [ - 1998 + 2259 ], "min": [ - 2000 + 2261 ], "stddev": [ - 2008 + 2269 ], "stddev_pop": [ - 2010 + 2271 ], "stddev_samp": [ - 2012 + 2273 ], "sum": [ - 2016 + 2277 ], "var_pop": [ - 2020 + 2281 ], "var_samp": [ - 2022 + 2283 ], "variance": [ - 2024 + 2285 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_aggregate_order_by": { "avg": [ - 1993 + 2254 ], "count": [ - 3094 + 3377 ], "max": [ - 1999 + 2260 ], "min": [ - 2001 + 2262 ], "stddev": [ - 2009 + 2270 ], "stddev_pop": [ - 2011 + 2272 ], "stddev_samp": [ - 2013 + 2274 ], "sum": [ - 2017 + 2278 ], "var_pop": [ - 2021 + 2282 ], "var_samp": [ - 2023 + 2284 ], "variance": [ - 2025 + 2286 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 1997 + 2258 ], "on_conflict": [ - 2003 + 2264 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_avg_fields": { @@ -32287,53 +37078,53 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_avg_order_by": { "week_number": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_bool_exp": { "_and": [ - 1994 + 2255 ], "_not": [ - 1994 + 2255 ], "_or": [ - 1994 + 2255 ], "closes_at": [ - 4671 + 4959 ], "created_at": [ - 4671 + 4959 ], "default_match_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "league_season_id": [ - 5172 + 5460 ], "opens_at": [ - 4671 + 4959 ], "season": [ - 2138 + 2399 ], "week_number": [ 41 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_constraint": {}, @@ -32342,140 +37133,140 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_insert_input": { "closes_at": [ - 4670 + 4958 ], "created_at": [ - 4670 + 4958 ], "default_match_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "opens_at": [ - 4670 + 4958 ], "season": [ - 2148 + 2409 ], "week_number": [ 40 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_max_fields": { "closes_at": [ - 4670 + 4958 ], "created_at": [ - 4670 + 4958 ], "default_match_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "opens_at": [ - 4670 + 4958 ], "week_number": [ 40 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_max_order_by": { "closes_at": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "default_match_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "opens_at": [ - 3094 + 3377 ], "week_number": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_min_fields": { "closes_at": [ - 4670 + 4958 ], "created_at": [ - 4670 + 4958 ], "default_match_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "opens_at": [ - 4670 + 4958 ], "week_number": [ 40 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_min_order_by": { "closes_at": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "default_match_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "opens_at": [ - 3094 + 3377 ], "week_number": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_mutation_response": { @@ -32483,88 +37274,88 @@ export default { 40 ], "returning": [ - 1985 + 2246 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_on_conflict": { "constraint": [ - 1995 + 2256 ], "update_columns": [ - 2018 + 2279 ], "where": [ - 1994 + 2255 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_order_by": { "closes_at": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "default_match_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "opens_at": [ - 3094 + 3377 ], "season": [ - 2150 + 2411 ], "week_number": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4670 + 4958 ], "created_at": [ - 4670 + 4958 ], "default_match_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "opens_at": [ - 4670 + 4958 ], "week_number": [ 40 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_stddev_fields": { @@ -32572,15 +37363,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_stddev_order_by": { "week_number": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_stddev_pop_fields": { @@ -32588,15 +37379,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_stddev_samp_fields": { @@ -32604,52 +37395,52 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 2015 + 2276 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4670 + 4958 ], "created_at": [ - 4670 + 4958 ], "default_match_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "opens_at": [ - 4670 + 4958 ], "week_number": [ 40 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_sum_fields": { @@ -32657,30 +37448,30 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_sum_order_by": { "week_number": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 1996 + 2257 ], "_set": [ - 2007 + 2268 ], "where": [ - 1994 + 2255 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_var_pop_fields": { @@ -32688,15 +37479,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_var_samp_fields": { @@ -32704,15 +37495,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_variance_fields": { @@ -32720,103 +37511,103 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_match_weeks_variance_order_by": { "week_number": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs": { "created_at": [ - 4670 + 4958 ], "higher_division": [ - 1957 + 2218 ], "higher_division_id": [ - 5170 + 5458 ], "higher_slots": [ 40 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "lower_division": [ - 1957 + 2218 ], "lower_division_id": [ - 5170 + 5458 ], "resolved_at": [ - 4670 + 4958 ], "season": [ - 2133 + 2394 ], "tournament": [ - 5106 + 5394 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 2030 + 2291 ], "nodes": [ - 2026 + 2287 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 2029 + 2290 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 2047 + 2308 ], "distinct": [ 5 ], "filter": [ - 2035 + 2296 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 2033 + 2294 ], "count": [ 40, { "columns": [ - 2047, + 2308, "[league_relegation_playoffs_select_column!]" ], "distinct": [ @@ -32825,83 +37616,83 @@ export default { } ], "max": [ - 2039 + 2300 ], "min": [ - 2041 + 2302 ], "stddev": [ - 2049 + 2310 ], "stddev_pop": [ - 2051 + 2312 ], "stddev_samp": [ - 2053 + 2314 ], "sum": [ - 2057 + 2318 ], "var_pop": [ - 2061 + 2322 ], "var_samp": [ - 2063 + 2324 ], "variance": [ - 2065 + 2326 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_aggregate_order_by": { "avg": [ - 2034 + 2295 ], "count": [ - 3094 + 3377 ], "max": [ - 2040 + 2301 ], "min": [ - 2042 + 2303 ], "stddev": [ - 2050 + 2311 ], "stddev_pop": [ - 2052 + 2313 ], "stddev_samp": [ - 2054 + 2315 ], "sum": [ - 2058 + 2319 ], "var_pop": [ - 2062 + 2323 ], "var_samp": [ - 2064 + 2325 ], "variance": [ - 2066 + 2327 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 2038 + 2299 ], "on_conflict": [ - 2044 + 2305 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_avg_fields": { @@ -32909,65 +37700,65 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_bool_exp": { "_and": [ - 2035 + 2296 ], "_not": [ - 2035 + 2296 ], "_or": [ - 2035 + 2296 ], "created_at": [ - 4671 + 4959 ], "higher_division": [ - 1961 + 2222 ], "higher_division_id": [ - 5172 + 5460 ], "higher_slots": [ 41 ], "id": [ - 5172 + 5460 ], "league_season_id": [ - 5172 + 5460 ], "lower_division": [ - 1961 + 2222 ], "lower_division_id": [ - 5172 + 5460 ], "resolved_at": [ - 4671 + 4959 ], "season": [ - 2138 + 2399 ], "tournament": [ - 5127 + 5415 ], "tournament_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_constraint": {}, @@ -32976,164 +37767,164 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4670 + 4958 ], "higher_division": [ - 1968 + 2229 ], "higher_division_id": [ - 5170 + 5458 ], "higher_slots": [ 40 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "lower_division": [ - 1968 + 2229 ], "lower_division_id": [ - 5170 + 5458 ], "resolved_at": [ - 4670 + 4958 ], "season": [ - 2148 + 2409 ], "tournament": [ - 5136 + 5424 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4670 + 4958 ], "higher_division_id": [ - 5170 + 5458 ], "higher_slots": [ 40 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "lower_division_id": [ - 5170 + 5458 ], "resolved_at": [ - 4670 + 4958 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 3094 + 3377 ], "higher_division_id": [ - 3094 + 3377 ], "higher_slots": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "lower_division_id": [ - 3094 + 3377 ], "resolved_at": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4670 + 4958 ], "higher_division_id": [ - 5170 + 5458 ], "higher_slots": [ 40 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "lower_division_id": [ - 5170 + 5458 ], "resolved_at": [ - 4670 + 4958 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 3094 + 3377 ], "higher_division_id": [ - 3094 + 3377 ], "higher_slots": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "lower_division_id": [ - 3094 + 3377 ], "resolved_at": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_mutation_response": { @@ -33141,103 +37932,103 @@ export default { 40 ], "returning": [ - 2026 + 2287 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 2036 + 2297 ], "update_columns": [ - 2059 + 2320 ], "where": [ - 2035 + 2296 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_order_by": { "created_at": [ - 3094 + 3377 ], "higher_division": [ - 1970 + 2231 ], "higher_division_id": [ - 3094 + 3377 ], "higher_slots": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "lower_division": [ - 1970 + 2231 ], "lower_division_id": [ - 3094 + 3377 ], "resolved_at": [ - 3094 + 3377 ], "season": [ - 2150 + 2411 ], "tournament": [ - 5138 + 5426 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4670 + 4958 ], "higher_division_id": [ - 5170 + 5458 ], "higher_slots": [ 40 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "lower_division_id": [ - 5170 + 5458 ], "resolved_at": [ - 4670 + 4958 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_stddev_fields": { @@ -33245,15 +38036,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_stddev_pop_fields": { @@ -33261,15 +38052,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_stddev_samp_fields": { @@ -33277,55 +38068,55 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 2056 + 2317 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "higher_division_id": [ - 5170 + 5458 ], "higher_slots": [ 40 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "lower_division_id": [ - 5170 + 5458 ], "resolved_at": [ - 4670 + 4958 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_sum_fields": { @@ -33333,30 +38124,30 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 2037 + 2298 ], "_set": [ - 2048 + 2309 ], "where": [ - 2035 + 2296 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_var_pop_fields": { @@ -33364,15 +38155,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_var_samp_fields": { @@ -33380,15 +38171,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_variance_fields": { @@ -33396,109 +38187,109 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals": { "bracket": [ - 4714 + 5002 ], "created_at": [ - 4670 + 4958 ], "e_proposal_status": [ - 885 + 949 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "proposed_by": [ - 4052 + 4335 ], "proposed_by_league_team_season_id": [ - 5170 + 5458 ], "proposed_by_steam_id": [ - 264 + 268 ], "proposed_time": [ - 4670 + 4958 ], "responded_by": [ - 4052 + 4335 ], "responded_by_steam_id": [ - 264 + 268 ], "status": [ - 890 + 954 ], "team_season": [ - 2248 + 2509 ], "tournament_bracket_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 2071 + 2332 ], "nodes": [ - 2067 + 2328 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 2070 + 2331 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 2088 + 2349 ], "distinct": [ 5 ], "filter": [ - 2076 + 2337 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 2074 + 2335 ], "count": [ 40, { "columns": [ - 2088, + 2349, "[league_scheduling_proposals_select_column!]" ], "distinct": [ @@ -33507,83 +38298,83 @@ export default { } ], "max": [ - 2080 + 2341 ], "min": [ - 2082 + 2343 ], "stddev": [ - 2090 + 2351 ], "stddev_pop": [ - 2092 + 2353 ], "stddev_samp": [ - 2094 + 2355 ], "sum": [ - 2098 + 2359 ], "var_pop": [ - 2102 + 2363 ], "var_samp": [ - 2104 + 2365 ], "variance": [ - 2106 + 2367 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_aggregate_order_by": { "avg": [ - 2075 + 2336 ], "count": [ - 3094 + 3377 ], "max": [ - 2081 + 2342 ], "min": [ - 2083 + 2344 ], "stddev": [ - 2091 + 2352 ], "stddev_pop": [ - 2093 + 2354 ], "stddev_samp": [ - 2095 + 2356 ], "sum": [ - 2099 + 2360 ], "var_pop": [ - 2103 + 2364 ], "var_samp": [ - 2105 + 2366 ], "variance": [ - 2107 + 2368 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 2079 + 2340 ], "on_conflict": [ - 2085 + 2346 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_avg_fields": { @@ -33594,249 +38385,249 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "responded_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_bool_exp": { "_and": [ - 2076 + 2337 ], "_not": [ - 2076 + 2337 ], "_or": [ - 2076 + 2337 ], "bracket": [ - 4725 + 5013 ], "created_at": [ - 4671 + 4959 ], "e_proposal_status": [ - 888 + 952 ], "id": [ - 5172 + 5460 ], "message": [ - 82 + 85 ], "proposed_by": [ - 4056 + 4339 ], "proposed_by_league_team_season_id": [ - 5172 + 5460 ], "proposed_by_steam_id": [ - 266 + 270 ], "proposed_time": [ - 4671 + 4959 ], "responded_by": [ - 4056 + 4339 ], "responded_by_steam_id": [ - 266 + 270 ], "status": [ - 891 + 955 ], "team_season": [ - 2257 + 2518 ], "tournament_bracket_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_constraint": {}, "league_scheduling_proposals_inc_input": { "proposed_by_steam_id": [ - 264 + 268 ], "responded_by_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4734 + 5022 ], "created_at": [ - 4670 + 4958 ], "e_proposal_status": [ - 896 + 960 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "proposed_by": [ - 4063 + 4346 ], "proposed_by_league_team_season_id": [ - 5170 + 5458 ], "proposed_by_steam_id": [ - 264 + 268 ], "proposed_time": [ - 4670 + 4958 ], "responded_by": [ - 4063 + 4346 ], "responded_by_steam_id": [ - 264 + 268 ], "status": [ - 890 + 954 ], "team_season": [ - 2266 + 2527 ], "tournament_bracket_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "proposed_by_league_team_season_id": [ - 5170 + 5458 ], "proposed_by_steam_id": [ - 264 + 268 ], "proposed_time": [ - 4670 + 4958 ], "responded_by_steam_id": [ - 264 + 268 ], "tournament_bracket_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "message": [ - 3094 + 3377 ], "proposed_by_league_team_season_id": [ - 3094 + 3377 ], "proposed_by_steam_id": [ - 3094 + 3377 ], "proposed_time": [ - 3094 + 3377 ], "responded_by_steam_id": [ - 3094 + 3377 ], "tournament_bracket_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "proposed_by_league_team_season_id": [ - 5170 + 5458 ], "proposed_by_steam_id": [ - 264 + 268 ], "proposed_time": [ - 4670 + 4958 ], "responded_by_steam_id": [ - 264 + 268 ], "tournament_bracket_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "message": [ - 3094 + 3377 ], "proposed_by_league_team_season_id": [ - 3094 + 3377 ], "proposed_by_steam_id": [ - 3094 + 3377 ], "proposed_time": [ - 3094 + 3377 ], "responded_by_steam_id": [ - 3094 + 3377 ], "tournament_bracket_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_mutation_response": { @@ -33844,112 +38635,112 @@ export default { 40 ], "returning": [ - 2067 + 2328 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 2077 + 2338 ], "update_columns": [ - 2100 + 2361 ], "where": [ - 2076 + 2337 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_order_by": { "bracket": [ - 4736 + 5024 ], "created_at": [ - 3094 + 3377 ], "e_proposal_status": [ - 898 + 962 ], "id": [ - 3094 + 3377 ], "message": [ - 3094 + 3377 ], "proposed_by": [ - 4065 + 4348 ], "proposed_by_league_team_season_id": [ - 3094 + 3377 ], "proposed_by_steam_id": [ - 3094 + 3377 ], "proposed_time": [ - 3094 + 3377 ], "responded_by": [ - 4065 + 4348 ], "responded_by_steam_id": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "team_season": [ - 2268 + 2529 ], "tournament_bracket_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "proposed_by_league_team_season_id": [ - 5170 + 5458 ], "proposed_by_steam_id": [ - 264 + 268 ], "proposed_time": [ - 4670 + 4958 ], "responded_by_steam_id": [ - 264 + 268 ], "status": [ - 890 + 954 ], "tournament_bracket_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_stddev_fields": { @@ -33960,18 +38751,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "responded_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_stddev_pop_fields": { @@ -33982,18 +38773,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "responded_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_stddev_samp_fields": { @@ -34004,98 +38795,98 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "responded_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 2097 + 2358 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "proposed_by_league_team_season_id": [ - 5170 + 5458 ], "proposed_by_steam_id": [ - 264 + 268 ], "proposed_time": [ - 4670 + 4958 ], "responded_by_steam_id": [ - 264 + 268 ], "status": [ - 890 + 954 ], "tournament_bracket_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_sum_fields": { "proposed_by_steam_id": [ - 264 + 268 ], "responded_by_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "responded_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 2078 + 2339 ], "_set": [ - 2089 + 2350 ], "where": [ - 2076 + 2337 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_var_pop_fields": { @@ -34106,18 +38897,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "responded_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_var_samp_fields": { @@ -34128,18 +38919,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "responded_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_variance_fields": { @@ -34150,44 +38941,44 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "responded_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions": { "created_at": [ - 4670 + 4958 ], "division": [ - 1957 + 2218 ], "id": [ - 5170 + 5458 ], "league_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "season": [ - 2133 + 2394 ], "standings": [ - 5242, + 5530, { "distinct_on": [ - 5258, + 5546, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -34197,19 +38988,19 @@ export default { 40 ], "order_by": [ - 5257, + 5545, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5539 ] } ], "standings_aggregate": [ - 5243, + 5531, { "distinct_on": [ - 5258, + 5546, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -34219,58 +39010,58 @@ export default { 40 ], "order_by": [ - 5257, + 5545, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5539 ] } ], "tournament": [ - 5106 + 5394 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_aggregate": { "aggregate": [ - 2112 + 2373 ], "nodes": [ - 2108 + 2369 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 2111 + 2372 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 2127 + 2388 ], "distinct": [ 5 ], "filter": [ - 2115 + 2376 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_aggregate_fields": { @@ -34278,7 +39069,7 @@ export default { 40, { "columns": [ - 2127, + 2388, "[league_season_divisions_select_column!]" ], "distinct": [ @@ -34287,195 +39078,195 @@ export default { } ], "max": [ - 2118 + 2379 ], "min": [ - 2120 + 2381 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_aggregate_order_by": { "count": [ - 3094 + 3377 ], "max": [ - 2119 + 2380 ], "min": [ - 2121 + 2382 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 2117 + 2378 ], "on_conflict": [ - 2124 + 2385 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_bool_exp": { "_and": [ - 2115 + 2376 ], "_not": [ - 2115 + 2376 ], "_or": [ - 2115 + 2376 ], "created_at": [ - 4671 + 4959 ], "division": [ - 1961 + 2222 ], "id": [ - 5172 + 5460 ], "league_division_id": [ - 5172 + 5460 ], "league_season_id": [ - 5172 + 5460 ], "season": [ - 2138 + 2399 ], "standings": [ - 5251 + 5539 ], "standings_aggregate": [ - 5244 + 5532 ], "tournament": [ - 5127 + 5415 ], "tournament_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4670 + 4958 ], "division": [ - 1968 + 2229 ], "id": [ - 5170 + 5458 ], "league_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "season": [ - 2148 + 2409 ], "standings": [ - 5248 + 5536 ], "tournament": [ - 5136 + 5424 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_max_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "league_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_max_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_division_id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_min_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "league_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_min_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_division_id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_mutation_response": { @@ -34483,139 +39274,139 @@ export default { 40 ], "returning": [ - 2108 + 2369 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 2117 + 2378 ], "on_conflict": [ - 2124 + 2385 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_on_conflict": { "constraint": [ - 2116 + 2377 ], "update_columns": [ - 2131 + 2392 ], "where": [ - 2115 + 2376 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_order_by": { "created_at": [ - 3094 + 3377 ], "division": [ - 1970 + 2231 ], "id": [ - 3094 + 3377 ], "league_division_id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "season": [ - 2150 + 2411 ], "standings_aggregate": [ - 5247 + 5535 ], "tournament": [ - 5138 + 5426 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "league_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 2130 + 2391 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "league_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 2128 + 2389 ], "where": [ - 2115 + 2376 ], "__typename": [ - 80 + 83 ] }, "league_seasons": { @@ -34623,10 +39414,10 @@ export default { 5 ], "awards": [ - 195, + 199, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -34636,19 +39427,19 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "awards_aggregate": [ - 196, + 200, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -34658,11 +39449,11 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], @@ -34670,10 +39461,10 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "created_by_steam_id": [ - 264 + 268 ], "default_best_of": [ 40 @@ -34685,13 +39476,13 @@ export default { 40 ], "e_league_season_status": [ - 927 + 991 ], "games_per_week": [ 40 ], "id": [ - 5170 + 5458 ], "is_league_admin": [ 5 @@ -34700,13 +39491,13 @@ export default { 5 ], "match_options_id": [ - 5170 + 5458 ], "match_weeks": [ - 1985, + 2246, { "distinct_on": [ - 2006, + 2267, "[league_match_weeks_select_column!]" ], "limit": [ @@ -34716,19 +39507,19 @@ export default { 40 ], "order_by": [ - 2004, + 2265, "[league_match_weeks_order_by!]" ], "where": [ - 1994 + 2255 ] } ], "match_weeks_aggregate": [ - 1986, + 2247, { "distinct_on": [ - 2006, + 2267, "[league_match_weeks_select_column!]" ], "limit": [ @@ -34738,11 +39529,11 @@ export default { 40 ], "order_by": [ - 2004, + 2265, "[league_match_weeks_order_by!]" ], "where": [ - 1994 + 2255 ] } ], @@ -34756,10 +39547,10 @@ export default { 40 ], "movements": [ - 2166, + 2427, { "distinct_on": [ - 2187, + 2448, "[league_team_movements_select_column!]" ], "limit": [ @@ -34769,19 +39560,19 @@ export default { 40 ], "order_by": [ - 2185, + 2446, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2436 ] } ], "movements_aggregate": [ - 2167, + 2428, { "distinct_on": [ - 2187, + 2448, "[league_team_movements_select_column!]" ], "limit": [ @@ -34791,19 +39582,19 @@ export default { 40 ], "order_by": [ - 2185, + 2446, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2436 ] } ], "my_registration": [ - 2248, + 2509, { "distinct_on": [ - 2270, + 2531, "[league_team_seasons_select_column!]" ], "limit": [ @@ -34813,25 +39604,25 @@ export default { 40 ], "order_by": [ - 2268, + 2529, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2518 ] } ], "name": [ - 80 + 83 ], "options": [ - 2758 + 3019 ], "player_stats": [ - 5275, + 5563, { "distinct_on": [ - 5301, + 5589, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -34841,19 +39632,19 @@ export default { 40 ], "order_by": [ - 5300, + 5588, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5294 + 5582 ] } ], "player_stats_aggregate": [ - 5276, + 5564, { "distinct_on": [ - 5301, + 5589, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -34863,11 +39654,11 @@ export default { 40 ], "order_by": [ - 5300, + 5588, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5294 + 5582 ] } ], @@ -34875,10 +39666,10 @@ export default { 40 ], "playoff_round_best_of": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], @@ -34886,7 +39677,7 @@ export default { 40 ], "playoff_stage_type": [ - 1421 + 1485 ], "playoff_third_place_match": [ 5 @@ -34895,7 +39686,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1421 + 1485 ], "relegate_count": [ 40 @@ -34904,10 +39695,10 @@ export default { 40 ], "relegation_playoffs": [ - 2026, + 2287, { "distinct_on": [ - 2047, + 2308, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -34917,19 +39708,19 @@ export default { 40 ], "order_by": [ - 2045, + 2306, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2035 + 2296 ] } ], "relegation_playoffs_aggregate": [ - 2027, + 2288, { "distinct_on": [ - 2047, + 2308, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -34939,11 +39730,11 @@ export default { 40 ], "order_by": [ - 2045, + 2306, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2035 + 2296 ] } ], @@ -34951,13 +39742,13 @@ export default { 40 ], "roster_lock_at": [ - 4670 + 4958 ], "season_divisions": [ - 2108, + 2369, { "distinct_on": [ - 2127, + 2388, "[league_season_divisions_select_column!]" ], "limit": [ @@ -34967,19 +39758,19 @@ export default { 40 ], "order_by": [ - 2125, + 2386, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2376 ] } ], "season_divisions_aggregate": [ - 2109, + 2370, { "distinct_on": [ - 2127, + 2388, "[league_season_divisions_select_column!]" ], "limit": [ @@ -34989,11 +39780,11 @@ export default { 40 ], "order_by": [ - 2125, + 2386, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2376 ] } ], @@ -35001,16 +39792,16 @@ export default { 40 ], "signup_closes_at": [ - 4670 + 4958 ], "signup_opens_at": [ - 4670 + 4958 ], "standings": [ - 5242, + 5530, { "distinct_on": [ - 5258, + 5546, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -35020,19 +39811,19 @@ export default { 40 ], "order_by": [ - 5257, + 5545, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5539 ] } ], "standings_aggregate": [ - 5243, + 5531, { "distinct_on": [ - 5258, + 5546, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -35042,25 +39833,25 @@ export default { 40 ], "order_by": [ - 5257, + 5545, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5539 ] } ], "starts_at": [ - 4670 + 4958 ], "status": [ - 932 + 996 ], "team_seasons": [ - 2248, + 2509, { "distinct_on": [ - 2270, + 2531, "[league_team_seasons_select_column!]" ], "limit": [ @@ -35070,19 +39861,19 @@ export default { 40 ], "order_by": [ - 2268, + 2529, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2518 ] } ], "team_seasons_aggregate": [ - 2249, + 2510, { "distinct_on": [ - 2270, + 2531, "[league_team_seasons_select_column!]" ], "limit": [ @@ -35092,46 +39883,46 @@ export default { 40 ], "order_by": [ - 2268, + 2529, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2518 ] } ], "week_best_of": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "__typename": [ - 80 + 83 ] }, "league_seasons_aggregate": { "aggregate": [ - 2135 + 2396 ], "nodes": [ - 2133 + 2394 ], "__typename": [ - 80 + 83 ] }, "league_seasons_aggregate_fields": { "avg": [ - 2137 + 2398 ], "count": [ 40, { "columns": [ - 2153, + 2414, "[league_seasons_select_column!]" ], "distinct": [ @@ -35140,45 +39931,45 @@ export default { } ], "max": [ - 2145 + 2406 ], "min": [ - 2146 + 2407 ], "stddev": [ - 2155 + 2416 ], "stddev_pop": [ - 2156 + 2417 ], "stddev_samp": [ - 2157 + 2418 ], "sum": [ - 2160 + 2421 ], "var_pop": [ - 2163 + 2424 ], "var_samp": [ - 2164 + 2425 ], "variance": [ - 2165 + 2426 ], "__typename": [ - 80 + 83 ] }, "league_seasons_append_input": { "playoff_round_best_of": [ - 1930 + 2191 ], "week_best_of": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "league_seasons_avg_fields": { @@ -35228,36 +40019,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_seasons_bool_exp": { "_and": [ - 2138 + 2399 ], "_not": [ - 2138 + 2399 ], "_or": [ - 2138 + 2399 ], "auto_regular_season_format": [ 6 ], "awards": [ - 204 + 208 ], "awards_aggregate": [ - 197 + 201 ], "can_register": [ 6 ], "created_at": [ - 4671 + 4959 ], "created_by_steam_id": [ - 266 + 270 ], "default_best_of": [ 41 @@ -35269,13 +40060,13 @@ export default { 41 ], "e_league_season_status": [ - 930 + 994 ], "games_per_week": [ 41 ], "id": [ - 5172 + 5460 ], "is_league_admin": [ 6 @@ -35284,13 +40075,13 @@ export default { 6 ], "match_options_id": [ - 5172 + 5460 ], "match_weeks": [ - 1994 + 2255 ], "match_weeks_aggregate": [ - 1987 + 2248 ], "match_weeks_count": [ 41 @@ -35302,37 +40093,37 @@ export default { 41 ], "movements": [ - 2175 + 2436 ], "movements_aggregate": [ - 2168 + 2429 ], "my_registration": [ - 2257 + 2518 ], "name": [ - 82 + 85 ], "options": [ - 2762 + 3030 ], "player_stats": [ - 5294 + 5582 ], "player_stats_aggregate": [ - 5277 + 5565 ], "playoff_best_of": [ 41 ], "playoff_round_best_of": [ - 1932 + 2193 ], "playoff_seats": [ 41 ], "playoff_stage_type": [ - 1422 + 1486 ], "playoff_third_place_match": [ 6 @@ -35341,7 +40132,7 @@ export default { 41 ], "regular_season_stage_type": [ - 1422 + 1486 ], "relegate_count": [ 41 @@ -35350,67 +40141,67 @@ export default { 41 ], "relegation_playoffs": [ - 2035 + 2296 ], "relegation_playoffs_aggregate": [ - 2028 + 2289 ], "relegation_up_count": [ 41 ], "roster_lock_at": [ - 4671 + 4959 ], "season_divisions": [ - 2115 + 2376 ], "season_divisions_aggregate": [ - 2110 + 2371 ], "season_number": [ 41 ], "signup_closes_at": [ - 4671 + 4959 ], "signup_opens_at": [ - 4671 + 4959 ], "standings": [ - 5251 + 5539 ], "standings_aggregate": [ - 5244 + 5532 ], "starts_at": [ - 4671 + 4959 ], "status": [ - 933 + 997 ], "team_seasons": [ - 2257 + 2518 ], "team_seasons_aggregate": [ - 2250 + 2511 ], "week_best_of": [ - 1932 + 2193 ], "__typename": [ - 80 + 83 ] }, "league_seasons_constraint": {}, "league_seasons_delete_at_path_input": { "playoff_round_best_of": [ - 80 + 83 ], "week_best_of": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "league_seasons_delete_elem_input": { @@ -35421,23 +40212,23 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "league_seasons_delete_key_input": { "playoff_round_best_of": [ - 80 + 83 ], "week_best_of": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "league_seasons_inc_input": { "created_by_steam_id": [ - 264 + 268 ], "default_best_of": [ 40 @@ -35482,7 +40273,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "league_seasons_insert_input": { @@ -35490,13 +40281,13 @@ export default { 5 ], "awards": [ - 201 + 205 ], "created_at": [ - 4670 + 4958 ], "created_by_steam_id": [ - 264 + 268 ], "default_best_of": [ 40 @@ -35508,19 +40299,19 @@ export default { 40 ], "e_league_season_status": [ - 938 + 1002 ], "games_per_week": [ 40 ], "id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "match_weeks": [ - 1991 + 2252 ], "match_weeks_count": [ 40 @@ -35532,28 +40323,28 @@ export default { 40 ], "movements": [ - 2172 + 2433 ], "name": [ - 80 + 83 ], "options": [ - 2769 + 3039 ], "player_stats": [ - 5291 + 5579 ], "playoff_best_of": [ 40 ], "playoff_round_best_of": [ - 1930 + 2191 ], "playoff_seats": [ 40 ], "playoff_stage_type": [ - 1421 + 1485 ], "playoff_third_place_match": [ 5 @@ -35562,7 +40353,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1421 + 1485 ], "relegate_count": [ 40 @@ -35571,51 +40362,51 @@ export default { 40 ], "relegation_playoffs": [ - 2032 + 2293 ], "relegation_up_count": [ 40 ], "roster_lock_at": [ - 4670 + 4958 ], "season_divisions": [ - 2114 + 2375 ], "season_number": [ 40 ], "signup_closes_at": [ - 4670 + 4958 ], "signup_opens_at": [ - 4670 + 4958 ], "standings": [ - 5248 + 5536 ], "starts_at": [ - 4670 + 4958 ], "status": [ - 932 + 996 ], "team_seasons": [ - 2254 + 2515 ], "week_best_of": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "league_seasons_max_fields": { "created_at": [ - 4670 + 4958 ], "created_by_steam_id": [ - 264 + 268 ], "default_best_of": [ 40 @@ -35630,10 +40421,10 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "match_weeks_count": [ 40 @@ -35645,7 +40436,7 @@ export default { 40 ], "name": [ - 80 + 83 ], "playoff_best_of": [ 40 @@ -35666,30 +40457,30 @@ export default { 40 ], "roster_lock_at": [ - 4670 + 4958 ], "season_number": [ 40 ], "signup_closes_at": [ - 4670 + 4958 ], "signup_opens_at": [ - 4670 + 4958 ], "starts_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "league_seasons_min_fields": { "created_at": [ - 4670 + 4958 ], "created_by_steam_id": [ - 264 + 268 ], "default_best_of": [ 40 @@ -35704,10 +40495,10 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "match_weeks_count": [ 40 @@ -35719,7 +40510,7 @@ export default { 40 ], "name": [ - 80 + 83 ], "playoff_best_of": [ 40 @@ -35740,22 +40531,22 @@ export default { 40 ], "roster_lock_at": [ - 4670 + 4958 ], "season_number": [ 40 ], "signup_closes_at": [ - 4670 + 4958 ], "signup_opens_at": [ - 4670 + 4958 ], "starts_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "league_seasons_mutation_response": { @@ -35763,191 +40554,191 @@ export default { 40 ], "returning": [ - 2133 + 2394 ], "__typename": [ - 80 + 83 ] }, "league_seasons_obj_rel_insert_input": { "data": [ - 2144 + 2405 ], "on_conflict": [ - 2149 + 2410 ], "__typename": [ - 80 + 83 ] }, "league_seasons_on_conflict": { "constraint": [ - 2139 + 2400 ], "update_columns": [ - 2161 + 2422 ], "where": [ - 2138 + 2399 ], "__typename": [ - 80 + 83 ] }, "league_seasons_order_by": { "auto_regular_season_format": [ - 3094 + 3377 ], "awards_aggregate": [ - 200 + 204 ], "can_register": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "created_by_steam_id": [ - 3094 + 3377 ], "default_best_of": [ - 3094 + 3377 ], "direct_promote_count": [ - 3094 + 3377 ], "direct_relegate_count": [ - 3094 + 3377 ], "e_league_season_status": [ - 940 + 1004 ], "games_per_week": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "is_league_admin": [ - 3094 + 3377 ], "is_roster_locked": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "match_weeks_aggregate": [ - 1990 + 2251 ], "match_weeks_count": [ - 3094 + 3377 ], "max_roster_size": [ - 3094 + 3377 ], "min_roster_size": [ - 3094 + 3377 ], "movements_aggregate": [ - 2171 + 2432 ], "my_registration_aggregate": [ - 2253 + 2514 ], "name": [ - 3094 + 3377 ], "options": [ - 2771 + 3041 ], "player_stats_aggregate": [ - 5290 + 5578 ], "playoff_best_of": [ - 3094 + 3377 ], "playoff_round_best_of": [ - 3094 + 3377 ], "playoff_seats": [ - 3094 + 3377 ], "playoff_stage_type": [ - 3094 + 3377 ], "playoff_third_place_match": [ - 3094 + 3377 ], "promote_count": [ - 3094 + 3377 ], "regular_season_stage_type": [ - 3094 + 3377 ], "relegate_count": [ - 3094 + 3377 ], "relegation_down_count": [ - 3094 + 3377 ], "relegation_playoffs_aggregate": [ - 2031 + 2292 ], "relegation_up_count": [ - 3094 + 3377 ], "roster_lock_at": [ - 3094 + 3377 ], "season_divisions_aggregate": [ - 2113 + 2374 ], "season_number": [ - 3094 + 3377 ], "signup_closes_at": [ - 3094 + 3377 ], "signup_opens_at": [ - 3094 + 3377 ], "standings_aggregate": [ - 5247 + 5535 ], "starts_at": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "team_seasons_aggregate": [ - 2253 + 2514 ], "week_best_of": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_seasons_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 1930 + 2191 ], "week_best_of": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "league_seasons_select_column": {}, @@ -35956,10 +40747,10 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "created_by_steam_id": [ - 264 + 268 ], "default_best_of": [ 40 @@ -35974,10 +40765,10 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "match_weeks_count": [ 40 @@ -35989,19 +40780,19 @@ export default { 40 ], "name": [ - 80 + 83 ], "playoff_best_of": [ 40 ], "playoff_round_best_of": [ - 1930 + 2191 ], "playoff_seats": [ 40 ], "playoff_stage_type": [ - 1421 + 1485 ], "playoff_third_place_match": [ 5 @@ -36010,7 +40801,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1421 + 1485 ], "relegate_count": [ 40 @@ -36022,28 +40813,28 @@ export default { 40 ], "roster_lock_at": [ - 4670 + 4958 ], "season_number": [ 40 ], "signup_closes_at": [ - 4670 + 4958 ], "signup_opens_at": [ - 4670 + 4958 ], "starts_at": [ - 4670 + 4958 ], "status": [ - 932 + 996 ], "week_best_of": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "league_seasons_stddev_fields": { @@ -36093,7 +40884,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_seasons_stddev_pop_fields": { @@ -36143,7 +40934,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_seasons_stddev_samp_fields": { @@ -36193,18 +40984,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_seasons_stream_cursor_input": { "initial_value": [ - 2159 + 2420 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "league_seasons_stream_cursor_value_input": { @@ -36212,10 +41003,10 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "created_by_steam_id": [ - 264 + 268 ], "default_best_of": [ 40 @@ -36230,10 +41021,10 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "match_weeks_count": [ 40 @@ -36245,19 +41036,19 @@ export default { 40 ], "name": [ - 80 + 83 ], "playoff_best_of": [ 40 ], "playoff_round_best_of": [ - 1930 + 2191 ], "playoff_seats": [ 40 ], "playoff_stage_type": [ - 1421 + 1485 ], "playoff_third_place_match": [ 5 @@ -36266,7 +41057,7 @@ export default { 40 ], "regular_season_stage_type": [ - 1421 + 1485 ], "relegate_count": [ 40 @@ -36278,33 +41069,33 @@ export default { 40 ], "roster_lock_at": [ - 4670 + 4958 ], "season_number": [ 40 ], "signup_closes_at": [ - 4670 + 4958 ], "signup_opens_at": [ - 4670 + 4958 ], "starts_at": [ - 4670 + 4958 ], "status": [ - 932 + 996 ], "week_best_of": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "league_seasons_sum_fields": { "created_by_steam_id": [ - 264 + 268 ], "default_best_of": [ 40 @@ -36349,37 +41140,37 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 2136 + 2397 ], "_delete_at_path": [ - 2140 + 2401 ], "_delete_elem": [ - 2141 + 2402 ], "_delete_key": [ - 2142 + 2403 ], "_inc": [ - 2143 + 2404 ], "_prepend": [ - 2152 + 2413 ], "_set": [ - 2154 + 2415 ], "where": [ - 2138 + 2399 ], "__typename": [ - 80 + 83 ] }, "league_seasons_var_pop_fields": { @@ -36429,7 +41220,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_seasons_var_samp_fields": { @@ -36479,7 +41270,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_seasons_variance_fields": { @@ -36529,113 +41320,113 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_movements": { "approved_at": [ - 4670 + 4958 ], "approved_by": [ - 4052 + 4335 ], "approved_by_steam_id": [ - 264 + 268 ], "computed_to_division": [ - 1957 + 2218 ], "computed_to_division_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "e_movement_type": [ - 864 + 928 ], "final_rank": [ 40 ], "final_to_division": [ - 1957 + 2218 ], "final_to_division_id": [ - 5170 + 5458 ], "from_division": [ - 1957 + 2218 ], "from_division_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team": [ - 2290 + 2551 ], "league_team_id": [ - 5170 + 5458 ], "season": [ - 2133 + 2394 ], "type": [ - 869 + 933 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_aggregate": { "aggregate": [ - 2170 + 2431 ], "nodes": [ - 2166 + 2427 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_aggregate_bool_exp": { "count": [ - 2169 + 2430 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 2187 + 2448 ], "distinct": [ 5 ], "filter": [ - 2175 + 2436 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_aggregate_fields": { "avg": [ - 2173 + 2434 ], "count": [ 40, { "columns": [ - 2187, + 2448, "[league_team_movements_select_column!]" ], "distinct": [ @@ -36644,83 +41435,83 @@ export default { } ], "max": [ - 2179 + 2440 ], "min": [ - 2181 + 2442 ], "stddev": [ - 2189 + 2450 ], "stddev_pop": [ - 2191 + 2452 ], "stddev_samp": [ - 2193 + 2454 ], "sum": [ - 2197 + 2458 ], "var_pop": [ - 2201 + 2462 ], "var_samp": [ - 2203 + 2464 ], "variance": [ - 2205 + 2466 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_aggregate_order_by": { "avg": [ - 2174 + 2435 ], "count": [ - 3094 + 3377 ], "max": [ - 2180 + 2441 ], "min": [ - 2182 + 2443 ], "stddev": [ - 2190 + 2451 ], "stddev_pop": [ - 2192 + 2453 ], "stddev_samp": [ - 2194 + 2455 ], "sum": [ - 2198 + 2459 ], "var_pop": [ - 2202 + 2463 ], "var_samp": [ - 2204 + 2465 ], "variance": [ - 2206 + 2467 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_arr_rel_insert_input": { "data": [ - 2178 + 2439 ], "on_conflict": [ - 2184 + 2445 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_avg_fields": { @@ -36731,297 +41522,297 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 3094 + 3377 ], "final_rank": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_bool_exp": { "_and": [ - 2175 + 2436 ], "_not": [ - 2175 + 2436 ], "_or": [ - 2175 + 2436 ], "approved_at": [ - 4671 + 4959 ], "approved_by": [ - 4056 + 4339 ], "approved_by_steam_id": [ - 266 + 270 ], "computed_to_division": [ - 1961 + 2222 ], "computed_to_division_id": [ - 5172 + 5460 ], "created_at": [ - 4671 + 4959 ], "e_movement_type": [ - 867 + 931 ], "final_rank": [ 41 ], "final_to_division": [ - 1961 + 2222 ], "final_to_division_id": [ - 5172 + 5460 ], "from_division": [ - 1961 + 2222 ], "from_division_id": [ - 5172 + 5460 ], "id": [ - 5172 + 5460 ], "league_season_id": [ - 5172 + 5460 ], "league_team": [ - 2293 + 2554 ], "league_team_id": [ - 5172 + 5460 ], "season": [ - 2138 + 2399 ], "type": [ - 870 + 934 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_constraint": {}, "league_team_movements_inc_input": { "approved_by_steam_id": [ - 264 + 268 ], "final_rank": [ 40 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_insert_input": { "approved_at": [ - 4670 + 4958 ], "approved_by": [ - 4063 + 4346 ], "approved_by_steam_id": [ - 264 + 268 ], "computed_to_division": [ - 1968 + 2229 ], "computed_to_division_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "e_movement_type": [ - 875 + 939 ], "final_rank": [ 40 ], "final_to_division": [ - 1968 + 2229 ], "final_to_division_id": [ - 5170 + 5458 ], "from_division": [ - 1968 + 2229 ], "from_division_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team": [ - 2299 + 2560 ], "league_team_id": [ - 5170 + 5458 ], "season": [ - 2148 + 2409 ], "type": [ - 869 + 933 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_max_fields": { "approved_at": [ - 4670 + 4958 ], "approved_by_steam_id": [ - 264 + 268 ], "computed_to_division_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5170 + 5458 ], "from_division_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_max_order_by": { "approved_at": [ - 3094 + 3377 ], "approved_by_steam_id": [ - 3094 + 3377 ], "computed_to_division_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "final_rank": [ - 3094 + 3377 ], "final_to_division_id": [ - 3094 + 3377 ], "from_division_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "league_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_min_fields": { "approved_at": [ - 4670 + 4958 ], "approved_by_steam_id": [ - 264 + 268 ], "computed_to_division_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5170 + 5458 ], "from_division_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_min_order_by": { "approved_at": [ - 3094 + 3377 ], "approved_by_steam_id": [ - 3094 + 3377 ], "computed_to_division_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "final_rank": [ - 3094 + 3377 ], "final_to_division_id": [ - 3094 + 3377 ], "from_division_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "league_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_mutation_response": { @@ -37029,130 +41820,130 @@ export default { 40 ], "returning": [ - 2166 + 2427 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_on_conflict": { "constraint": [ - 2176 + 2437 ], "update_columns": [ - 2199 + 2460 ], "where": [ - 2175 + 2436 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_order_by": { "approved_at": [ - 3094 + 3377 ], "approved_by": [ - 4065 + 4348 ], "approved_by_steam_id": [ - 3094 + 3377 ], "computed_to_division": [ - 1970 + 2231 ], "computed_to_division_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "e_movement_type": [ - 877 + 941 ], "final_rank": [ - 3094 + 3377 ], "final_to_division": [ - 1970 + 2231 ], "final_to_division_id": [ - 3094 + 3377 ], "from_division": [ - 1970 + 2231 ], "from_division_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "league_team": [ - 2301 + 2562 ], "league_team_id": [ - 3094 + 3377 ], "season": [ - 2150 + 2411 ], "type": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4670 + 4958 ], "approved_by_steam_id": [ - 264 + 268 ], "computed_to_division_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5170 + 5458 ], "from_division_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team_id": [ - 5170 + 5458 ], "type": [ - 869 + 933 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_stddev_fields": { @@ -37163,18 +41954,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 3094 + 3377 ], "final_rank": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_stddev_pop_fields": { @@ -37185,18 +41976,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 3094 + 3377 ], "final_rank": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_stddev_samp_fields": { @@ -37207,104 +41998,104 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 3094 + 3377 ], "final_rank": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 2196 + 2457 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4670 + 4958 ], "approved_by_steam_id": [ - 264 + 268 ], "computed_to_division_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "final_rank": [ 40 ], "final_to_division_id": [ - 5170 + 5458 ], "from_division_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team_id": [ - 5170 + 5458 ], "type": [ - 869 + 933 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_sum_fields": { "approved_by_steam_id": [ - 264 + 268 ], "final_rank": [ 40 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 3094 + 3377 ], "final_rank": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 2177 + 2438 ], "_set": [ - 2188 + 2449 ], "where": [ - 2175 + 2436 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_var_pop_fields": { @@ -37315,18 +42106,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 3094 + 3377 ], "final_rank": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_var_samp_fields": { @@ -37337,18 +42128,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 3094 + 3377 ], "final_rank": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_variance_fields": { @@ -37359,94 +42150,94 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 3094 + 3377 ], "final_rank": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters": { "added_at": [ - 4670 + 4958 ], "league_team_season_id": [ - 5170 + 5458 ], "player": [ - 4052 + 4335 ], "player_steam_id": [ - 264 + 268 ], "removed_at": [ - 4670 + 4958 ], "removed_reason": [ - 80 + 83 ], "status": [ - 1360 + 1424 ], "team_season": [ - 2248 + 2509 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_aggregate": { "aggregate": [ - 2211 + 2472 ], "nodes": [ - 2207 + 2468 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 2210 + 2471 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 2228 + 2489 ], "distinct": [ 5 ], "filter": [ - 2216 + 2477 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_aggregate_fields": { "avg": [ - 2214 + 2475 ], "count": [ 40, { "columns": [ - 2228, + 2489, "[league_team_rosters_select_column!]" ], "distinct": [ @@ -37455,83 +42246,83 @@ export default { } ], "max": [ - 2220 + 2481 ], "min": [ - 2222 + 2483 ], "stddev": [ - 2230 + 2491 ], "stddev_pop": [ - 2232 + 2493 ], "stddev_samp": [ - 2234 + 2495 ], "sum": [ - 2238 + 2499 ], "var_pop": [ - 2242 + 2503 ], "var_samp": [ - 2244 + 2505 ], "variance": [ - 2246 + 2507 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_aggregate_order_by": { "avg": [ - 2215 + 2476 ], "count": [ - 3094 + 3377 ], "max": [ - 2221 + 2482 ], "min": [ - 2223 + 2484 ], "stddev": [ - 2231 + 2492 ], "stddev_pop": [ - 2233 + 2494 ], "stddev_samp": [ - 2235 + 2496 ], "sum": [ - 2239 + 2500 ], "var_pop": [ - 2243 + 2504 ], "var_samp": [ - 2245 + 2506 ], "variance": [ - 2247 + 2508 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 2219 + 2480 ], "on_conflict": [ - 2225 + 2486 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_avg_fields": { @@ -37539,171 +42330,171 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_bool_exp": { "_and": [ - 2216 + 2477 ], "_not": [ - 2216 + 2477 ], "_or": [ - 2216 + 2477 ], "added_at": [ - 4671 + 4959 ], "league_team_season_id": [ - 5172 + 5460 ], "player": [ - 4056 + 4339 ], "player_steam_id": [ - 266 + 270 ], "removed_at": [ - 4671 + 4959 ], "removed_reason": [ - 82 + 85 ], "status": [ - 1361 + 1425 ], "team_season": [ - 2257 + 2518 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_constraint": {}, "league_team_rosters_inc_input": { "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_insert_input": { "added_at": [ - 4670 + 4958 ], "league_team_season_id": [ - 5170 + 5458 ], "player": [ - 4063 + 4346 ], "player_steam_id": [ - 264 + 268 ], "removed_at": [ - 4670 + 4958 ], "removed_reason": [ - 80 + 83 ], "status": [ - 1360 + 1424 ], "team_season": [ - 2266 + 2527 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_max_fields": { "added_at": [ - 4670 + 4958 ], "league_team_season_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "removed_at": [ - 4670 + 4958 ], "removed_reason": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_max_order_by": { "added_at": [ - 3094 + 3377 ], "league_team_season_id": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "removed_at": [ - 3094 + 3377 ], "removed_reason": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_min_fields": { "added_at": [ - 4670 + 4958 ], "league_team_season_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "removed_at": [ - 4670 + 4958 ], "removed_reason": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_min_order_by": { "added_at": [ - 3094 + 3377 ], "league_team_season_id": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "removed_at": [ - 3094 + 3377 ], "removed_reason": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_mutation_response": { @@ -37711,88 +42502,88 @@ export default { 40 ], "returning": [ - 2207 + 2468 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_on_conflict": { "constraint": [ - 2217 + 2478 ], "update_columns": [ - 2240 + 2501 ], "where": [ - 2216 + 2477 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_order_by": { "added_at": [ - 3094 + 3377 ], "league_team_season_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "player_steam_id": [ - 3094 + 3377 ], "removed_at": [ - 3094 + 3377 ], "removed_reason": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "team_season": [ - 2268 + 2529 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4670 + 4958 ], "league_team_season_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "removed_at": [ - 4670 + 4958 ], "removed_reason": [ - 80 + 83 ], "status": [ - 1360 + 1424 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_stddev_fields": { @@ -37800,15 +42591,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_stddev_pop_fields": { @@ -37816,15 +42607,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_stddev_samp_fields": { @@ -37832,80 +42623,80 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 2237 + 2498 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4670 + 4958 ], "league_team_season_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "removed_at": [ - 4670 + 4958 ], "removed_reason": [ - 80 + 83 ], "status": [ - 1360 + 1424 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_sum_fields": { "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 2218 + 2479 ], "_set": [ - 2229 + 2490 ], "where": [ - 2216 + 2477 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_var_pop_fields": { @@ -37913,15 +42704,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_var_samp_fields": { @@ -37929,15 +42720,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_variance_fields": { @@ -37945,68 +42736,68 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons": { "assigned_division": [ - 1957 + 2218 ], "assigned_division_id": [ - 5170 + 5458 ], "captain": [ - 4052 + 4335 ], "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "decline_reason": [ - 80 + 83 ], "e_registration_status": [ - 906 + 970 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team": [ - 2290 + 2551 ], "league_team_id": [ - 5170 + 5458 ], "registered_by": [ - 4052 + 4335 ], "registered_by_steam_id": [ - 264 + 268 ], "requested_division": [ - 1957 + 2218 ], "requested_division_id": [ - 5170 + 5458 ], "roster": [ - 2207, + 2468, { "distinct_on": [ - 2228, + 2489, "[league_team_rosters_select_column!]" ], "limit": [ @@ -38016,19 +42807,19 @@ export default { 40 ], "order_by": [ - 2226, + 2487, "[league_team_rosters_order_by!]" ], "where": [ - 2216 + 2477 ] } ], "roster_aggregate": [ - 2208, + 2469, { "distinct_on": [ - 2228, + 2489, "[league_team_rosters_select_column!]" ], "limit": [ @@ -38038,78 +42829,78 @@ export default { 40 ], "order_by": [ - 2226, + 2487, "[league_team_rosters_order_by!]" ], "where": [ - 2216 + 2477 ] } ], "season": [ - 2133 + 2394 ], "seed": [ 40 ], "status": [ - 911 + 975 ], "tournament_team": [ - 5064 + 5352 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_aggregate": { "aggregate": [ - 2252 + 2513 ], "nodes": [ - 2248 + 2509 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 2251 + 2512 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 2270 + 2531 ], "distinct": [ 5 ], "filter": [ - 2257 + 2518 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_aggregate_fields": { "avg": [ - 2255 + 2516 ], "count": [ 40, { "columns": [ - 2270, + 2531, "[league_team_seasons_select_column!]" ], "distinct": [ @@ -38118,83 +42909,83 @@ export default { } ], "max": [ - 2261 + 2522 ], "min": [ - 2263 + 2524 ], "stddev": [ - 2272 + 2533 ], "stddev_pop": [ - 2274 + 2535 ], "stddev_samp": [ - 2276 + 2537 ], "sum": [ - 2280 + 2541 ], "var_pop": [ - 2284 + 2545 ], "var_samp": [ - 2286 + 2547 ], "variance": [ - 2288 + 2549 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_aggregate_order_by": { "avg": [ - 2256 + 2517 ], "count": [ - 3094 + 3377 ], "max": [ - 2262 + 2523 ], "min": [ - 2264 + 2525 ], "stddev": [ - 2273 + 2534 ], "stddev_pop": [ - 2275 + 2536 ], "stddev_samp": [ - 2277 + 2538 ], "sum": [ - 2281 + 2542 ], "var_pop": [ - 2285 + 2546 ], "var_samp": [ - 2287 + 2548 ], "variance": [ - 2289 + 2550 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 2260 + 2521 ], "on_conflict": [ - 2267 + 2528 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_avg_fields": { @@ -38208,336 +42999,336 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "registered_by_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_bool_exp": { "_and": [ - 2257 + 2518 ], "_not": [ - 2257 + 2518 ], "_or": [ - 2257 + 2518 ], "assigned_division": [ - 1961 + 2222 ], "assigned_division_id": [ - 5172 + 5460 ], "captain": [ - 4056 + 4339 ], "captain_steam_id": [ - 266 + 270 ], "created_at": [ - 4671 + 4959 ], "decline_reason": [ - 82 + 85 ], "e_registration_status": [ - 909 + 973 ], "id": [ - 5172 + 5460 ], "league_season_id": [ - 5172 + 5460 ], "league_team": [ - 2293 + 2554 ], "league_team_id": [ - 5172 + 5460 ], "registered_by": [ - 4056 + 4339 ], "registered_by_steam_id": [ - 266 + 270 ], "requested_division": [ - 1961 + 2222 ], "requested_division_id": [ - 5172 + 5460 ], "roster": [ - 2216 + 2477 ], "roster_aggregate": [ - 2209 + 2470 ], "season": [ - 2138 + 2399 ], "seed": [ 41 ], "status": [ - 912 + 976 ], "tournament_team": [ - 5073 + 5361 ], "tournament_team_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_constraint": {}, "league_team_seasons_inc_input": { "captain_steam_id": [ - 264 + 268 ], "registered_by_steam_id": [ - 264 + 268 ], "seed": [ 40 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_insert_input": { "assigned_division": [ - 1968 + 2229 ], "assigned_division_id": [ - 5170 + 5458 ], "captain": [ - 4063 + 4346 ], "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "decline_reason": [ - 80 + 83 ], "e_registration_status": [ - 917 + 981 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team": [ - 2299 + 2560 ], "league_team_id": [ - 5170 + 5458 ], "registered_by": [ - 4063 + 4346 ], "registered_by_steam_id": [ - 264 + 268 ], "requested_division": [ - 1968 + 2229 ], "requested_division_id": [ - 5170 + 5458 ], "roster": [ - 2213 + 2474 ], "season": [ - 2148 + 2409 ], "seed": [ 40 ], "status": [ - 911 + 975 ], "tournament_team": [ - 5082 + 5370 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 5170 + 5458 ], "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "decline_reason": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team_id": [ - 5170 + 5458 ], "registered_by_steam_id": [ - 264 + 268 ], "requested_division_id": [ - 5170 + 5458 ], "seed": [ 40 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 3094 + 3377 ], "captain_steam_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "decline_reason": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "league_team_id": [ - 3094 + 3377 ], "registered_by_steam_id": [ - 3094 + 3377 ], "requested_division_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 5170 + 5458 ], "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "decline_reason": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team_id": [ - 5170 + 5458 ], "registered_by_steam_id": [ - 264 + 268 ], "requested_division_id": [ - 5170 + 5458 ], "seed": [ 40 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 3094 + 3377 ], "captain_steam_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "decline_reason": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "league_team_id": [ - 3094 + 3377 ], "registered_by_steam_id": [ - 3094 + 3377 ], "requested_division_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_mutation_response": { @@ -38545,153 +43336,153 @@ export default { 40 ], "returning": [ - 2248 + 2509 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 2260 + 2521 ], "on_conflict": [ - 2267 + 2528 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_on_conflict": { "constraint": [ - 2258 + 2519 ], "update_columns": [ - 2282 + 2543 ], "where": [ - 2257 + 2518 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_order_by": { "assigned_division": [ - 1970 + 2231 ], "assigned_division_id": [ - 3094 + 3377 ], "captain": [ - 4065 + 4348 ], "captain_steam_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "decline_reason": [ - 3094 + 3377 ], "e_registration_status": [ - 919 + 983 ], "id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "league_team": [ - 2301 + 2562 ], "league_team_id": [ - 3094 + 3377 ], "registered_by": [ - 4065 + 4348 ], "registered_by_steam_id": [ - 3094 + 3377 ], "requested_division": [ - 1970 + 2231 ], "requested_division_id": [ - 3094 + 3377 ], "roster_aggregate": [ - 2212 + 2473 ], "season": [ - 2150 + 2411 ], "seed": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "tournament_team": [ - 5084 + 5372 ], "tournament_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 5170 + 5458 ], "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "decline_reason": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team_id": [ - 5170 + 5458 ], "registered_by_steam_id": [ - 264 + 268 ], "requested_division_id": [ - 5170 + 5458 ], "seed": [ 40 ], "status": [ - 911 + 975 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_stddev_fields": { @@ -38705,21 +43496,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "registered_by_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_stddev_pop_fields": { @@ -38733,21 +43524,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "registered_by_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_stddev_samp_fields": { @@ -38761,116 +43552,116 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "registered_by_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 2279 + 2540 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 5170 + 5458 ], "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "decline_reason": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team_id": [ - 5170 + 5458 ], "registered_by_steam_id": [ - 264 + 268 ], "requested_division_id": [ - 5170 + 5458 ], "seed": [ 40 ], "status": [ - 911 + 975 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_sum_fields": { "captain_steam_id": [ - 264 + 268 ], "registered_by_steam_id": [ - 264 + 268 ], "seed": [ 40 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "registered_by_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 2259 + 2520 ], "_set": [ - 2271 + 2532 ], "where": [ - 2257 + 2518 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_var_pop_fields": { @@ -38884,21 +43675,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "registered_by_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_var_samp_fields": { @@ -38912,21 +43703,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "registered_by_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_variance_fields": { @@ -38940,35 +43731,35 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "registered_by_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "league_teams": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "movements": [ - 2166, + 2427, { "distinct_on": [ - 2187, + 2448, "[league_team_movements_select_column!]" ], "limit": [ @@ -38978,19 +43769,19 @@ export default { 40 ], "order_by": [ - 2185, + 2446, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2436 ] } ], "movements_aggregate": [ - 2167, + 2428, { "distinct_on": [ - 2187, + 2448, "[league_team_movements_select_column!]" ], "limit": [ @@ -39000,25 +43791,25 @@ export default { 40 ], "order_by": [ - 2185, + 2446, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2436 ] } ], "team": [ - 4621 + 4909 ], "team_id": [ - 5170 + 5458 ], "team_seasons": [ - 2248, + 2509, { "distinct_on": [ - 2270, + 2531, "[league_team_seasons_select_column!]" ], "limit": [ @@ -39028,19 +43819,19 @@ export default { 40 ], "order_by": [ - 2268, + 2529, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2518 ] } ], "team_seasons_aggregate": [ - 2249, + 2510, { "distinct_on": [ - 2270, + 2531, "[league_team_seasons_select_column!]" ], "limit": [ @@ -39050,27 +43841,27 @@ export default { 40 ], "order_by": [ - 2268, + 2529, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2518 ] } ], "__typename": [ - 80 + 83 ] }, "league_teams_aggregate": { "aggregate": [ - 2292 + 2553 ], "nodes": [ - 2290 + 2551 ], "__typename": [ - 80 + 83 ] }, "league_teams_aggregate_fields": { @@ -39078,7 +43869,7 @@ export default { 40, { "columns": [ - 2303, + 2564, "[league_teams_select_column!]" ], "distinct": [ @@ -39087,103 +43878,103 @@ export default { } ], "max": [ - 2296 + 2557 ], "min": [ - 2297 + 2558 ], "__typename": [ - 80 + 83 ] }, "league_teams_bool_exp": { "_and": [ - 2293 + 2554 ], "_not": [ - 2293 + 2554 ], "_or": [ - 2293 + 2554 ], "created_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "movements": [ - 2175 + 2436 ], "movements_aggregate": [ - 2168 + 2429 ], "team": [ - 4632 + 4920 ], "team_id": [ - 5172 + 5460 ], "team_seasons": [ - 2257 + 2518 ], "team_seasons_aggregate": [ - 2250 + 2511 ], "__typename": [ - 80 + 83 ] }, "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "movements": [ - 2172 + 2433 ], "team": [ - 4641 + 4929 ], "team_id": [ - 5170 + 5458 ], "team_seasons": [ - 2254 + 2515 ], "__typename": [ - 80 + 83 ] }, "league_teams_max_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_teams_min_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_teams_mutation_response": { @@ -39191,138 +43982,138 @@ export default { 40 ], "returning": [ - 2290 + 2551 ], "__typename": [ - 80 + 83 ] }, "league_teams_obj_rel_insert_input": { "data": [ - 2295 + 2556 ], "on_conflict": [ - 2300 + 2561 ], "__typename": [ - 80 + 83 ] }, "league_teams_on_conflict": { "constraint": [ - 2294 + 2555 ], "update_columns": [ - 2307 + 2568 ], "where": [ - 2293 + 2554 ], "__typename": [ - 80 + 83 ] }, "league_teams_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "movements_aggregate": [ - 2171 + 2432 ], "team": [ - 4643 + 4931 ], "team_id": [ - 3094 + 3377 ], "team_seasons_aggregate": [ - 2253 + 2514 ], "__typename": [ - 80 + 83 ] }, "league_teams_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_teams_stream_cursor_input": { "initial_value": [ - 2306 + 2567 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 2304 + 2565 ], "where": [ - 2293 + 2554 ], "__typename": [ - 80 + 83 ] }, "lobbies": { "access": [ - 953 + 1017 ], "created_at": [ - 4670 + 4958 ], "e_lobby_access": [ - 948 + 1012 ], "id": [ - 5170 + 5458 ], "players": [ - 2328, + 2589, { "distinct_on": [ - 2351, + 2612, "[lobby_players_select_column!]" ], "limit": [ @@ -39332,19 +44123,19 @@ export default { 40 ], "order_by": [ - 2349, + 2610, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2600 ] } ], "players_aggregate": [ - 2329, + 2590, { "distinct_on": [ - 2351, + 2612, "[lobby_players_select_column!]" ], "limit": [ @@ -39354,27 +44145,27 @@ export default { 40 ], "order_by": [ - 2349, + 2610, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2600 ] } ], "__typename": [ - 80 + 83 ] }, "lobbies_aggregate": { "aggregate": [ - 2311 + 2572 ], "nodes": [ - 2309 + 2570 ], "__typename": [ - 80 + 83 ] }, "lobbies_aggregate_fields": { @@ -39382,7 +44173,7 @@ export default { 40, { "columns": [ - 2322, + 2583, "[lobbies_select_column!]" ], "distinct": [ @@ -39391,88 +44182,88 @@ export default { } ], "max": [ - 2315 + 2576 ], "min": [ - 2316 + 2577 ], "__typename": [ - 80 + 83 ] }, "lobbies_bool_exp": { "_and": [ - 2312 + 2573 ], "_not": [ - 2312 + 2573 ], "_or": [ - 2312 + 2573 ], "access": [ - 954 + 1018 ], "created_at": [ - 4671 + 4959 ], "e_lobby_access": [ - 951 + 1015 ], "id": [ - 5172 + 5460 ], "players": [ - 2339 + 2600 ], "players_aggregate": [ - 2330 + 2591 ], "__typename": [ - 80 + 83 ] }, "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 953 + 1017 ], "created_at": [ - 4670 + 4958 ], "e_lobby_access": [ - 959 + 1023 ], "id": [ - 5170 + 5458 ], "players": [ - 2336 + 2597 ], "__typename": [ - 80 + 83 ] }, "lobbies_max_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "lobbies_min_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "lobbies_mutation_response": { @@ -39480,115 +44271,115 @@ export default { 40 ], "returning": [ - 2309 + 2570 ], "__typename": [ - 80 + 83 ] }, "lobbies_obj_rel_insert_input": { "data": [ - 2314 + 2575 ], "on_conflict": [ - 2319 + 2580 ], "__typename": [ - 80 + 83 ] }, "lobbies_on_conflict": { "constraint": [ - 2313 + 2574 ], "update_columns": [ - 2326 + 2587 ], "where": [ - 2312 + 2573 ], "__typename": [ - 80 + 83 ] }, "lobbies_order_by": { "access": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "e_lobby_access": [ - 961 + 1025 ], "id": [ - 3094 + 3377 ], "players_aggregate": [ - 2335 + 2596 ], "__typename": [ - 80 + 83 ] }, "lobbies_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 953 + 1017 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "lobbies_stream_cursor_input": { "initial_value": [ - 2325 + 2586 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "lobbies_stream_cursor_value_input": { "access": [ - 953 + 1017 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 2323 + 2584 ], "where": [ - 2312 + 2573 ], "__typename": [ - 80 + 83 ] }, "lobby_players": { @@ -39596,112 +44387,112 @@ export default { 5 ], "invited_by_steam_id": [ - 264 + 268 ], "lobby": [ - 2309 + 2570 ], "lobby_id": [ - 5170 + 5458 ], "player": [ - 4052 + 4335 ], "status": [ - 974 + 1038 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "lobby_players_aggregate": { "aggregate": [ - 2334 + 2595 ], "nodes": [ - 2328 + 2589 ], "__typename": [ - 80 + 83 ] }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 2331 + 2592 ], "bool_or": [ - 2332 + 2593 ], "count": [ - 2333 + 2594 ], "__typename": [ - 80 + 83 ] }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2352 + 2613 ], "distinct": [ 5 ], "filter": [ - 2339 + 2600 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2353 + 2614 ], "distinct": [ 5 ], "filter": [ - 2339 + 2600 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 2351 + 2612 ], "distinct": [ 5 ], "filter": [ - 2339 + 2600 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "lobby_players_aggregate_fields": { "avg": [ - 2337 + 2598 ], "count": [ 40, { "columns": [ - 2351, + 2612, "[lobby_players_select_column!]" ], "distinct": [ @@ -39710,83 +44501,83 @@ export default { } ], "max": [ - 2343 + 2604 ], "min": [ - 2345 + 2606 ], "stddev": [ - 2355 + 2616 ], "stddev_pop": [ - 2357 + 2618 ], "stddev_samp": [ - 2359 + 2620 ], "sum": [ - 2363 + 2624 ], "var_pop": [ - 2367 + 2628 ], "var_samp": [ - 2369 + 2630 ], "variance": [ - 2371 + 2632 ], "__typename": [ - 80 + 83 ] }, "lobby_players_aggregate_order_by": { "avg": [ - 2338 + 2599 ], "count": [ - 3094 + 3377 ], "max": [ - 2344 + 2605 ], "min": [ - 2346 + 2607 ], "stddev": [ - 2356 + 2617 ], "stddev_pop": [ - 2358 + 2619 ], "stddev_samp": [ - 2360 + 2621 ], "sum": [ - 2364 + 2625 ], "var_pop": [ - 2368 + 2629 ], "var_samp": [ - 2370 + 2631 ], "variance": [ - 2372 + 2633 ], "__typename": [ - 80 + 83 ] }, "lobby_players_arr_rel_insert_input": { "data": [ - 2342 + 2603 ], "on_conflict": [ - 2348 + 2609 ], "__typename": [ - 80 + 83 ] }, "lobby_players_avg_fields": { @@ -39797,65 +44588,65 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "lobby_players_bool_exp": { "_and": [ - 2339 + 2600 ], "_not": [ - 2339 + 2600 ], "_or": [ - 2339 + 2600 ], "captain": [ 6 ], "invited_by_steam_id": [ - 266 + 270 ], "lobby": [ - 2312 + 2573 ], "lobby_id": [ - 5172 + 5460 ], "player": [ - 4056 + 4339 ], "status": [ - 975 + 1039 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "lobby_players_constraint": {}, "lobby_players_inc_input": { "invited_by_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "lobby_players_insert_input": { @@ -39863,81 +44654,81 @@ export default { 5 ], "invited_by_steam_id": [ - 264 + 268 ], "lobby": [ - 2318 + 2579 ], "lobby_id": [ - 5170 + 5458 ], "player": [ - 4063 + 4346 ], "status": [ - 974 + 1038 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "lobby_players_max_fields": { "invited_by_steam_id": [ - 264 + 268 ], "lobby_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 3094 + 3377 ], "lobby_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "lobby_players_min_fields": { "invited_by_steam_id": [ - 264 + 268 ], "lobby_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 3094 + 3377 ], "lobby_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "lobby_players_mutation_response": { @@ -39945,61 +44736,61 @@ export default { 40 ], "returning": [ - 2328 + 2589 ], "__typename": [ - 80 + 83 ] }, "lobby_players_on_conflict": { "constraint": [ - 2340 + 2601 ], "update_columns": [ - 2365 + 2626 ], "where": [ - 2339 + 2600 ], "__typename": [ - 80 + 83 ] }, "lobby_players_order_by": { "captain": [ - 3094 + 3377 ], "invited_by_steam_id": [ - 3094 + 3377 ], "lobby": [ - 2320 + 2581 ], "lobby_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "status": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "lobby_players_pk_columns_input": { "lobby_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "lobby_players_select_column": {}, @@ -40010,19 +44801,19 @@ export default { 5 ], "invited_by_steam_id": [ - 264 + 268 ], "lobby_id": [ - 5170 + 5458 ], "status": [ - 974 + 1038 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "lobby_players_stddev_fields": { @@ -40033,18 +44824,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "lobby_players_stddev_pop_fields": { @@ -40055,18 +44846,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "lobby_players_stddev_samp_fields": { @@ -40077,29 +44868,29 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "lobby_players_stream_cursor_input": { "initial_value": [ - 2362 + 2623 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "lobby_players_stream_cursor_value_input": { @@ -40107,56 +44898,56 @@ export default { 5 ], "invited_by_steam_id": [ - 264 + 268 ], "lobby_id": [ - 5170 + 5458 ], "status": [ - 974 + 1038 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "lobby_players_sum_fields": { "invited_by_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 2341 + 2602 ], "_set": [ - 2354 + 2615 ], "where": [ - 2339 + 2600 ], "__typename": [ - 80 + 83 ] }, "lobby_players_var_pop_fields": { @@ -40167,18 +44958,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "lobby_players_var_samp_fields": { @@ -40189,18 +44980,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "lobby_players_variance_fields": { @@ -40211,35 +45002,35 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "map_pools": { "e_type": [ - 989 + 1053 ], "enabled": [ 5 ], "id": [ - 5170 + 5458 ], "maps": [ - 5830, + 6118, { "distinct_on": [ - 5847, + 6135, "[v_pool_maps_select_column!]" ], "limit": [ @@ -40249,19 +45040,19 @@ export default { 40 ], "order_by": [ - 5846, + 6134, "[v_pool_maps_order_by!]" ], "where": [ - 5839 + 6127 ] } ], "maps_aggregate": [ - 5831, + 6119, { "distinct_on": [ - 5847, + 6135, "[v_pool_maps_select_column!]" ], "limit": [ @@ -40271,11 +45062,11 @@ export default { 40 ], "order_by": [ - 5846, + 6134, "[v_pool_maps_order_by!]" ], "where": [ - 5839 + 6127 ] } ], @@ -40283,21 +45074,21 @@ export default { 5 ], "type": [ - 994 + 1058 ], "__typename": [ - 80 + 83 ] }, "map_pools_aggregate": { "aggregate": [ - 2375 + 2636 ], "nodes": [ - 2373 + 2634 ], "__typename": [ - 80 + 83 ] }, "map_pools_aggregate_fields": { @@ -40305,7 +45096,7 @@ export default { 40, { "columns": [ - 2386, + 2647, "[map_pools_select_column!]" ], "distinct": [ @@ -40314,88 +45105,88 @@ export default { } ], "max": [ - 2379 + 2640 ], "min": [ - 2380 + 2641 ], "__typename": [ - 80 + 83 ] }, "map_pools_bool_exp": { "_and": [ - 2376 + 2637 ], "_not": [ - 2376 + 2637 ], "_or": [ - 2376 + 2637 ], "e_type": [ - 992 + 1056 ], "enabled": [ 6 ], "id": [ - 5172 + 5460 ], "maps": [ - 5839 + 6127 ], "maps_aggregate": [ - 5832 + 6120 ], "seed": [ 6 ], "type": [ - 995 + 1059 ], "__typename": [ - 80 + 83 ] }, "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 1000 + 1064 ], "enabled": [ 5 ], "id": [ - 5170 + 5458 ], "maps": [ - 5838 + 6126 ], "seed": [ 5 ], "type": [ - 994 + 1058 ], "__typename": [ - 80 + 83 ] }, "map_pools_max_fields": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "map_pools_min_fields": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "map_pools_mutation_response": { @@ -40403,66 +45194,66 @@ export default { 40 ], "returning": [ - 2373 + 2634 ], "__typename": [ - 80 + 83 ] }, "map_pools_obj_rel_insert_input": { "data": [ - 2378 + 2639 ], "on_conflict": [ - 2383 + 2644 ], "__typename": [ - 80 + 83 ] }, "map_pools_on_conflict": { "constraint": [ - 2377 + 2638 ], "update_columns": [ - 2390 + 2651 ], "where": [ - 2376 + 2637 ], "__typename": [ - 80 + 83 ] }, "map_pools_order_by": { "e_type": [ - 1002 + 1066 ], "enabled": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "maps_aggregate": [ - 5837 + 6125 ], "seed": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "map_pools_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "map_pools_select_column": {}, @@ -40471,27 +45262,27 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "seed": [ 5 ], "type": [ - 994 + 1058 ], "__typename": [ - 80 + 83 ] }, "map_pools_stream_cursor_input": { "initial_value": [ - 2389 + 2650 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "map_pools_stream_cursor_value_input": { @@ -40499,28 +45290,28 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "seed": [ 5 ], "type": [ - 994 + 1058 ], "__typename": [ - 80 + 83 ] }, "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 2387 + 2648 ], "where": [ - 2376 + 2637 ], "__typename": [ - 80 + 83 ] }, "maps": { @@ -40528,22 +45319,22 @@ export default { 5 ], "e_match_type": [ - 1112 + 1176 ], "enabled": [ 5 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "match_maps": [ - 2716, + 2977, { "distinct_on": [ - 2738, + 2999, "[match_maps_select_column!]" ], "limit": [ @@ -40553,19 +45344,19 @@ export default { 40 ], "order_by": [ - 2736, + 2997, "[match_maps_order_by!]" ], "where": [ - 2725 + 2986 ] } ], "match_maps_aggregate": [ - 2717, + 2978, { "distinct_on": [ - 2738, + 2999, "[match_maps_select_column!]" ], "limit": [ @@ -40575,19 +45366,19 @@ export default { 40 ], "order_by": [ - 2736, + 2997, "[match_maps_order_by!]" ], "where": [ - 2725 + 2986 ] } ], "match_veto_picks": [ - 2688, + 2949, { "distinct_on": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -40597,19 +45388,19 @@ export default { 40 ], "order_by": [ - 2706, + 2967, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2958 ] } ], "match_veto_picks_aggregate": [ - 2689, + 2950, { "distinct_on": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -40619,107 +45410,107 @@ export default { 40 ], "order_by": [ - 2706, + 2967, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2958 ] } ], "name": [ - 80 + 83 ], "patch": [ - 80 + 83 ], "poster": [ - 80 + 83 ], "type": [ - 1117 + 1181 ], "workshop_map_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "maps_aggregate": { "aggregate": [ - 2398 + 2659 ], "nodes": [ - 2392 + 2653 ], "__typename": [ - 80 + 83 ] }, "maps_aggregate_bool_exp": { "bool_and": [ - 2395 + 2656 ], "bool_or": [ - 2396 + 2657 ], "count": [ - 2397 + 2658 ], "__typename": [ - 80 + 83 ] }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 2414 + 2675 ], "distinct": [ 5 ], "filter": [ - 2401 + 2662 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 2415 + 2676 ], "distinct": [ 5 ], "filter": [ - 2401 + 2662 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "maps_aggregate_bool_exp_count": { "arguments": [ - 2413 + 2674 ], "distinct": [ 5 ], "filter": [ - 2401 + 2662 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "maps_aggregate_fields": { @@ -40727,7 +45518,7 @@ export default { 40, { "columns": [ - 2413, + 2674, "[maps_select_column!]" ], "distinct": [ @@ -40736,94 +45527,94 @@ export default { } ], "max": [ - 2404 + 2665 ], "min": [ - 2406 + 2667 ], "__typename": [ - 80 + 83 ] }, "maps_aggregate_order_by": { "count": [ - 3094 + 3377 ], "max": [ - 2405 + 2666 ], "min": [ - 2407 + 2668 ], "__typename": [ - 80 + 83 ] }, "maps_arr_rel_insert_input": { "data": [ - 2403 + 2664 ], "on_conflict": [ - 2410 + 2671 ], "__typename": [ - 80 + 83 ] }, "maps_bool_exp": { "_and": [ - 2401 + 2662 ], "_not": [ - 2401 + 2662 ], "_or": [ - 2401 + 2662 ], "active_pool": [ 6 ], "e_match_type": [ - 1115 + 1179 ], "enabled": [ 6 ], "id": [ - 5172 + 5460 ], "label": [ - 82 + 85 ], "match_maps": [ - 2725 + 2986 ], "match_maps_aggregate": [ - 2718 + 2979 ], "match_veto_picks": [ - 2697 + 2958 ], "match_veto_picks_aggregate": [ - 2690 + 2951 ], "name": [ - 82 + 85 ], "patch": [ - 82 + 85 ], "poster": [ - 82 + 85 ], "type": [ - 1118 + 1182 ], "workshop_map_id": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "maps_constraint": {}, @@ -40832,132 +45623,132 @@ export default { 5 ], "e_match_type": [ - 1123 + 1187 ], "enabled": [ 5 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "match_maps": [ - 2722 + 2983 ], "match_veto_picks": [ - 2696 + 2957 ], "name": [ - 80 + 83 ], "patch": [ - 80 + 83 ], "poster": [ - 80 + 83 ], "type": [ - 1117 + 1181 ], "workshop_map_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "maps_max_fields": { "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "name": [ - 80 + 83 ], "patch": [ - 80 + 83 ], "poster": [ - 80 + 83 ], "workshop_map_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "maps_max_order_by": { "id": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "patch": [ - 3094 + 3377 ], "poster": [ - 3094 + 3377 ], "workshop_map_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "maps_min_fields": { "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "name": [ - 80 + 83 ], "patch": [ - 80 + 83 ], "poster": [ - 80 + 83 ], "workshop_map_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "maps_min_order_by": { "id": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "patch": [ - 3094 + 3377 ], "poster": [ - 3094 + 3377 ], "workshop_map_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "maps_mutation_response": { @@ -40965,84 +45756,84 @@ export default { 40 ], "returning": [ - 2392 + 2653 ], "__typename": [ - 80 + 83 ] }, "maps_obj_rel_insert_input": { "data": [ - 2403 + 2664 ], "on_conflict": [ - 2410 + 2671 ], "__typename": [ - 80 + 83 ] }, "maps_on_conflict": { "constraint": [ - 2402 + 2663 ], "update_columns": [ - 2419 + 2680 ], "where": [ - 2401 + 2662 ], "__typename": [ - 80 + 83 ] }, "maps_order_by": { "active_pool": [ - 3094 + 3377 ], "e_match_type": [ - 1125 + 1189 ], "enabled": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "match_maps_aggregate": [ - 2721 + 2982 ], "match_veto_picks_aggregate": [ - 2695 + 2956 ], "name": [ - 3094 + 3377 ], "patch": [ - 3094 + 3377 ], "poster": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "workshop_map_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "maps_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "maps_select_column": {}, @@ -41056,39 +45847,39 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "name": [ - 80 + 83 ], "patch": [ - 80 + 83 ], "poster": [ - 80 + 83 ], "type": [ - 1117 + 1181 ], "workshop_map_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "maps_stream_cursor_input": { "initial_value": [ - 2418 + 2679 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "maps_stream_cursor_value_input": { @@ -41099,78 +45890,78 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "name": [ - 80 + 83 ], "patch": [ - 80 + 83 ], "poster": [ - 80 + 83 ], "type": [ - 1117 + 1181 ], "workshop_map_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "maps_update_column": {}, "maps_updates": { "_set": [ - 2416 + 2677 ], "where": [ - 2401 + 2662 ], "__typename": [ - 80 + 83 ] }, "match_clips": { "created_at": [ - 4670 + 4958 ], "download_url": [ - 80 + 83 ], "duration_ms": [ 40 ], "file": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "kills_count": [ 40 ], "match_map": [ - 2716 + 2977 ], "match_map_demo": [ - 2596 + 2857 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "render_jobs": [ - 296, + 300, { "distinct_on": [ - 324, + 328, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -41180,19 +45971,19 @@ export default { 40 ], "order_by": [ - 321, + 325, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 312 ] } ], "render_jobs_aggregate": [ - 297, + 301, { "distinct_on": [ - 324, + 328, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -41202,11 +45993,11 @@ export default { 40 ], "order_by": [ - 321, + 325, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 312 ] } ], @@ -41214,84 +46005,84 @@ export default { 40 ], "size": [ - 264 + 268 ], "target": [ - 4052 + 4335 ], "target_steam_id": [ - 264 + 268 ], "thumbnail_download_url": [ - 80 + 83 ], "thumbnail_url": [ - 80 + 83 ], "title": [ - 80 + 83 ], "user": [ - 4052 + 4335 ], "user_steam_id": [ - 264 + 268 ], "views_count": [ 40 ], "visibility": [ - 1015 + 1079 ], "__typename": [ - 80 + 83 ] }, "match_clips_aggregate": { "aggregate": [ - 2425 + 2686 ], "nodes": [ - 2421 + 2682 ], "__typename": [ - 80 + 83 ] }, "match_clips_aggregate_bool_exp": { "count": [ - 2424 + 2685 ], "__typename": [ - 80 + 83 ] }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 2443 + 2704 ], "distinct": [ 5 ], "filter": [ - 2430 + 2691 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "match_clips_aggregate_fields": { "avg": [ - 2428 + 2689 ], "count": [ 40, { "columns": [ - 2443, + 2704, "[match_clips_select_column!]" ], "distinct": [ @@ -41300,83 +46091,83 @@ export default { } ], "max": [ - 2434 + 2695 ], "min": [ - 2436 + 2697 ], "stddev": [ - 2445 + 2706 ], "stddev_pop": [ - 2447 + 2708 ], "stddev_samp": [ - 2449 + 2710 ], "sum": [ - 2453 + 2714 ], "var_pop": [ - 2457 + 2718 ], "var_samp": [ - 2459 + 2720 ], "variance": [ - 2461 + 2722 ], "__typename": [ - 80 + 83 ] }, "match_clips_aggregate_order_by": { "avg": [ - 2429 + 2690 ], "count": [ - 3094 + 3377 ], "max": [ - 2435 + 2696 ], "min": [ - 2437 + 2698 ], "stddev": [ - 2446 + 2707 ], "stddev_pop": [ - 2448 + 2709 ], "stddev_samp": [ - 2450 + 2711 ], "sum": [ - 2454 + 2715 ], "var_pop": [ - 2458 + 2719 ], "var_samp": [ - 2460 + 2721 ], "variance": [ - 2462 + 2723 ], "__typename": [ - 80 + 83 ] }, "match_clips_arr_rel_insert_input": { "data": [ - 2433 + 2694 ], "on_conflict": [ - 2440 + 2701 ], "__typename": [ - 80 + 83 ] }, "match_clips_avg_fields": { @@ -41402,116 +46193,116 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_clips_avg_order_by": { "duration_ms": [ - 3094 + 3377 ], "kills_count": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "target_steam_id": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "views_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_clips_bool_exp": { "_and": [ - 2430 + 2691 ], "_not": [ - 2430 + 2691 ], "_or": [ - 2430 + 2691 ], "created_at": [ - 4671 + 4959 ], "download_url": [ - 82 + 85 ], "duration_ms": [ 41 ], "file": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "kills_count": [ 41 ], "match_map": [ - 2725 + 2986 ], "match_map_demo": [ - 2608 + 2869 ], "match_map_demo_id": [ - 5172 + 5460 ], "match_map_id": [ - 5172 + 5460 ], "render_jobs": [ - 308 + 312 ], "render_jobs_aggregate": [ - 298 + 302 ], "round": [ 41 ], "size": [ - 266 + 270 ], "target": [ - 4056 + 4339 ], "target_steam_id": [ - 266 + 270 ], "thumbnail_download_url": [ - 82 + 85 ], "thumbnail_url": [ - 82 + 85 ], "title": [ - 82 + 85 ], "user": [ - 4056 + 4339 ], "user_steam_id": [ - 266 + 270 ], "views_count": [ 41 ], "visibility": [ - 1016 + 1080 ], "__typename": [ - 80 + 83 ] }, "match_clips_constraint": {}, @@ -41526,284 +46317,284 @@ export default { 40 ], "size": [ - 264 + 268 ], "target_steam_id": [ - 264 + 268 ], "user_steam_id": [ - 264 + 268 ], "views_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "match_clips_insert_input": { "created_at": [ - 4670 + 4958 ], "duration_ms": [ 40 ], "file": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "kills_count": [ 40 ], "match_map": [ - 2734 + 2995 ], "match_map_demo": [ - 2620 + 2881 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "render_jobs": [ - 305 + 309 ], "round": [ 40 ], "size": [ - 264 + 268 ], "target": [ - 4063 + 4346 ], "target_steam_id": [ - 264 + 268 ], "thumbnail_url": [ - 80 + 83 ], "title": [ - 80 + 83 ], "user": [ - 4063 + 4346 ], "user_steam_id": [ - 264 + 268 ], "views_count": [ 40 ], "visibility": [ - 1015 + 1079 ], "__typename": [ - 80 + 83 ] }, "match_clips_max_fields": { "created_at": [ - 4670 + 4958 ], "download_url": [ - 80 + 83 ], "duration_ms": [ 40 ], "file": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "size": [ - 264 + 268 ], "target_steam_id": [ - 264 + 268 ], "thumbnail_download_url": [ - 80 + 83 ], "thumbnail_url": [ - 80 + 83 ], "title": [ - 80 + 83 ], "user_steam_id": [ - 264 + 268 ], "views_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "match_clips_max_order_by": { "created_at": [ - 3094 + 3377 ], "duration_ms": [ - 3094 + 3377 ], "file": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "kills_count": [ - 3094 + 3377 ], "match_map_demo_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "target_steam_id": [ - 3094 + 3377 ], "thumbnail_url": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "views_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_clips_min_fields": { "created_at": [ - 4670 + 4958 ], "download_url": [ - 80 + 83 ], "duration_ms": [ 40 ], "file": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "size": [ - 264 + 268 ], "target_steam_id": [ - 264 + 268 ], "thumbnail_download_url": [ - 80 + 83 ], "thumbnail_url": [ - 80 + 83 ], "title": [ - 80 + 83 ], "user_steam_id": [ - 264 + 268 ], "views_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "match_clips_min_order_by": { "created_at": [ - 3094 + 3377 ], "duration_ms": [ - 3094 + 3377 ], "file": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "kills_count": [ - 3094 + 3377 ], "match_map_demo_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "target_steam_id": [ - 3094 + 3377 ], "thumbnail_url": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "views_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_clips_mutation_response": { @@ -41811,165 +46602,165 @@ export default { 40 ], "returning": [ - 2421 + 2682 ], "__typename": [ - 80 + 83 ] }, "match_clips_obj_rel_insert_input": { "data": [ - 2433 + 2694 ], "on_conflict": [ - 2440 + 2701 ], "__typename": [ - 80 + 83 ] }, "match_clips_on_conflict": { "constraint": [ - 2431 + 2692 ], "update_columns": [ - 2455 + 2716 ], "where": [ - 2430 + 2691 ], "__typename": [ - 80 + 83 ] }, "match_clips_order_by": { "created_at": [ - 3094 + 3377 ], "download_url": [ - 3094 + 3377 ], "duration_ms": [ - 3094 + 3377 ], "file": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "kills_count": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_demo": [ - 2622 + 2883 ], "match_map_demo_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "render_jobs_aggregate": [ - 303 + 307 ], "round": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "target": [ - 4065 + 4348 ], "target_steam_id": [ - 3094 + 3377 ], "thumbnail_download_url": [ - 3094 + 3377 ], "thumbnail_url": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "user": [ - 4065 + 4348 ], "user_steam_id": [ - 3094 + 3377 ], "views_count": [ - 3094 + 3377 ], "visibility": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_clips_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4670 + 4958 ], "duration_ms": [ 40 ], "file": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "size": [ - 264 + 268 ], "target_steam_id": [ - 264 + 268 ], "thumbnail_url": [ - 80 + 83 ], "title": [ - 80 + 83 ], "user_steam_id": [ - 264 + 268 ], "views_count": [ 40 ], "visibility": [ - 1015 + 1079 ], "__typename": [ - 80 + 83 ] }, "match_clips_stddev_fields": { @@ -41995,33 +46786,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_clips_stddev_order_by": { "duration_ms": [ - 3094 + 3377 ], "kills_count": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "target_steam_id": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "views_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_clips_stddev_pop_fields": { @@ -42047,33 +46838,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 3094 + 3377 ], "kills_count": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "target_steam_id": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "views_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_clips_stddev_samp_fields": { @@ -42099,94 +46890,94 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 3094 + 3377 ], "kills_count": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "target_steam_id": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "views_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_clips_stream_cursor_input": { "initial_value": [ - 2452 + 2713 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "duration_ms": [ 40 ], "file": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "kills_count": [ 40 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "size": [ - 264 + 268 ], "target_steam_id": [ - 264 + 268 ], "thumbnail_url": [ - 80 + 83 ], "title": [ - 80 + 83 ], "user_steam_id": [ - 264 + 268 ], "views_count": [ 40 ], "visibility": [ - 1015 + 1079 ], "__typename": [ - 80 + 83 ] }, "match_clips_sum_fields": { @@ -42200,60 +46991,60 @@ export default { 40 ], "size": [ - 264 + 268 ], "target_steam_id": [ - 264 + 268 ], "user_steam_id": [ - 264 + 268 ], "views_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "match_clips_sum_order_by": { "duration_ms": [ - 3094 + 3377 ], "kills_count": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "target_steam_id": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "views_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 2432 + 2693 ], "_set": [ - 2444 + 2705 ], "where": [ - 2430 + 2691 ], "__typename": [ - 80 + 83 ] }, "match_clips_var_pop_fields": { @@ -42279,33 +47070,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_clips_var_pop_order_by": { "duration_ms": [ - 3094 + 3377 ], "kills_count": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "target_steam_id": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "views_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_clips_var_samp_fields": { @@ -42331,33 +47122,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_clips_var_samp_order_by": { "duration_ms": [ - 3094 + 3377 ], "kills_count": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "target_steam_id": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "views_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_clips_variance_fields": { @@ -42383,147 +47174,147 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_clips_variance_order_by": { "duration_ms": [ - 3094 + 3377 ], "kills_count": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "target_steam_id": [ - 3094 + 3377 ], "user_steam_id": [ - 3094 + 3377 ], "views_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions": { "created_at": [ - 4670 + 4958 ], "error_message": [ - 80 + 83 ], "game_server_node": [ - 1806 + 2067 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "last_activity_at": [ - 4670 + 4958 ], "last_status_at": [ - 4670 + 4958 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_demo": [ - 2596 + 2857 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "status": [ - 80 + 83 ], "status_history": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "stream_url": [ - 80 + 83 ], "watcher": [ - 4052 + 4335 ], "watcher_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_aggregate": { "aggregate": [ - 2467 + 2728 ], "nodes": [ - 2463 + 2724 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 2466 + 2727 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 2489 + 2750 ], "distinct": [ 5 ], "filter": [ - 2473 + 2734 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_aggregate_fields": { "avg": [ - 2471 + 2732 ], "count": [ 40, { "columns": [ - 2489, + 2750, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -42532,91 +47323,91 @@ export default { } ], "max": [ - 2480 + 2741 ], "min": [ - 2482 + 2743 ], "stddev": [ - 2491 + 2752 ], "stddev_pop": [ - 2493 + 2754 ], "stddev_samp": [ - 2495 + 2756 ], "sum": [ - 2499 + 2760 ], "var_pop": [ - 2503 + 2764 ], "var_samp": [ - 2505 + 2766 ], "variance": [ - 2507 + 2768 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 2472 + 2733 ], "count": [ - 3094 + 3377 ], "max": [ - 2481 + 2742 ], "min": [ - 2483 + 2744 ], "stddev": [ - 2492 + 2753 ], "stddev_pop": [ - 2494 + 2755 ], "stddev_samp": [ - 2496 + 2757 ], "sum": [ - 2500 + 2761 ], "var_pop": [ - 2504 + 2765 ], "var_samp": [ - 2506 + 2767 ], "variance": [ - 2508 + 2769 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_append_input": { "status_history": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 2479 + 2740 ], "on_conflict": [ - 2485 + 2746 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_avg_fields": { @@ -42624,95 +47415,95 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_bool_exp": { "_and": [ - 2473 + 2734 ], "_not": [ - 2473 + 2734 ], "_or": [ - 2473 + 2734 ], "created_at": [ - 4671 + 4959 ], "error_message": [ - 82 + 85 ], "game_server_node": [ - 1818 + 2079 ], "game_server_node_id": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "k8s_job_name": [ - 82 + 85 ], "last_activity_at": [ - 4671 + 4959 ], "last_status_at": [ - 4671 + 4959 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_demo": [ - 2608 + 2869 ], "match_map_demo_id": [ - 5172 + 5460 ], "match_map_id": [ - 5172 + 5460 ], "status": [ - 82 + 85 ], "status_history": [ - 1932 + 2193 ], "stream_url": [ - 82 + 85 ], "watcher": [ - 4056 + 4339 ], "watcher_steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_constraint": {}, "match_demo_sessions_delete_at_path_input": { "status_history": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_delete_elem_input": { @@ -42720,261 +47511,261 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_delete_key_input": { "status_history": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_inc_input": { "watcher_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_insert_input": { "created_at": [ - 4670 + 4958 ], "error_message": [ - 80 + 83 ], "game_server_node": [ - 1830 + 2091 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "last_activity_at": [ - 4670 + 4958 ], "last_status_at": [ - 4670 + 4958 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_demo": [ - 2620 + 2881 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "status": [ - 80 + 83 ], "status_history": [ - 1930 + 2191 ], "stream_url": [ - 80 + 83 ], "watcher": [ - 4063 + 4346 ], "watcher_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_max_fields": { "created_at": [ - 4670 + 4958 ], "error_message": [ - 80 + 83 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "last_activity_at": [ - 4670 + 4958 ], "last_status_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "status": [ - 80 + 83 ], "stream_url": [ - 80 + 83 ], "watcher_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_max_order_by": { "created_at": [ - 3094 + 3377 ], "error_message": [ - 3094 + 3377 ], "game_server_node_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "k8s_job_name": [ - 3094 + 3377 ], "last_activity_at": [ - 3094 + 3377 ], "last_status_at": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_demo_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "stream_url": [ - 3094 + 3377 ], "watcher_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_min_fields": { "created_at": [ - 4670 + 4958 ], "error_message": [ - 80 + 83 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "last_activity_at": [ - 4670 + 4958 ], "last_status_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "status": [ - 80 + 83 ], "stream_url": [ - 80 + 83 ], "watcher_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_min_order_by": { "created_at": [ - 3094 + 3377 ], "error_message": [ - 3094 + 3377 ], "game_server_node_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "k8s_job_name": [ - 3094 + 3377 ], "last_activity_at": [ - 3094 + 3377 ], "last_status_at": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_demo_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "stream_url": [ - 3094 + 3377 ], "watcher_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_mutation_response": { @@ -42982,150 +47773,150 @@ export default { 40 ], "returning": [ - 2463 + 2724 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_on_conflict": { "constraint": [ - 2474 + 2735 ], "update_columns": [ - 2501 + 2762 ], "where": [ - 2473 + 2734 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_order_by": { "created_at": [ - 3094 + 3377 ], "error_message": [ - 3094 + 3377 ], "game_server_node": [ - 1832 + 2093 ], "game_server_node_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "k8s_job_name": [ - 3094 + 3377 ], "last_activity_at": [ - 3094 + 3377 ], "last_status_at": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_demo": [ - 2622 + 2883 ], "match_map_demo_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "status_history": [ - 3094 + 3377 ], "stream_url": [ - 3094 + 3377 ], "watcher": [ - 4065 + 4348 ], "watcher_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_prepend_input": { "status_history": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4670 + 4958 ], "error_message": [ - 80 + 83 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "last_activity_at": [ - 4670 + 4958 ], "last_status_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "status": [ - 80 + 83 ], "status_history": [ - 1930 + 2191 ], "stream_url": [ - 80 + 83 ], "watcher_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_stddev_fields": { @@ -43133,15 +47924,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_stddev_pop_fields": { @@ -43149,15 +47940,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_stddev_samp_fields": { @@ -43165,119 +47956,119 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 2498 + 2759 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "error_message": [ - 80 + 83 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "last_activity_at": [ - 4670 + 4958 ], "last_status_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "status": [ - 80 + 83 ], "status_history": [ - 1930 + 2191 ], "stream_url": [ - 80 + 83 ], "watcher_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_sum_fields": { "watcher_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 2469 + 2730 ], "_delete_at_path": [ - 2475 + 2736 ], "_delete_elem": [ - 2476 + 2737 ], "_delete_key": [ - 2477 + 2738 ], "_inc": [ - 2478 + 2739 ], "_prepend": [ - 2488 + 2749 ], "_set": [ - 2490 + 2751 ], "where": [ - 2473 + 2734 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_var_pop_fields": { @@ -43285,15 +48076,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_var_samp_fields": { @@ -43301,15 +48092,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_variance_fields": { @@ -43317,15 +48108,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players": { @@ -43336,124 +48127,124 @@ export default { 5 ], "discord_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_connected": [ 5 ], "lineup": [ - 2554 + 2815 ], "match_lineup_id": [ - 5170 + 5458 ], "party_id": [ - 5170 + 5458 ], "party_source": [ - 1076 + 1140 ], "placeholder_name": [ - 80 + 83 ], "player": [ - 4052 + 4335 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_aggregate": { "aggregate": [ - 2515 + 2776 ], "nodes": [ - 2509 + 2770 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 2512 + 2773 ], "bool_or": [ - 2513 + 2774 ], "count": [ - 2514 + 2775 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2533 + 2794 ], "distinct": [ 5 ], "filter": [ - 2520 + 2781 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2534 + 2795 ], "distinct": [ 5 ], "filter": [ - 2520 + 2781 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 2532 + 2793 ], "distinct": [ 5 ], "filter": [ - 2520 + 2781 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_aggregate_fields": { "avg": [ - 2518 + 2779 ], "count": [ 40, { "columns": [ - 2532, + 2793, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -43462,83 +48253,83 @@ export default { } ], "max": [ - 2524 + 2785 ], "min": [ - 2526 + 2787 ], "stddev": [ - 2536 + 2797 ], "stddev_pop": [ - 2538 + 2799 ], "stddev_samp": [ - 2540 + 2801 ], "sum": [ - 2544 + 2805 ], "var_pop": [ - 2548 + 2809 ], "var_samp": [ - 2550 + 2811 ], "variance": [ - 2552 + 2813 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_aggregate_order_by": { "avg": [ - 2519 + 2780 ], "count": [ - 3094 + 3377 ], "max": [ - 2525 + 2786 ], "min": [ - 2527 + 2788 ], "stddev": [ - 2537 + 2798 ], "stddev_pop": [ - 2539 + 2800 ], "stddev_samp": [ - 2541 + 2802 ], "sum": [ - 2545 + 2806 ], "var_pop": [ - 2549 + 2810 ], "var_samp": [ - 2551 + 2812 ], "variance": [ - 2553 + 2814 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 2523 + 2784 ], "on_conflict": [ - 2529 + 2790 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_avg_fields": { @@ -43546,26 +48337,26 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_avg_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_bool_exp": { "_and": [ - 2520 + 2781 ], "_not": [ - 2520 + 2781 ], "_or": [ - 2520 + 2781 ], "captain": [ 6 @@ -43574,46 +48365,46 @@ export default { 6 ], "discord_id": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "is_connected": [ 6 ], "lineup": [ - 2563 + 2824 ], "match_lineup_id": [ - 5172 + 5460 ], "party_id": [ - 5172 + 5460 ], "party_source": [ - 1077 + 1141 ], "placeholder_name": [ - 82 + 85 ], "player": [ - 4056 + 4339 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_constraint": {}, "match_lineup_players_inc_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_insert_input": { @@ -43624,129 +48415,129 @@ export default { 5 ], "discord_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_connected": [ 5 ], "lineup": [ - 2572 + 2833 ], "match_lineup_id": [ - 5170 + 5458 ], "party_id": [ - 5170 + 5458 ], "party_source": [ - 1076 + 1140 ], "placeholder_name": [ - 80 + 83 ], "player": [ - 4063 + 4346 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_max_fields": { "discord_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "party_id": [ - 5170 + 5458 ], "placeholder_name": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_max_order_by": { "discord_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_lineup_id": [ - 3094 + 3377 ], "party_id": [ - 3094 + 3377 ], "placeholder_name": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_min_fields": { "discord_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "party_id": [ - 5170 + 5458 ], "placeholder_name": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_min_order_by": { "discord_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_lineup_id": [ - 3094 + 3377 ], "party_id": [ - 3094 + 3377 ], "placeholder_name": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_mutation_response": { @@ -43754,73 +48545,73 @@ export default { 40 ], "returning": [ - 2509 + 2770 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_on_conflict": { "constraint": [ - 2521 + 2782 ], "update_columns": [ - 2546 + 2807 ], "where": [ - 2520 + 2781 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_order_by": { "captain": [ - 3094 + 3377 ], "checked_in": [ - 3094 + 3377 ], "discord_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "is_connected": [ - 3094 + 3377 ], "lineup": [ - 2574 + 2835 ], "match_lineup_id": [ - 3094 + 3377 ], "party_id": [ - 3094 + 3377 ], "party_source": [ - 3094 + 3377 ], "placeholder_name": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_select_column": {}, @@ -43834,31 +48625,31 @@ export default { 5 ], "discord_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_connected": [ 5 ], "match_lineup_id": [ - 5170 + 5458 ], "party_id": [ - 5170 + 5458 ], "party_source": [ - 1076 + 1140 ], "placeholder_name": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_stddev_fields": { @@ -43866,15 +48657,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_stddev_pop_fields": { @@ -43882,15 +48673,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_stddev_samp_fields": { @@ -43898,26 +48689,26 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 2543 + 2804 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_stream_cursor_value_input": { @@ -43928,62 +48719,62 @@ export default { 5 ], "discord_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_connected": [ 5 ], "match_lineup_id": [ - 5170 + 5458 ], "party_id": [ - 5170 + 5458 ], "party_source": [ - 1076 + 1140 ], "placeholder_name": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_sum_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 2522 + 2783 ], "_set": [ - 2535 + 2796 ], "where": [ - 2520 + 2781 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_var_pop_fields": { @@ -43991,15 +48782,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_var_samp_fields": { @@ -44007,15 +48798,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_variance_fields": { @@ -44023,15 +48814,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_lineup_players_variance_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineups": { @@ -44045,16 +48836,16 @@ export default { 5 ], "captain": [ - 5326 + 5614 ], "coach": [ - 4052 + 4335 ], "coach_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "is_on_lineup": [ 5 @@ -44069,10 +48860,10 @@ export default { 5 ], "lineup_players": [ - 2509, + 2770, { "distinct_on": [ - 2532, + 2793, "[match_lineup_players_select_column!]" ], "limit": [ @@ -44082,19 +48873,19 @@ export default { 40 ], "order_by": [ - 2530, + 2791, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2781 ] } ], "lineup_players_aggregate": [ - 2510, + 2771, { "distinct_on": [ - 2532, + 2793, "[match_lineup_players_select_column!]" ], "limit": [ @@ -44104,25 +48895,25 @@ export default { 40 ], "order_by": [ - 2530, + 2791, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2781 ] } ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_veto_picks": [ - 2688, + 2949, { "distinct_on": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -44132,19 +48923,19 @@ export default { 40 ], "order_by": [ - 2706, + 2967, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2958 ] } ], "match_veto_picks_aggregate": [ - 2689, + 2950, { "distinct_on": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -44154,75 +48945,75 @@ export default { 40 ], "order_by": [ - 2706, + 2967, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2958 ] } ], "name": [ - 80 + 83 ], "team": [ - 4621 + 4909 ], "team_id": [ - 5170 + 5458 ], "team_name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_lineups_aggregate": { "aggregate": [ - 2558 + 2819 ], "nodes": [ - 2554 + 2815 ], "__typename": [ - 80 + 83 ] }, "match_lineups_aggregate_bool_exp": { "count": [ - 2557 + 2818 ], "__typename": [ - 80 + 83 ] }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 2576 + 2837 ], "distinct": [ 5 ], "filter": [ - 2563 + 2824 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "match_lineups_aggregate_fields": { "avg": [ - 2561 + 2822 ], "count": [ 40, { "columns": [ - 2576, + 2837, "[match_lineups_select_column!]" ], "distinct": [ @@ -44231,83 +49022,83 @@ export default { } ], "max": [ - 2567 + 2828 ], "min": [ - 2569 + 2830 ], "stddev": [ - 2578 + 2839 ], "stddev_pop": [ - 2580 + 2841 ], "stddev_samp": [ - 2582 + 2843 ], "sum": [ - 2586 + 2847 ], "var_pop": [ - 2590 + 2851 ], "var_samp": [ - 2592 + 2853 ], "variance": [ - 2594 + 2855 ], "__typename": [ - 80 + 83 ] }, "match_lineups_aggregate_order_by": { "avg": [ - 2562 + 2823 ], "count": [ - 3094 + 3377 ], "max": [ - 2568 + 2829 ], "min": [ - 2570 + 2831 ], "stddev": [ - 2579 + 2840 ], "stddev_pop": [ - 2581 + 2842 ], "stddev_samp": [ - 2583 + 2844 ], "sum": [ - 2587 + 2848 ], "var_pop": [ - 2591 + 2852 ], "var_samp": [ - 2593 + 2854 ], "variance": [ - 2595 + 2856 ], "__typename": [ - 80 + 83 ] }, "match_lineups_arr_rel_insert_input": { "data": [ - 2566 + 2827 ], "on_conflict": [ - 2573 + 2834 ], "__typename": [ - 80 + 83 ] }, "match_lineups_avg_fields": { @@ -44315,26 +49106,26 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineups_bool_exp": { "_and": [ - 2563 + 2824 ], "_not": [ - 2563 + 2824 ], "_or": [ - 2563 + 2824 ], "can_pick_map_veto": [ 6 @@ -44346,16 +49137,16 @@ export default { 6 ], "captain": [ - 5330 + 5618 ], "coach": [ - 4056 + 4339 ], "coach_steam_id": [ - 266 + 270 ], "id": [ - 5172 + 5460 ], "is_on_lineup": [ 6 @@ -44370,170 +49161,170 @@ export default { 6 ], "lineup_players": [ - 2520 + 2781 ], "lineup_players_aggregate": [ - 2511 + 2772 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_veto_picks": [ - 2697 + 2958 ], "match_veto_picks_aggregate": [ - 2690 + 2951 ], "name": [ - 82 + 85 ], "team": [ - 4632 + 4920 ], "team_id": [ - 5172 + 5460 ], "team_name": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "match_lineups_constraint": {}, "match_lineups_inc_input": { "coach_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_lineups_insert_input": { "captain": [ - 5336 + 5624 ], "coach": [ - 4063 + 4346 ], "coach_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "lineup_players": [ - 2517 + 2778 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_veto_picks": [ - 2696 + 2957 ], "team": [ - 4641 + 4929 ], "team_id": [ - 5170 + 5458 ], "team_name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_lineups_max_fields": { "coach_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "team_name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_lineups_max_order_by": { "coach_steam_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "team_name": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineups_min_fields": { "coach_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "team_name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_lineups_min_order_by": { "coach_steam_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "team_name": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineups_mutation_response": { @@ -44541,126 +49332,126 @@ export default { 40 ], "returning": [ - 2554 + 2815 ], "__typename": [ - 80 + 83 ] }, "match_lineups_obj_rel_insert_input": { "data": [ - 2566 + 2827 ], "on_conflict": [ - 2573 + 2834 ], "__typename": [ - 80 + 83 ] }, "match_lineups_on_conflict": { "constraint": [ - 2564 + 2825 ], "update_columns": [ - 2588 + 2849 ], "where": [ - 2563 + 2824 ], "__typename": [ - 80 + 83 ] }, "match_lineups_order_by": { "can_pick_map_veto": [ - 3094 + 3377 ], "can_pick_region_veto": [ - 3094 + 3377 ], "can_update_lineup": [ - 3094 + 3377 ], "captain": [ - 5337 + 5625 ], "coach": [ - 4065 + 4348 ], "coach_steam_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "is_on_lineup": [ - 3094 + 3377 ], "is_picking_map_veto": [ - 3094 + 3377 ], "is_picking_region_veto": [ - 3094 + 3377 ], "is_ready": [ - 3094 + 3377 ], "lineup_players_aggregate": [ - 2516 + 2777 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_veto_picks_aggregate": [ - 2695 + 2956 ], "name": [ - 3094 + 3377 ], "team": [ - 4643 + 4931 ], "team_id": [ - 3094 + 3377 ], "team_name": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineups_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_lineups_select_column": {}, "match_lineups_set_input": { "coach_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "team_id": [ - 5170 + 5458 ], "team_name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_lineups_stddev_fields": { @@ -44668,15 +49459,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineups_stddev_pop_fields": { @@ -44684,15 +49475,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineups_stddev_samp_fields": { @@ -44700,77 +49491,77 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2585 + 2846 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "match_lineups_stream_cursor_value_input": { "coach_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "team_id": [ - 5170 + 5458 ], "team_name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_lineups_sum_fields": { "coach_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 2565 + 2826 ], "_set": [ - 2577 + 2838 ], "where": [ - 2563 + 2824 ], "__typename": [ - 80 + 83 ] }, "match_lineups_var_pop_fields": { @@ -44778,15 +49569,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineups_var_samp_fields": { @@ -44794,15 +49585,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_lineups_variance_fields": { @@ -44810,31 +49601,31 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_demos": { "bombs": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "clip_render_jobs": [ - 296, + 300, { "distinct_on": [ - 324, + 328, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -44844,19 +49635,19 @@ export default { 40 ], "order_by": [ - 321, + 325, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 312 ] } ], "clip_render_jobs_aggregate": [ - 297, + 301, { "distinct_on": [ - 324, + 328, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -44866,25 +49657,25 @@ export default { 40 ], "order_by": [ - 321, + 325, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 312 ] } ], "created_at": [ - 4670 + 4958 ], "cs2_build": [ - 80 + 83 ], "demo_sessions": [ - 2463, + 2724, { "distinct_on": [ - 2489, + 2750, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -44894,19 +49685,19 @@ export default { 40 ], "order_by": [ - 2486, + 2747, "[match_demo_sessions_order_by!]" ], "where": [ - 2473 + 2734 ] } ], "demo_sessions_aggregate": [ - 2464, + 2725, { "distinct_on": [ - 2489, + 2750, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -44916,48 +49707,48 @@ export default { 40 ], "order_by": [ - 2486, + 2747, "[match_demo_sessions_order_by!]" ], "where": [ - 2473 + 2734 ] } ], "download_url": [ - 80 + 83 ], "duration_seconds": [ 31 ], "file": [ - 80 + 83 ], "geometry_validated": [ 5 ], "id": [ - 5170 + 5458 ], "kills": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "map_name": [ - 80 + 83 ], "match": [ - 2882 + 3161 ], "match_clips": [ - 2421, + 2682, { "distinct_on": [ - 2443, + 2704, "[match_clips_select_column!]" ], "limit": [ @@ -44967,19 +49758,19 @@ export default { 40 ], "order_by": [ - 2441, + 2702, "[match_clips_order_by!]" ], "where": [ - 2430 + 2691 ] } ], "match_clips_aggregate": [ - 2422, + 2683, { "distinct_on": [ - 2443, + 2704, "[match_clips_select_column!]" ], "limit": [ @@ -44989,48 +49780,48 @@ export default { 40 ], "order_by": [ - 2441, + 2702, "[match_clips_order_by!]" ], "where": [ - 2430 + 2691 ] } ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "metadata_parsed_at": [ - 4670 + 4958 ], "playback_file": [ - 80 + 83 ], "playback_size": [ 40 ], "playback_url": [ - 80 + 83 ], "players": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "round_ticks": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], @@ -45044,97 +49835,97 @@ export default { 40 ], "workshop_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_aggregate": { "aggregate": [ - 2602 + 2863 ], "nodes": [ - 2596 + 2857 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2599 + 2860 ], "bool_or": [ - 2600 + 2861 ], "count": [ - 2601 + 2862 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2626 + 2887 ], "distinct": [ 5 ], "filter": [ - 2608 + 2869 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2627 + 2888 ], "distinct": [ 5 ], "filter": [ - 2608 + 2869 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2625 + 2886 ], "distinct": [ 5 ], "filter": [ - 2608 + 2869 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_aggregate_fields": { "avg": [ - 2606 + 2867 ], "count": [ 40, { "columns": [ - 2625, + 2886, "[match_map_demos_select_column!]" ], "distinct": [ @@ -45143,100 +49934,100 @@ export default { } ], "max": [ - 2615 + 2876 ], "min": [ - 2617 + 2878 ], "stddev": [ - 2629 + 2890 ], "stddev_pop": [ - 2631 + 2892 ], "stddev_samp": [ - 2633 + 2894 ], "sum": [ - 2637 + 2898 ], "var_pop": [ - 2641 + 2902 ], "var_samp": [ - 2643 + 2904 ], "variance": [ - 2645 + 2906 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_aggregate_order_by": { "avg": [ - 2607 + 2868 ], "count": [ - 3094 + 3377 ], "max": [ - 2616 + 2877 ], "min": [ - 2618 + 2879 ], "stddev": [ - 2630 + 2891 ], "stddev_pop": [ - 2632 + 2893 ], "stddev_samp": [ - 2634 + 2895 ], "sum": [ - 2638 + 2899 ], "var_pop": [ - 2642 + 2903 ], "var_samp": [ - 2644 + 2905 ], "variance": [ - 2646 + 2907 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_append_input": { "bombs": [ - 1930 + 2191 ], "kills": [ - 1930 + 2191 ], "players": [ - 1930 + 2191 ], "round_ticks": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2614 + 2875 ], "on_conflict": [ - 2621 + 2882 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_avg_fields": { @@ -45256,116 +50047,116 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 3094 + 3377 ], "playback_size": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "tick_rate": [ - 3094 + 3377 ], "total_ticks": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_bool_exp": { "_and": [ - 2608 + 2869 ], "_not": [ - 2608 + 2869 ], "_or": [ - 2608 + 2869 ], "bombs": [ - 1932 + 2193 ], "clip_render_jobs": [ - 308 + 312 ], "clip_render_jobs_aggregate": [ - 298 + 302 ], "created_at": [ - 4671 + 4959 ], "cs2_build": [ - 82 + 85 ], "demo_sessions": [ - 2473 + 2734 ], "demo_sessions_aggregate": [ - 2465 + 2726 ], "download_url": [ - 82 + 85 ], "duration_seconds": [ 32 ], "file": [ - 82 + 85 ], "geometry_validated": [ 6 ], "id": [ - 5172 + 5460 ], "kills": [ - 1932 + 2193 ], "map_name": [ - 82 + 85 ], "match": [ - 2891 + 3172 ], "match_clips": [ - 2430 + 2691 ], "match_clips_aggregate": [ - 2423 + 2684 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "metadata_parsed_at": [ - 4671 + 4959 ], "playback_file": [ - 82 + 85 ], "playback_size": [ 41 ], "playback_url": [ - 82 + 85 ], "players": [ - 1932 + 2193 ], "round_ticks": [ - 1932 + 2193 ], "size": [ 41 @@ -45377,28 +50168,28 @@ export default { 41 ], "workshop_id": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_constraint": {}, "match_map_demos_delete_at_path_input": { "bombs": [ - 80 + 83 ], "kills": [ - 80 + 83 ], "players": [ - 80 + 83 ], "round_ticks": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_delete_elem_input": { @@ -45415,24 +50206,24 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_delete_key_input": { "bombs": [ - 80 + 83 ], "kills": [ - 80 + 83 ], "players": [ - 80 + 83 ], "round_ticks": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_inc_input": { @@ -45449,69 +50240,69 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_insert_input": { "bombs": [ - 1930 + 2191 ], "clip_render_jobs": [ - 305 + 309 ], "created_at": [ - 4670 + 4958 ], "cs2_build": [ - 80 + 83 ], "demo_sessions": [ - 2470 + 2731 ], "file": [ - 80 + 83 ], "geometry_validated": [ 5 ], "id": [ - 5170 + 5458 ], "kills": [ - 1930 + 2191 ], "map_name": [ - 80 + 83 ], "match": [ - 2900 + 3181 ], "match_clips": [ - 2427 + 2688 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "metadata_parsed_at": [ - 4670 + 4958 ], "playback_file": [ - 80 + 83 ], "playback_size": [ 40 ], "players": [ - 1930 + 2191 ], "round_ticks": [ - 1930 + 2191 ], "size": [ 40 @@ -45523,51 +50314,51 @@ export default { 40 ], "workshop_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_max_fields": { "created_at": [ - 4670 + 4958 ], "cs2_build": [ - 80 + 83 ], "download_url": [ - 80 + 83 ], "duration_seconds": [ 31 ], "file": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "map_name": [ - 80 + 83 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "metadata_parsed_at": [ - 4670 + 4958 ], "playback_file": [ - 80 + 83 ], "playback_size": [ 40 ], "playback_url": [ - 80 + 83 ], "size": [ 40 @@ -45579,101 +50370,101 @@ export default { 40 ], "workshop_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_max_order_by": { "created_at": [ - 3094 + 3377 ], "cs2_build": [ - 3094 + 3377 ], "duration_seconds": [ - 3094 + 3377 ], "file": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "map_name": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "metadata_parsed_at": [ - 3094 + 3377 ], "playback_file": [ - 3094 + 3377 ], "playback_size": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "tick_rate": [ - 3094 + 3377 ], "total_ticks": [ - 3094 + 3377 ], "workshop_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_min_fields": { "created_at": [ - 4670 + 4958 ], "cs2_build": [ - 80 + 83 ], "download_url": [ - 80 + 83 ], "duration_seconds": [ 31 ], "file": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "map_name": [ - 80 + 83 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "metadata_parsed_at": [ - 4670 + 4958 ], "playback_file": [ - 80 + 83 ], "playback_size": [ 40 ], "playback_url": [ - 80 + 83 ], "size": [ 40 @@ -45685,60 +50476,60 @@ export default { 40 ], "workshop_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_min_order_by": { "created_at": [ - 3094 + 3377 ], "cs2_build": [ - 3094 + 3377 ], "duration_seconds": [ - 3094 + 3377 ], "file": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "map_name": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "metadata_parsed_at": [ - 3094 + 3377 ], "playback_file": [ - 3094 + 3377 ], "playback_size": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "tick_rate": [ - 3094 + 3377 ], "total_ticks": [ - 3094 + 3377 ], "workshop_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_mutation_response": { @@ -45746,146 +50537,146 @@ export default { 40 ], "returning": [ - 2596 + 2857 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2614 + 2875 ], "on_conflict": [ - 2621 + 2882 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_on_conflict": { "constraint": [ - 2609 + 2870 ], "update_columns": [ - 2639 + 2900 ], "where": [ - 2608 + 2869 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_order_by": { "bombs": [ - 3094 + 3377 ], "clip_render_jobs_aggregate": [ - 303 + 307 ], "created_at": [ - 3094 + 3377 ], "cs2_build": [ - 3094 + 3377 ], "demo_sessions_aggregate": [ - 2468 + 2729 ], "download_url": [ - 3094 + 3377 ], "duration_seconds": [ - 3094 + 3377 ], "file": [ - 3094 + 3377 ], "geometry_validated": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "map_name": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_clips_aggregate": [ - 2426 + 2687 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "metadata_parsed_at": [ - 3094 + 3377 ], "playback_file": [ - 3094 + 3377 ], "playback_size": [ - 3094 + 3377 ], "playback_url": [ - 3094 + 3377 ], "players": [ - 3094 + 3377 ], "round_ticks": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "tick_rate": [ - 3094 + 3377 ], "total_ticks": [ - 3094 + 3377 ], "workshop_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_prepend_input": { "bombs": [ - 1930 + 2191 ], "kills": [ - 1930 + 2191 ], "players": [ - 1930 + 2191 ], "round_ticks": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_select_column": {}, @@ -45893,49 +50684,49 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 1930 + 2191 ], "created_at": [ - 4670 + 4958 ], "cs2_build": [ - 80 + 83 ], "file": [ - 80 + 83 ], "geometry_validated": [ 5 ], "id": [ - 5170 + 5458 ], "kills": [ - 1930 + 2191 ], "map_name": [ - 80 + 83 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "metadata_parsed_at": [ - 4670 + 4958 ], "playback_file": [ - 80 + 83 ], "playback_size": [ 40 ], "players": [ - 1930 + 2191 ], "round_ticks": [ - 1930 + 2191 ], "size": [ 40 @@ -45947,10 +50738,10 @@ export default { 40 ], "workshop_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_stddev_fields": { @@ -45970,27 +50761,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 3094 + 3377 ], "playback_size": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "tick_rate": [ - 3094 + 3377 ], "total_ticks": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_stddev_pop_fields": { @@ -46010,27 +50801,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 3094 + 3377 ], "playback_size": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "tick_rate": [ - 3094 + 3377 ], "total_ticks": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_stddev_samp_fields": { @@ -46050,88 +50841,88 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 3094 + 3377 ], "playback_size": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "tick_rate": [ - 3094 + 3377 ], "total_ticks": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2636 + 2897 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1930 + 2191 ], "created_at": [ - 4670 + 4958 ], "cs2_build": [ - 80 + 83 ], "duration_seconds": [ 31 ], "file": [ - 80 + 83 ], "geometry_validated": [ 5 ], "id": [ - 5170 + 5458 ], "kills": [ - 1930 + 2191 ], "map_name": [ - 80 + 83 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "metadata_parsed_at": [ - 4670 + 4958 ], "playback_file": [ - 80 + 83 ], "playback_size": [ 40 ], "players": [ - 1930 + 2191 ], "round_ticks": [ - 1930 + 2191 ], "size": [ 40 @@ -46143,10 +50934,10 @@ export default { 40 ], "workshop_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_sum_fields": { @@ -46166,57 +50957,57 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 3094 + 3377 ], "playback_size": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "tick_rate": [ - 3094 + 3377 ], "total_ticks": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2604 + 2865 ], "_delete_at_path": [ - 2610 + 2871 ], "_delete_elem": [ - 2611 + 2872 ], "_delete_key": [ - 2612 + 2873 ], "_inc": [ - 2613 + 2874 ], "_prepend": [ - 2624 + 2885 ], "_set": [ - 2628 + 2889 ], "where": [ - 2608 + 2869 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_var_pop_fields": { @@ -46236,27 +51027,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 3094 + 3377 ], "playback_size": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "tick_rate": [ - 3094 + 3377 ], "total_ticks": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_var_samp_fields": { @@ -46276,27 +51067,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 3094 + 3377 ], "playback_size": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "tick_rate": [ - 3094 + 3377 ], "total_ticks": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_variance_fields": { @@ -46316,35 +51107,35 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 3094 + 3377 ], "playback_size": [ - 3094 + 3377 ], "size": [ - 3094 + 3377 ], "tick_rate": [ - 3094 + 3377 ], "total_ticks": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds": { "assists": [ - 3232, + 3515, { "distinct_on": [ - 3255, + 3538, "[player_assists_select_column!]" ], "limit": [ @@ -46354,19 +51145,19 @@ export default { 40 ], "order_by": [ - 3253, + 3536, "[player_assists_order_by!]" ], "where": [ - 3243 + 3526 ] } ], "assists_aggregate": [ - 3233, + 3516, { "distinct_on": [ - 3255, + 3538, "[player_assists_select_column!]" ], "limit": [ @@ -46376,34 +51167,34 @@ export default { 40 ], "order_by": [ - 3253, + 3536, "[player_assists_order_by!]" ], "where": [ - 3243 + 3526 ] } ], "backup_file": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "deleted_at": [ - 4670 + 4958 ], "has_backup_file": [ 5 ], "id": [ - 5170 + 5458 ], "kills": [ - 3449, + 3732, { "distinct_on": [ - 3513, + 3796, "[player_kills_select_column!]" ], "limit": [ @@ -46413,19 +51204,19 @@ export default { 40 ], "order_by": [ - 3511, + 3794, "[player_kills_order_by!]" ], "where": [ - 3460 + 3743 ] } ], "kills_aggregate": [ - 3450, + 3733, { "distinct_on": [ - 3513, + 3796, "[player_kills_select_column!]" ], "limit": [ @@ -46435,11 +51226,11 @@ export default { 40 ], "order_by": [ - 3511, + 3794, "[player_kills_order_by!]" ], "where": [ - 3460 + 3743 ] } ], @@ -46450,7 +51241,7 @@ export default { 40 ], "lineup_1_side": [ - 1299 + 1363 ], "lineup_1_timeouts_available": [ 40 @@ -46462,78 +51253,78 @@ export default { 40 ], "lineup_2_side": [ - 1299 + 1363 ], "lineup_2_timeouts_available": [ 40 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "winning_reason": [ - 1503 + 1567 ], "winning_side": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_aggregate": { "aggregate": [ - 2651 + 2912 ], "nodes": [ - 2647 + 2908 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2650 + 2911 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2668 + 2929 ], "distinct": [ 5 ], "filter": [ - 2656 + 2917 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_aggregate_fields": { "avg": [ - 2654 + 2915 ], "count": [ 40, { "columns": [ - 2668, + 2929, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -46542,83 +51333,83 @@ export default { } ], "max": [ - 2660 + 2921 ], "min": [ - 2662 + 2923 ], "stddev": [ - 2670 + 2931 ], "stddev_pop": [ - 2672 + 2933 ], "stddev_samp": [ - 2674 + 2935 ], "sum": [ - 2678 + 2939 ], "var_pop": [ - 2682 + 2943 ], "var_samp": [ - 2684 + 2945 ], "variance": [ - 2686 + 2947 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2655 + 2916 ], "count": [ - 3094 + 3377 ], "max": [ - 2661 + 2922 ], "min": [ - 2663 + 2924 ], "stddev": [ - 2671 + 2932 ], "stddev_pop": [ - 2673 + 2934 ], "stddev_samp": [ - 2675 + 2936 ], "sum": [ - 2679 + 2940 ], "var_pop": [ - 2683 + 2944 ], "var_samp": [ - 2685 + 2946 ], "variance": [ - 2687 + 2948 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2659 + 2920 ], "on_conflict": [ - 2665 + 2926 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_avg_fields": { @@ -46644,71 +51435,71 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 3094 + 3377 ], "lineup_1_score": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_money": [ - 3094 + 3377 ], "lineup_2_score": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_bool_exp": { "_and": [ - 2656 + 2917 ], "_not": [ - 2656 + 2917 ], "_or": [ - 2656 + 2917 ], "assists": [ - 3243 + 3526 ], "assists_aggregate": [ - 3234 + 3517 ], "backup_file": [ - 82 + 85 ], "created_at": [ - 4671 + 4959 ], "deleted_at": [ - 4671 + 4959 ], "has_backup_file": [ 6 ], "id": [ - 5172 + 5460 ], "kills": [ - 3460 + 3743 ], "kills_aggregate": [ - 3451 + 3734 ], "lineup_1_money": [ 41 @@ -46717,7 +51508,7 @@ export default { 41 ], "lineup_1_side": [ - 1300 + 1364 ], "lineup_1_timeouts_available": [ 41 @@ -46729,31 +51520,31 @@ export default { 41 ], "lineup_2_side": [ - 1300 + 1364 ], "lineup_2_timeouts_available": [ 41 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "round": [ 41 ], "time": [ - 4671 + 4959 ], "winning_reason": [ - 1504 + 1568 ], "winning_side": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_constraint": {}, @@ -46780,27 +51571,27 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_insert_input": { "assists": [ - 3240 + 3523 ], "backup_file": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "deleted_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "kills": [ - 3457 + 3740 ], "lineup_1_money": [ 40 @@ -46809,7 +51600,7 @@ export default { 40 ], "lineup_1_side": [ - 1299 + 1363 ], "lineup_1_timeouts_available": [ 40 @@ -46821,45 +51612,45 @@ export default { 40 ], "lineup_2_side": [ - 1299 + 1363 ], "lineup_2_timeouts_available": [ 40 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "winning_reason": [ - 1503 + 1567 ], "winning_side": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_max_fields": { "backup_file": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "deleted_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "lineup_1_money": [ 40 @@ -46880,80 +51671,80 @@ export default { 40 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "winning_side": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_max_order_by": { "backup_file": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "lineup_1_money": [ - 3094 + 3377 ], "lineup_1_score": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_money": [ - 3094 + 3377 ], "lineup_2_score": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "winning_side": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_min_fields": { "backup_file": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "deleted_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "lineup_1_money": [ 40 @@ -46974,66 +51765,66 @@ export default { 40 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "winning_side": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_min_order_by": { "backup_file": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "lineup_1_money": [ - 3094 + 3377 ], "lineup_1_score": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_money": [ - 3094 + 3377 ], "lineup_2_score": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "winning_side": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_mutation_response": { @@ -47041,115 +51832,115 @@ export default { 40 ], "returning": [ - 2647 + 2908 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_on_conflict": { "constraint": [ - 2657 + 2918 ], "update_columns": [ - 2680 + 2941 ], "where": [ - 2656 + 2917 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_order_by": { "assists_aggregate": [ - 3239 + 3522 ], "backup_file": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "has_backup_file": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "kills_aggregate": [ - 3456 + 3739 ], "lineup_1_money": [ - 3094 + 3377 ], "lineup_1_score": [ - 3094 + 3377 ], "lineup_1_side": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_money": [ - 3094 + 3377 ], "lineup_2_score": [ - 3094 + 3377 ], "lineup_2_side": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "winning_reason": [ - 3094 + 3377 ], "winning_side": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_select_column": {}, "match_map_rounds_set_input": { "backup_file": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "deleted_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "lineup_1_money": [ 40 @@ -47158,7 +51949,7 @@ export default { 40 ], "lineup_1_side": [ - 1299 + 1363 ], "lineup_1_timeouts_available": [ 40 @@ -47170,28 +51961,28 @@ export default { 40 ], "lineup_2_side": [ - 1299 + 1363 ], "lineup_2_timeouts_available": [ 40 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "winning_reason": [ - 1503 + 1567 ], "winning_side": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_stddev_fields": { @@ -47217,33 +52008,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 3094 + 3377 ], "lineup_1_score": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_money": [ - 3094 + 3377 ], "lineup_2_score": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_stddev_pop_fields": { @@ -47269,33 +52060,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 3094 + 3377 ], "lineup_1_score": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_money": [ - 3094 + 3377 ], "lineup_2_score": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_stddev_samp_fields": { @@ -47321,58 +52112,58 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 3094 + 3377 ], "lineup_1_score": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_money": [ - 3094 + 3377 ], "lineup_2_score": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2677 + 2938 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_stream_cursor_value_input": { "backup_file": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "deleted_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "lineup_1_money": [ 40 @@ -47381,7 +52172,7 @@ export default { 40 ], "lineup_1_side": [ - 1299 + 1363 ], "lineup_1_timeouts_available": [ 40 @@ -47393,28 +52184,28 @@ export default { 40 ], "lineup_2_side": [ - 1299 + 1363 ], "lineup_2_timeouts_available": [ 40 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "winning_reason": [ - 1503 + 1567 ], "winning_side": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_sum_fields": { @@ -47440,48 +52231,48 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 3094 + 3377 ], "lineup_1_score": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_money": [ - 3094 + 3377 ], "lineup_2_score": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2658 + 2919 ], "_set": [ - 2669 + 2930 ], "where": [ - 2656 + 2917 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_var_pop_fields": { @@ -47507,33 +52298,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 3094 + 3377 ], "lineup_1_score": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_money": [ - 3094 + 3377 ], "lineup_2_score": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_var_samp_fields": { @@ -47559,33 +52350,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 3094 + 3377 ], "lineup_1_score": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_money": [ - 3094 + 3377 ], "lineup_2_score": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_variance_fields": { @@ -47611,33 +52402,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 3094 + 3377 ], "lineup_1_score": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_money": [ - 3094 + 3377 ], "lineup_2_score": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks": { @@ -47645,113 +52436,113 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "map": [ - 2392 + 2653 ], "map_id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_lineup": [ - 2554 + 2815 ], "match_lineup_id": [ - 5170 + 5458 ], "side": [ - 80 + 83 ], "type": [ - 1483 + 1547 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2694 + 2955 ], "nodes": [ - 2688 + 2949 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_aggregate_bool_exp": { "bool_and": [ - 2691 + 2952 ], "bool_or": [ - 2692 + 2953 ], "count": [ - 2693 + 2954 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 2709 + 2970 ], "distinct": [ 5 ], "filter": [ - 2697 + 2958 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 2710 + 2971 ], "distinct": [ 5 ], "filter": [ - 2697 + 2958 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2708 + 2969 ], "distinct": [ 5 ], "filter": [ - 2697 + 2958 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_aggregate_fields": { @@ -47759,7 +52550,7 @@ export default { 40, { "columns": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -47768,85 +52559,85 @@ export default { } ], "max": [ - 2700 + 2961 ], "min": [ - 2702 + 2963 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 3094 + 3377 ], "max": [ - 2701 + 2962 ], "min": [ - 2703 + 2964 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2699 + 2960 ], "on_conflict": [ - 2705 + 2966 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_bool_exp": { "_and": [ - 2697 + 2958 ], "_not": [ - 2697 + 2958 ], "_or": [ - 2697 + 2958 ], "auto_picked": [ 6 ], "created_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "map": [ - 2401 + 2662 ], "map_id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_lineup": [ - 2563 + 2824 ], "match_lineup_id": [ - 5172 + 5460 ], "side": [ - 82 + 85 ], "type": [ - 1484 + 1548 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_constraint": {}, @@ -47855,129 +52646,129 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "map": [ - 2409 + 2670 ], "map_id": [ - 5170 + 5458 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_lineup": [ - 2572 + 2833 ], "match_lineup_id": [ - 5170 + 5458 ], "side": [ - 80 + 83 ], "type": [ - 1483 + 1547 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_max_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "side": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_max_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "map_id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_lineup_id": [ - 3094 + 3377 ], "side": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_min_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "side": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_min_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "map_id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_lineup_id": [ - 3094 + 3377 ], "side": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_mutation_response": { @@ -47985,70 +52776,70 @@ export default { 40 ], "returning": [ - 2688 + 2949 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2698 + 2959 ], "update_columns": [ - 2714 + 2975 ], "where": [ - 2697 + 2958 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_order_by": { "auto_picked": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "map": [ - 2411 + 2672 ], "map_id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_lineup": [ - 2574 + 2835 ], "match_lineup_id": [ - 3094 + 3377 ], "side": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_select_column": {}, @@ -48059,39 +52850,39 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "side": [ - 80 + 83 ], "type": [ - 1483 + 1547 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2713 + 2974 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_stream_cursor_value_input": { @@ -48099,40 +52890,40 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "side": [ - 80 + 83 ], "type": [ - 1483 + 1547 ], "__typename": [ - 80 + 83 ] }, "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2711 + 2972 ], "where": [ - 2697 + 2958 ], "__typename": [ - 80 + 83 ] }, "match_maps": { @@ -48140,16 +52931,16 @@ export default { 40 ], "created_at": [ - 4670 + 4958 ], "demo_processing_started_at": [ - 4670 + 4958 ], "demos": [ - 2596, + 2857, { "distinct_on": [ - 2625, + 2886, "[match_map_demos_select_column!]" ], "limit": [ @@ -48159,19 +52950,19 @@ export default { 40 ], "order_by": [ - 2622, + 2883, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2869 ] } ], "demos_aggregate": [ - 2597, + 2858, { "distinct_on": [ - 2625, + 2886, "[match_map_demos_select_column!]" ], "limit": [ @@ -48181,31 +52972,31 @@ export default { 40 ], "order_by": [ - 2622, + 2883, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2869 ] } ], "demos_download_url": [ - 80 + 83 ], "demos_total_size": [ 40 ], "e_match_map_status": [ - 1030 + 1094 ], "ended_at": [ - 4670 + 4958 ], "flashes": [ - 3404, + 3687, { "distinct_on": [ - 3427, + 3710, "[player_flashes_select_column!]" ], "limit": [ @@ -48215,19 +53006,19 @@ export default { 40 ], "order_by": [ - 3425, + 3708, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3698 ] } ], "flashes_aggregate": [ - 3405, + 3688, { "distinct_on": [ - 3427, + 3710, "[player_flashes_select_column!]" ], "limit": [ @@ -48237,28 +53028,28 @@ export default { 40 ], "order_by": [ - 3425, + 3708, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3698 ] } ], "id": [ - 5170 + 5458 ], "is_current_map": [ 5 ], "latest_clip_at": [ - 4670 + 4958 ], "lineup_1_score": [ 40 ], "lineup_1_side": [ - 1299 + 1363 ], "lineup_1_timeouts_available": [ 40 @@ -48267,25 +53058,25 @@ export default { 40 ], "lineup_2_side": [ - 1299 + 1363 ], "lineup_2_timeouts_available": [ 40 ], "map": [ - 2392 + 2653 ], "map_id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_clips": [ - 2421, + 2682, { "distinct_on": [ - 2443, + 2704, "[match_clips_select_column!]" ], "limit": [ @@ -48295,19 +53086,19 @@ export default { 40 ], "order_by": [ - 2441, + 2702, "[match_clips_order_by!]" ], "where": [ - 2430 + 2691 ] } ], "match_clips_aggregate": [ - 2422, + 2683, { "distinct_on": [ - 2443, + 2704, "[match_clips_select_column!]" ], "limit": [ @@ -48317,22 +53108,22 @@ export default { 40 ], "order_by": [ - 2441, + 2702, "[match_clips_order_by!]" ], "where": [ - 2430 + 2691 ] } ], "match_id": [ - 5170 + 5458 ], "objectives": [ - 3650, + 3933, { "distinct_on": [ - 3671, + 3954, "[player_objectives_select_column!]" ], "limit": [ @@ -48342,19 +53133,19 @@ export default { 40 ], "order_by": [ - 3669, + 3952, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3942 ] } ], "objectives_aggregate": [ - 3651, + 3934, { "distinct_on": [ - 3671, + 3954, "[player_objectives_select_column!]" ], "limit": [ @@ -48364,11 +53155,11 @@ export default { 40 ], "order_by": [ - 3669, + 3952, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3942 ] } ], @@ -48376,10 +53167,10 @@ export default { 40 ], "player_assists": [ - 3232, + 3515, { "distinct_on": [ - 3255, + 3538, "[player_assists_select_column!]" ], "limit": [ @@ -48389,19 +53180,19 @@ export default { 40 ], "order_by": [ - 3253, + 3536, "[player_assists_order_by!]" ], "where": [ - 3243 + 3526 ] } ], "player_assists_aggregate": [ - 3233, + 3516, { "distinct_on": [ - 3255, + 3538, "[player_assists_select_column!]" ], "limit": [ @@ -48411,19 +53202,19 @@ export default { 40 ], "order_by": [ - 3253, + 3536, "[player_assists_order_by!]" ], "where": [ - 3243 + 3526 ] } ], "player_damages": [ - 3295, + 3578, { "distinct_on": [ - 3316, + 3599, "[player_damages_select_column!]" ], "limit": [ @@ -48433,19 +53224,19 @@ export default { 40 ], "order_by": [ - 3314, + 3597, "[player_damages_order_by!]" ], "where": [ - 3304 + 3587 ] } ], "player_damages_aggregate": [ - 3296, + 3579, { "distinct_on": [ - 3316, + 3599, "[player_damages_select_column!]" ], "limit": [ @@ -48455,19 +53246,19 @@ export default { 40 ], "order_by": [ - 3314, + 3597, "[player_damages_order_by!]" ], "where": [ - 3304 + 3587 ] } ], "player_kills": [ - 3449, + 3732, { "distinct_on": [ - 3513, + 3796, "[player_kills_select_column!]" ], "limit": [ @@ -48477,19 +53268,19 @@ export default { 40 ], "order_by": [ - 3511, + 3794, "[player_kills_order_by!]" ], "where": [ - 3460 + 3743 ] } ], "player_kills_aggregate": [ - 3450, + 3733, { "distinct_on": [ - 3513, + 3796, "[player_kills_select_column!]" ], "limit": [ @@ -48499,19 +53290,19 @@ export default { 40 ], "order_by": [ - 3511, + 3794, "[player_kills_order_by!]" ], "where": [ - 3460 + 3743 ] } ], "player_unused_utilities": [ - 3937, + 4220, { "distinct_on": [ - 3958, + 4241, "[player_unused_utility_select_column!]" ], "limit": [ @@ -48521,19 +53312,19 @@ export default { 40 ], "order_by": [ - 3956, + 4239, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4229 ] } ], "player_unused_utilities_aggregate": [ - 3938, + 4221, { "distinct_on": [ - 3958, + 4241, "[player_unused_utility_select_column!]" ], "limit": [ @@ -48543,11 +53334,11 @@ export default { 40 ], "order_by": [ - 3956, + 4239, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4229 ] } ], @@ -48555,13 +53346,13 @@ export default { 40 ], "public_latest_clip_at": [ - 4670 + 4958 ], "rounds": [ - 2647, + 2908, { "distinct_on": [ - 2668, + 2929, "[match_map_rounds_select_column!]" ], "limit": [ @@ -48571,19 +53362,19 @@ export default { 40 ], "order_by": [ - 2666, + 2927, "[match_map_rounds_order_by!]" ], "where": [ - 2656 + 2917 ] } ], "rounds_aggregate": [ - 2648, + 2909, { "distinct_on": [ - 2668, + 2929, "[match_map_rounds_select_column!]" ], "limit": [ @@ -48593,25 +53384,25 @@ export default { 40 ], "order_by": [ - 2666, + 2927, "[match_map_rounds_order_by!]" ], "where": [ - 2656 + 2917 ] } ], "started_at": [ - 4670 + 4958 ], "status": [ - 1035 + 1099 ], "utility": [ - 3978, + 4261, { "distinct_on": [ - 3999, + 4282, "[player_utility_select_column!]" ], "limit": [ @@ -48621,19 +53412,19 @@ export default { 40 ], "order_by": [ - 3997, + 4280, "[player_utility_order_by!]" ], "where": [ - 3987 + 4270 ] } ], "utility_aggregate": [ - 3979, + 4262, { "distinct_on": [ - 3999, + 4282, "[player_utility_select_column!]" ], "limit": [ @@ -48643,19 +53434,19 @@ export default { 40 ], "order_by": [ - 3997, + 4280, "[player_utility_order_by!]" ], "where": [ - 3987 + 4270 ] } ], "vetos": [ - 2688, + 2949, { "distinct_on": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -48665,19 +53456,19 @@ export default { 40 ], "order_by": [ - 2706, + 2967, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2958 ] } ], "vetos_aggregate": [ - 2689, + 2950, { "distinct_on": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -48687,66 +53478,66 @@ export default { 40 ], "order_by": [ - 2706, + 2967, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2958 ] } ], "winning_lineup_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_maps_aggregate": { "aggregate": [ - 2720 + 2981 ], "nodes": [ - 2716 + 2977 ], "__typename": [ - 80 + 83 ] }, "match_maps_aggregate_bool_exp": { "count": [ - 2719 + 2980 ], "__typename": [ - 80 + 83 ] }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2738 + 2999 ], "distinct": [ 5 ], "filter": [ - 2725 + 2986 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "match_maps_aggregate_fields": { "avg": [ - 2723 + 2984 ], "count": [ 40, { "columns": [ - 2738, + 2999, "[match_maps_select_column!]" ], "distinct": [ @@ -48755,83 +53546,83 @@ export default { } ], "max": [ - 2729 + 2990 ], "min": [ - 2731 + 2992 ], "stddev": [ - 2740 + 3001 ], "stddev_pop": [ - 2742 + 3003 ], "stddev_samp": [ - 2744 + 3005 ], "sum": [ - 2748 + 3009 ], "var_pop": [ - 2752 + 3013 ], "var_samp": [ - 2754 + 3015 ], "variance": [ - 2756 + 3017 ], "__typename": [ - 80 + 83 ] }, "match_maps_aggregate_order_by": { "avg": [ - 2724 + 2985 ], "count": [ - 3094 + 3377 ], "max": [ - 2730 + 2991 ], "min": [ - 2732 + 2993 ], "stddev": [ - 2741 + 3002 ], "stddev_pop": [ - 2743 + 3004 ], "stddev_samp": [ - 2745 + 3006 ], "sum": [ - 2749 + 3010 ], "var_pop": [ - 2753 + 3014 ], "var_samp": [ - 2755 + 3016 ], "variance": [ - 2757 + 3018 ], "__typename": [ - 80 + 83 ] }, "match_maps_arr_rel_insert_input": { "data": [ - 2728 + 2989 ], "on_conflict": [ - 2735 + 2996 ], "__typename": [ - 80 + 83 ] }, "match_maps_avg_fields": { @@ -48860,86 +53651,86 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_maps_avg_order_by": { "clips_count": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "public_clips_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_maps_bool_exp": { "_and": [ - 2725 + 2986 ], "_not": [ - 2725 + 2986 ], "_or": [ - 2725 + 2986 ], "clips_count": [ 41 ], "created_at": [ - 4671 + 4959 ], "demo_processing_started_at": [ - 4671 + 4959 ], "demos": [ - 2608 + 2869 ], "demos_aggregate": [ - 2598 + 2859 ], "demos_download_url": [ - 82 + 85 ], "demos_total_size": [ 41 ], "e_match_map_status": [ - 1033 + 1097 ], "ended_at": [ - 4671 + 4959 ], "flashes": [ - 3415 + 3698 ], "flashes_aggregate": [ - 3406 + 3689 ], "id": [ - 5172 + 5460 ], "is_current_map": [ 6 ], "latest_clip_at": [ - 4671 + 4959 ], "lineup_1_score": [ 41 ], "lineup_1_side": [ - 1300 + 1364 ], "lineup_1_timeouts_available": [ 41 @@ -48948,97 +53739,97 @@ export default { 41 ], "lineup_2_side": [ - 1300 + 1364 ], "lineup_2_timeouts_available": [ 41 ], "map": [ - 2401 + 2662 ], "map_id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_clips": [ - 2430 + 2691 ], "match_clips_aggregate": [ - 2423 + 2684 ], "match_id": [ - 5172 + 5460 ], "objectives": [ - 3659 + 3942 ], "objectives_aggregate": [ - 3652 + 3935 ], "order": [ 41 ], "player_assists": [ - 3243 + 3526 ], "player_assists_aggregate": [ - 3234 + 3517 ], "player_damages": [ - 3304 + 3587 ], "player_damages_aggregate": [ - 3297 + 3580 ], "player_kills": [ - 3460 + 3743 ], "player_kills_aggregate": [ - 3451 + 3734 ], "player_unused_utilities": [ - 3946 + 4229 ], "player_unused_utilities_aggregate": [ - 3939 + 4222 ], "public_clips_count": [ 41 ], "public_latest_clip_at": [ - 4671 + 4959 ], "rounds": [ - 2656 + 2917 ], "rounds_aggregate": [ - 2649 + 2910 ], "started_at": [ - 4671 + 4959 ], "status": [ - 1036 + 1100 ], "utility": [ - 3987 + 4270 ], "utility_aggregate": [ - 3980 + 4263 ], "vetos": [ - 2697 + 2958 ], "vetos_aggregate": [ - 2690 + 2951 ], "winning_lineup_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "match_maps_constraint": {}, @@ -49059,7 +53850,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "match_maps_insert_input": { @@ -49067,100 +53858,100 @@ export default { 40 ], "created_at": [ - 4670 + 4958 ], "demo_processing_started_at": [ - 4670 + 4958 ], "demos": [ - 2605 + 2866 ], "e_match_map_status": [ - 1041 + 1105 ], "ended_at": [ - 4670 + 4958 ], "flashes": [ - 3412 + 3695 ], "id": [ - 5170 + 5458 ], "latest_clip_at": [ - 4670 + 4958 ], "lineup_1_side": [ - 1299 + 1363 ], "lineup_1_timeouts_available": [ 40 ], "lineup_2_side": [ - 1299 + 1363 ], "lineup_2_timeouts_available": [ 40 ], "map": [ - 2409 + 2670 ], "map_id": [ - 5170 + 5458 ], "match": [ - 2900 + 3181 ], "match_clips": [ - 2427 + 2688 ], "match_id": [ - 5170 + 5458 ], "objectives": [ - 3656 + 3939 ], "order": [ 40 ], "player_assists": [ - 3240 + 3523 ], "player_damages": [ - 3301 + 3584 ], "player_kills": [ - 3457 + 3740 ], "player_unused_utilities": [ - 3943 + 4226 ], "public_clips_count": [ 40 ], "public_latest_clip_at": [ - 4670 + 4958 ], "rounds": [ - 2653 + 2914 ], "started_at": [ - 4670 + 4958 ], "status": [ - 1035 + 1099 ], "utility": [ - 3984 + 4267 ], "vetos": [ - 2696 + 2957 ], "winning_lineup_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_maps_max_fields": { @@ -49168,25 +53959,25 @@ export default { 40 ], "created_at": [ - 4670 + 4958 ], "demo_processing_started_at": [ - 4670 + 4958 ], "demos_download_url": [ - 80 + 83 ], "demos_total_size": [ 40 ], "ended_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "latest_clip_at": [ - 4670 + 4958 ], "lineup_1_score": [ 40 @@ -49201,10 +53992,10 @@ export default { 40 ], "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "order": [ 40 @@ -49213,66 +54004,66 @@ export default { 40 ], "public_latest_clip_at": [ - 4670 + 4958 ], "started_at": [ - 4670 + 4958 ], "winning_lineup_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_maps_max_order_by": { "clips_count": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "demo_processing_started_at": [ - 3094 + 3377 ], "ended_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "latest_clip_at": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "map_id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "public_clips_count": [ - 3094 + 3377 ], "public_latest_clip_at": [ - 3094 + 3377 ], "started_at": [ - 3094 + 3377 ], "winning_lineup_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_maps_min_fields": { @@ -49280,25 +54071,25 @@ export default { 40 ], "created_at": [ - 4670 + 4958 ], "demo_processing_started_at": [ - 4670 + 4958 ], "demos_download_url": [ - 80 + 83 ], "demos_total_size": [ 40 ], "ended_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "latest_clip_at": [ - 4670 + 4958 ], "lineup_1_score": [ 40 @@ -49313,10 +54104,10 @@ export default { 40 ], "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "order": [ 40 @@ -49325,66 +54116,66 @@ export default { 40 ], "public_latest_clip_at": [ - 4670 + 4958 ], "started_at": [ - 4670 + 4958 ], "winning_lineup_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_maps_min_order_by": { "clips_count": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "demo_processing_started_at": [ - 3094 + 3377 ], "ended_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "latest_clip_at": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "map_id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "public_clips_count": [ - 3094 + 3377 ], "public_latest_clip_at": [ - 3094 + 3377 ], "started_at": [ - 3094 + 3377 ], "winning_lineup_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_maps_mutation_response": { @@ -49392,159 +54183,159 @@ export default { 40 ], "returning": [ - 2716 + 2977 ], "__typename": [ - 80 + 83 ] }, "match_maps_obj_rel_insert_input": { "data": [ - 2728 + 2989 ], "on_conflict": [ - 2735 + 2996 ], "__typename": [ - 80 + 83 ] }, "match_maps_on_conflict": { "constraint": [ - 2726 + 2987 ], "update_columns": [ - 2750 + 3011 ], "where": [ - 2725 + 2986 ], "__typename": [ - 80 + 83 ] }, "match_maps_order_by": { "clips_count": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "demo_processing_started_at": [ - 3094 + 3377 ], "demos_aggregate": [ - 2603 + 2864 ], "demos_download_url": [ - 3094 + 3377 ], "demos_total_size": [ - 3094 + 3377 ], "e_match_map_status": [ - 1043 + 1107 ], "ended_at": [ - 3094 + 3377 ], "flashes_aggregate": [ - 3411 + 3694 ], "id": [ - 3094 + 3377 ], "is_current_map": [ - 3094 + 3377 ], "latest_clip_at": [ - 3094 + 3377 ], "lineup_1_score": [ - 3094 + 3377 ], "lineup_1_side": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_score": [ - 3094 + 3377 ], "lineup_2_side": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "map": [ - 2411 + 2672 ], "map_id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_clips_aggregate": [ - 2426 + 2687 ], "match_id": [ - 3094 + 3377 ], "objectives_aggregate": [ - 3655 + 3938 ], "order": [ - 3094 + 3377 ], "player_assists_aggregate": [ - 3239 + 3522 ], "player_damages_aggregate": [ - 3300 + 3583 ], "player_kills_aggregate": [ - 3456 + 3739 ], "player_unused_utilities_aggregate": [ - 3942 + 4225 ], "public_clips_count": [ - 3094 + 3377 ], "public_latest_clip_at": [ - 3094 + 3377 ], "rounds_aggregate": [ - 2652 + 2913 ], "started_at": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "utility_aggregate": [ - 3983 + 4266 ], "vetos_aggregate": [ - 2695 + 2956 ], "winning_lineup_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_maps_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_maps_select_column": {}, @@ -49553,37 +54344,37 @@ export default { 40 ], "created_at": [ - 4670 + 4958 ], "demo_processing_started_at": [ - 4670 + 4958 ], "ended_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "latest_clip_at": [ - 4670 + 4958 ], "lineup_1_side": [ - 1299 + 1363 ], "lineup_1_timeouts_available": [ 40 ], "lineup_2_side": [ - 1299 + 1363 ], "lineup_2_timeouts_available": [ 40 ], "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "order": [ 40 @@ -49592,19 +54383,19 @@ export default { 40 ], "public_latest_clip_at": [ - 4670 + 4958 ], "started_at": [ - 4670 + 4958 ], "status": [ - 1035 + 1099 ], "winning_lineup_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_maps_stddev_fields": { @@ -49633,27 +54424,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_maps_stddev_order_by": { "clips_count": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "public_clips_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_maps_stddev_pop_fields": { @@ -49682,27 +54473,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "public_clips_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_maps_stddev_samp_fields": { @@ -49731,38 +54522,38 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "public_clips_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_maps_stream_cursor_input": { "initial_value": [ - 2747 + 3008 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "match_maps_stream_cursor_value_input": { @@ -49770,37 +54561,37 @@ export default { 40 ], "created_at": [ - 4670 + 4958 ], "demo_processing_started_at": [ - 4670 + 4958 ], "ended_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "latest_clip_at": [ - 4670 + 4958 ], "lineup_1_side": [ - 1299 + 1363 ], "lineup_1_timeouts_available": [ 40 ], "lineup_2_side": [ - 1299 + 1363 ], "lineup_2_timeouts_available": [ 40 ], "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "order": [ 40 @@ -49809,19 +54600,19 @@ export default { 40 ], "public_latest_clip_at": [ - 4670 + 4958 ], "started_at": [ - 4670 + 4958 ], "status": [ - 1035 + 1099 ], "winning_lineup_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_maps_sum_fields": { @@ -49850,42 +54641,42 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "match_maps_sum_order_by": { "clips_count": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "public_clips_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2727 + 2988 ], "_set": [ - 2739 + 3000 ], "where": [ - 2725 + 2986 ], "__typename": [ - 80 + 83 ] }, "match_maps_var_pop_fields": { @@ -49914,27 +54705,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_maps_var_pop_order_by": { "clips_count": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "public_clips_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_maps_var_samp_fields": { @@ -49963,27 +54754,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_maps_var_samp_order_by": { "clips_count": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "public_clips_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_maps_variance_fields": { @@ -50012,27 +54803,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_maps_variance_order_by": { "clips_count": [ - 3094 + 3377 ], "lineup_1_timeouts_available": [ - 3094 + 3377 ], "lineup_2_timeouts_available": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "public_clips_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_options": { @@ -50052,7 +54843,7 @@ export default { 5 ], "check_in_setting": [ - 642 + 646 ], "coaches": [ 5 @@ -50060,6 +54851,12 @@ export default { "default_models": [ 5 ], + "game_mode": [ + 1920 + ], + "game_mode_id": [ + 5458 + ], "halftime_pausematch": [ 5 ], @@ -50067,10 +54864,10 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "invite_code": [ - 80 + 83 ], "knife_round": [ 5 @@ -50079,22 +54876,22 @@ export default { 40 ], "map_pool": [ - 2373 + 2634 ], "map_pool_id": [ - 5170 + 5458 ], "map_veto": [ 5 ], "match_mode": [ - 1056 + 1120 ], "matches": [ - 2882, + 3161, { "distinct_on": [ - 2904, + 3185, "[matches_select_column!]" ], "limit": [ @@ -50104,19 +54901,19 @@ export default { 40 ], "order_by": [ - 2902, + 3183, "[matches_order_by!]" ], "where": [ - 2891 + 3172 ] } ], "matches_aggregate": [ - 2883, + 3162, { "distinct_on": [ - 2904, + 3185, "[matches_select_column!]" ], "limit": [ @@ -50126,11 +54923,11 @@ export default { 40 ], "order_by": [ - 2902, + 3183, "[matches_order_by!]" ], "where": [ - 2891 + 3172 ] } ], @@ -50147,65 +54944,130 @@ export default { 5 ], "ready_setting": [ - 1218 + 1282 ], "region_veto": [ 5 ], "regions": [ - 80 + 83 ], "round_restart_delay": [ 40 ], "tech_timeout_setting": [ - 1380 + 1444 ], "timeout_setting": [ - 1380 + 1444 ], "tournament": [ - 5106 + 5394 ], "tournament_bracket": [ - 4714 + 5002 ], "tournament_stage": [ - 4931 + 5219 ], "tv_delay": [ 40 ], "type": [ - 1117 + 1181 ], "veto_pick_timeout": [ 40 ], "__typename": [ - 80 + 83 ] }, "match_options_aggregate": { "aggregate": [ - 2760 + 3025 ], "nodes": [ - 2758 + 3019 ], "__typename": [ - 80 + 83 + ] + }, + "match_options_aggregate_bool_exp": { + "bool_and": [ + 3022 + ], + "bool_or": [ + 3023 + ], + "count": [ + 3024 + ], + "__typename": [ + 83 + ] + }, + "match_options_aggregate_bool_exp_bool_and": { + "arguments": [ + 3044 + ], + "distinct": [ + 5 + ], + "filter": [ + 3030 + ], + "predicate": [ + 6 + ], + "__typename": [ + 83 + ] + }, + "match_options_aggregate_bool_exp_bool_or": { + "arguments": [ + 3045 + ], + "distinct": [ + 5 + ], + "filter": [ + 3030 + ], + "predicate": [ + 6 + ], + "__typename": [ + 83 + ] + }, + "match_options_aggregate_bool_exp_count": { + "arguments": [ + 3043 + ], + "distinct": [ + 5 + ], + "filter": [ + 3030 + ], + "predicate": [ + 41 + ], + "__typename": [ + 83 ] }, "match_options_aggregate_fields": { "avg": [ - 2761 + 3028 ], "count": [ 40, { "columns": [ - 2773, + 3043, "[match_options_select_column!]" ], "distinct": [ @@ -50214,34 +55076,83 @@ export default { } ], "max": [ - 2766 + 3034 ], "min": [ - 2767 + 3036 ], "stddev": [ - 2775 + 3047 ], "stddev_pop": [ - 2776 + 3049 ], "stddev_samp": [ - 2777 + 3051 ], "sum": [ - 2780 + 3055 ], "var_pop": [ - 2783 + 3059 ], "var_samp": [ - 2784 + 3061 ], "variance": [ - 2785 + 3063 ], "__typename": [ - 80 + 83 + ] + }, + "match_options_aggregate_order_by": { + "avg": [ + 3029 + ], + "count": [ + 3377 + ], + "max": [ + 3035 + ], + "min": [ + 3037 + ], + "stddev": [ + 3048 + ], + "stddev_pop": [ + 3050 + ], + "stddev_samp": [ + 3052 + ], + "sum": [ + 3056 + ], + "var_pop": [ + 3060 + ], + "var_samp": [ + 3062 + ], + "variance": [ + 3064 + ], + "__typename": [ + 83 + ] + }, + "match_options_arr_rel_insert_input": { + "data": [ + 3033 + ], + "on_conflict": [ + 3040 + ], + "__typename": [ + 83 ] }, "match_options_avg_fields": { @@ -50270,18 +55181,47 @@ export default { 31 ], "__typename": [ - 80 + 83 + ] + }, + "match_options_avg_order_by": { + "auto_cancel_duration": [ + 3377 + ], + "best_of": [ + 3377 + ], + "live_match_timeout": [ + 3377 + ], + "mr": [ + 3377 + ], + "number_of_substitutes": [ + 3377 + ], + "round_restart_delay": [ + 3377 + ], + "tv_delay": [ + 3377 + ], + "veto_pick_timeout": [ + 3377 + ], + "__typename": [ + 83 ] }, "match_options_bool_exp": { "_and": [ - 2762 + 3030 ], "_not": [ - 2762 + 3030 ], "_or": [ - 2762 + 3030 ], "auto_cancel_duration": [ 41 @@ -50299,7 +55239,7 @@ export default { 6 ], "check_in_setting": [ - 643 + 647 ], "coaches": [ 6 @@ -50307,6 +55247,12 @@ export default { "default_models": [ 6 ], + "game_mode": [ + 1924 + ], + "game_mode_id": [ + 5460 + ], "halftime_pausematch": [ 6 ], @@ -50314,10 +55260,10 @@ export default { 6 ], "id": [ - 5172 + 5460 ], "invite_code": [ - 82 + 85 ], "knife_round": [ 6 @@ -50326,22 +55272,22 @@ export default { 41 ], "map_pool": [ - 2376 + 2637 ], "map_pool_id": [ - 5172 + 5460 ], "map_veto": [ 6 ], "match_mode": [ - 1057 + 1121 ], "matches": [ - 2891 + 3172 ], "matches_aggregate": [ - 2884 + 3163 ], "mr": [ 41 @@ -50356,43 +55302,43 @@ export default { 6 ], "ready_setting": [ - 1219 + 1283 ], "region_veto": [ 6 ], "regions": [ - 81 + 84 ], "round_restart_delay": [ 41 ], "tech_timeout_setting": [ - 1381 + 1445 ], "timeout_setting": [ - 1381 + 1445 ], "tournament": [ - 5127 + 5415 ], "tournament_bracket": [ - 4725 + 5013 ], "tournament_stage": [ - 4943 + 5231 ], "tv_delay": [ 41 ], "type": [ - 1118 + 1182 ], "veto_pick_timeout": [ 41 ], "__typename": [ - 80 + 83 ] }, "match_options_constraint": {}, @@ -50422,7 +55368,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "match_options_insert_input": { @@ -50442,7 +55388,7 @@ export default { 5 ], "check_in_setting": [ - 642 + 646 ], "coaches": [ 5 @@ -50450,14 +55396,20 @@ export default { "default_models": [ 5 ], + "game_mode": [ + 1933 + ], + "game_mode_id": [ + 5458 + ], "halftime_pausematch": [ 5 ], "id": [ - 5170 + 5458 ], "invite_code": [ - 80 + 83 ], "knife_round": [ 5 @@ -50466,19 +55418,19 @@ export default { 40 ], "map_pool": [ - 2382 + 2643 ], "map_pool_id": [ - 5170 + 5458 ], "map_veto": [ 5 ], "match_mode": [ - 1056 + 1120 ], "matches": [ - 2888 + 3169 ], "mr": [ 40 @@ -50493,43 +55445,43 @@ export default { 5 ], "ready_setting": [ - 1218 + 1282 ], "region_veto": [ 5 ], "regions": [ - 80 + 83 ], "round_restart_delay": [ 40 ], "tech_timeout_setting": [ - 1380 + 1444 ], "timeout_setting": [ - 1380 + 1444 ], "tournament": [ - 5136 + 5424 ], "tournament_bracket": [ - 4734 + 5022 ], "tournament_stage": [ - 4955 + 5243 ], "tv_delay": [ 40 ], "type": [ - 1117 + 1181 ], "veto_pick_timeout": [ 40 ], "__typename": [ - 80 + 83 ] }, "match_options_max_fields": { @@ -50539,17 +55491,20 @@ export default { "best_of": [ 40 ], + "game_mode_id": [ + 5458 + ], "id": [ - 5170 + 5458 ], "invite_code": [ - 80 + 83 ], "live_match_timeout": [ 40 ], "map_pool_id": [ - 5170 + 5458 ], "mr": [ 40 @@ -50558,7 +55513,7 @@ export default { 40 ], "regions": [ - 80 + 83 ], "round_restart_delay": [ 40 @@ -50570,7 +55525,51 @@ export default { 40 ], "__typename": [ - 80 + 83 + ] + }, + "match_options_max_order_by": { + "auto_cancel_duration": [ + 3377 + ], + "best_of": [ + 3377 + ], + "game_mode_id": [ + 3377 + ], + "id": [ + 3377 + ], + "invite_code": [ + 3377 + ], + "live_match_timeout": [ + 3377 + ], + "map_pool_id": [ + 3377 + ], + "mr": [ + 3377 + ], + "number_of_substitutes": [ + 3377 + ], + "regions": [ + 3377 + ], + "round_restart_delay": [ + 3377 + ], + "tv_delay": [ + 3377 + ], + "veto_pick_timeout": [ + 3377 + ], + "__typename": [ + 83 ] }, "match_options_min_fields": { @@ -50580,17 +55579,20 @@ export default { "best_of": [ 40 ], + "game_mode_id": [ + 5458 + ], "id": [ - 5170 + 5458 ], "invite_code": [ - 80 + 83 ], "live_match_timeout": [ 40 ], "map_pool_id": [ - 5170 + 5458 ], "mr": [ 40 @@ -50599,7 +55601,7 @@ export default { 40 ], "regions": [ - 80 + 83 ], "round_restart_delay": [ 40 @@ -50611,7 +55613,51 @@ export default { 40 ], "__typename": [ - 80 + 83 + ] + }, + "match_options_min_order_by": { + "auto_cancel_duration": [ + 3377 + ], + "best_of": [ + 3377 + ], + "game_mode_id": [ + 3377 + ], + "id": [ + 3377 + ], + "invite_code": [ + 3377 + ], + "live_match_timeout": [ + 3377 + ], + "map_pool_id": [ + 3377 + ], + "mr": [ + 3377 + ], + "number_of_substitutes": [ + 3377 + ], + "regions": [ + 3377 + ], + "round_restart_delay": [ + 3377 + ], + "tv_delay": [ + 3377 + ], + "veto_pick_timeout": [ + 3377 + ], + "__typename": [ + 83 ] }, "match_options_mutation_response": { @@ -50619,156 +55665,164 @@ export default { 40 ], "returning": [ - 2758 + 3019 ], "__typename": [ - 80 + 83 ] }, "match_options_obj_rel_insert_input": { "data": [ - 2765 + 3033 ], "on_conflict": [ - 2770 + 3040 ], "__typename": [ - 80 + 83 ] }, "match_options_on_conflict": { "constraint": [ - 2763 + 3031 ], "update_columns": [ - 2781 + 3057 ], "where": [ - 2762 + 3030 ], "__typename": [ - 80 + 83 ] }, "match_options_order_by": { "auto_cancel_duration": [ - 3094 + 3377 ], "auto_cancellation": [ - 3094 + 3377 ], "best_of": [ - 3094 + 3377 ], "camera_allow_teammates": [ - 3094 + 3377 ], "camera_required": [ - 3094 + 3377 ], "check_in_setting": [ - 3094 + 3377 ], "coaches": [ - 3094 + 3377 ], "default_models": [ - 3094 + 3377 + ], + "game_mode": [ + 1935 + ], + "game_mode_id": [ + 3377 ], "halftime_pausematch": [ - 3094 + 3377 ], "has_active_matches": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "invite_code": [ - 3094 + 3377 ], "knife_round": [ - 3094 + 3377 ], "live_match_timeout": [ - 3094 + 3377 ], "map_pool": [ - 2384 + 2645 ], "map_pool_id": [ - 3094 + 3377 ], "map_veto": [ - 3094 + 3377 ], "match_mode": [ - 3094 + 3377 ], "matches_aggregate": [ - 2887 + 3168 ], "mr": [ - 3094 + 3377 ], "number_of_substitutes": [ - 3094 + 3377 ], "overtime": [ - 3094 + 3377 ], "prefer_dedicated_server": [ - 3094 + 3377 ], "ready_setting": [ - 3094 + 3377 ], "region_veto": [ - 3094 + 3377 ], "regions": [ - 3094 + 3377 ], "round_restart_delay": [ - 3094 + 3377 ], "tech_timeout_setting": [ - 3094 + 3377 ], "timeout_setting": [ - 3094 + 3377 ], "tournament": [ - 5138 + 5426 ], "tournament_bracket": [ - 4736 + 5024 ], "tournament_stage": [ - 4957 + 5245 ], "tv_delay": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "veto_pick_timeout": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_options_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "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 @@ -50786,7 +55840,7 @@ export default { 5 ], "check_in_setting": [ - 642 + 646 ], "coaches": [ 5 @@ -50794,14 +55848,17 @@ export default { "default_models": [ 5 ], + "game_mode_id": [ + 5458 + ], "halftime_pausematch": [ 5 ], "id": [ - 5170 + 5458 ], "invite_code": [ - 80 + 83 ], "knife_round": [ 5 @@ -50810,13 +55867,13 @@ export default { 40 ], "map_pool_id": [ - 5170 + 5458 ], "map_veto": [ 5 ], "match_mode": [ - 1056 + 1120 ], "mr": [ 40 @@ -50831,34 +55888,34 @@ export default { 5 ], "ready_setting": [ - 1218 + 1282 ], "region_veto": [ 5 ], "regions": [ - 80 + 83 ], "round_restart_delay": [ 40 ], "tech_timeout_setting": [ - 1380 + 1444 ], "timeout_setting": [ - 1380 + 1444 ], "tv_delay": [ 40 ], "type": [ - 1117 + 1181 ], "veto_pick_timeout": [ 40 ], "__typename": [ - 80 + 83 ] }, "match_options_stddev_fields": { @@ -50887,7 +55944,36 @@ export default { 31 ], "__typename": [ - 80 + 83 + ] + }, + "match_options_stddev_order_by": { + "auto_cancel_duration": [ + 3377 + ], + "best_of": [ + 3377 + ], + "live_match_timeout": [ + 3377 + ], + "mr": [ + 3377 + ], + "number_of_substitutes": [ + 3377 + ], + "round_restart_delay": [ + 3377 + ], + "tv_delay": [ + 3377 + ], + "veto_pick_timeout": [ + 3377 + ], + "__typename": [ + 83 ] }, "match_options_stddev_pop_fields": { @@ -50916,7 +56002,36 @@ export default { 31 ], "__typename": [ - 80 + 83 + ] + }, + "match_options_stddev_pop_order_by": { + "auto_cancel_duration": [ + 3377 + ], + "best_of": [ + 3377 + ], + "live_match_timeout": [ + 3377 + ], + "mr": [ + 3377 + ], + "number_of_substitutes": [ + 3377 + ], + "round_restart_delay": [ + 3377 + ], + "tv_delay": [ + 3377 + ], + "veto_pick_timeout": [ + 3377 + ], + "__typename": [ + 83 ] }, "match_options_stddev_samp_fields": { @@ -50945,18 +56060,47 @@ export default { 31 ], "__typename": [ - 80 + 83 + ] + }, + "match_options_stddev_samp_order_by": { + "auto_cancel_duration": [ + 3377 + ], + "best_of": [ + 3377 + ], + "live_match_timeout": [ + 3377 + ], + "mr": [ + 3377 + ], + "number_of_substitutes": [ + 3377 + ], + "round_restart_delay": [ + 3377 + ], + "tv_delay": [ + 3377 + ], + "veto_pick_timeout": [ + 3377 + ], + "__typename": [ + 83 ] }, "match_options_stream_cursor_input": { "initial_value": [ - 2779 + 3054 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "match_options_stream_cursor_value_input": { @@ -50976,7 +56120,7 @@ export default { 5 ], "check_in_setting": [ - 642 + 646 ], "coaches": [ 5 @@ -50984,14 +56128,17 @@ export default { "default_models": [ 5 ], + "game_mode_id": [ + 5458 + ], "halftime_pausematch": [ 5 ], "id": [ - 5170 + 5458 ], "invite_code": [ - 80 + 83 ], "knife_round": [ 5 @@ -51000,13 +56147,13 @@ export default { 40 ], "map_pool_id": [ - 5170 + 5458 ], "map_veto": [ 5 ], "match_mode": [ - 1056 + 1120 ], "mr": [ 40 @@ -51021,34 +56168,34 @@ export default { 5 ], "ready_setting": [ - 1218 + 1282 ], "region_veto": [ 5 ], "regions": [ - 80 + 83 ], "round_restart_delay": [ 40 ], "tech_timeout_setting": [ - 1380 + 1444 ], "timeout_setting": [ - 1380 + 1444 ], "tv_delay": [ 40 ], "type": [ - 1117 + 1181 ], "veto_pick_timeout": [ 40 ], "__typename": [ - 80 + 83 ] }, "match_options_sum_fields": { @@ -51077,22 +56224,51 @@ export default { 40 ], "__typename": [ - 80 + 83 + ] + }, + "match_options_sum_order_by": { + "auto_cancel_duration": [ + 3377 + ], + "best_of": [ + 3377 + ], + "live_match_timeout": [ + 3377 + ], + "mr": [ + 3377 + ], + "number_of_substitutes": [ + 3377 + ], + "round_restart_delay": [ + 3377 + ], + "tv_delay": [ + 3377 + ], + "veto_pick_timeout": [ + 3377 + ], + "__typename": [ + 83 ] }, "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2764 + 3032 ], "_set": [ - 2774 + 3046 ], "where": [ - 2762 + 3030 ], "__typename": [ - 80 + 83 ] }, "match_options_var_pop_fields": { @@ -51121,7 +56297,36 @@ export default { 31 ], "__typename": [ - 80 + 83 + ] + }, + "match_options_var_pop_order_by": { + "auto_cancel_duration": [ + 3377 + ], + "best_of": [ + 3377 + ], + "live_match_timeout": [ + 3377 + ], + "mr": [ + 3377 + ], + "number_of_substitutes": [ + 3377 + ], + "round_restart_delay": [ + 3377 + ], + "tv_delay": [ + 3377 + ], + "veto_pick_timeout": [ + 3377 + ], + "__typename": [ + 83 ] }, "match_options_var_samp_fields": { @@ -51150,36 +56355,94 @@ export default { 31 ], "__typename": [ - 80 + 83 + ] + }, + "match_options_var_samp_order_by": { + "auto_cancel_duration": [ + 3377 + ], + "best_of": [ + 3377 + ], + "live_match_timeout": [ + 3377 + ], + "mr": [ + 3377 + ], + "number_of_substitutes": [ + 3377 + ], + "round_restart_delay": [ + 3377 + ], + "tv_delay": [ + 3377 + ], + "veto_pick_timeout": [ + 3377 + ], + "__typename": [ + 83 + ] + }, + "match_options_variance_fields": { + "auto_cancel_duration": [ + 31 + ], + "best_of": [ + 31 + ], + "live_match_timeout": [ + 31 + ], + "mr": [ + 31 + ], + "number_of_substitutes": [ + 31 + ], + "round_restart_delay": [ + 31 + ], + "tv_delay": [ + 31 + ], + "veto_pick_timeout": [ + 31 + ], + "__typename": [ + 83 ] }, - "match_options_variance_fields": { + "match_options_variance_order_by": { "auto_cancel_duration": [ - 31 + 3377 ], "best_of": [ - 31 + 3377 ], "live_match_timeout": [ - 31 + 3377 ], "mr": [ - 31 + 3377 ], "number_of_substitutes": [ - 31 + 3377 ], "round_restart_delay": [ - 31 + 3377 ], "tv_delay": [ - 31 + 3377 ], "veto_pick_timeout": [ - 31 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks": { @@ -51187,107 +56450,107 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_lineup": [ - 2554 + 2815 ], "match_lineup_id": [ - 5170 + 5458 ], "region": [ - 80 + 83 ], "type": [ - 1483 + 1547 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2792 + 3071 ], "nodes": [ - 2786 + 3065 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_aggregate_bool_exp": { "bool_and": [ - 2789 + 3068 ], "bool_or": [ - 2790 + 3069 ], "count": [ - 2791 + 3070 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 2807 + 3086 ], "distinct": [ 5 ], "filter": [ - 2795 + 3074 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 2808 + 3087 ], "distinct": [ 5 ], "filter": [ - 2795 + 3074 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2806 + 3085 ], "distinct": [ 5 ], "filter": [ - 2795 + 3074 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_aggregate_fields": { @@ -51295,7 +56558,7 @@ export default { 40, { "columns": [ - 2806, + 3085, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -51304,79 +56567,79 @@ export default { } ], "max": [ - 2798 + 3077 ], "min": [ - 2800 + 3079 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 3094 + 3377 ], "max": [ - 2799 + 3078 ], "min": [ - 2801 + 3080 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2797 + 3076 ], "on_conflict": [ - 2803 + 3082 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_bool_exp": { "_and": [ - 2795 + 3074 ], "_not": [ - 2795 + 3074 ], "_or": [ - 2795 + 3074 ], "auto_picked": [ 6 ], "created_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_lineup": [ - 2563 + 2824 ], "match_lineup_id": [ - 5172 + 5460 ], "region": [ - 82 + 85 ], "type": [ - 1484 + 1548 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_constraint": {}, @@ -51385,111 +56648,111 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_lineup": [ - 2572 + 2833 ], "match_lineup_id": [ - 5170 + 5458 ], "region": [ - 80 + 83 ], "type": [ - 1483 + 1547 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_max_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "region": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_max_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_lineup_id": [ - 3094 + 3377 ], "region": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_min_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "region": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_min_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_lineup_id": [ - 3094 + 3377 ], "region": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_mutation_response": { @@ -51497,64 +56760,64 @@ export default { 40 ], "returning": [ - 2786 + 3065 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2796 + 3075 ], "update_columns": [ - 2812 + 3091 ], "where": [ - 2795 + 3074 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_order_by": { "auto_picked": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_lineup": [ - 2574 + 2835 ], "match_lineup_id": [ - 3094 + 3377 ], "region": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_select_column": {}, @@ -51565,36 +56828,36 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "region": [ - 80 + 83 ], "type": [ - 1483 + 1547 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2811 + 3090 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_stream_cursor_value_input": { @@ -51602,37 +56865,37 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "region": [ - 80 + 83 ], "type": [ - 1483 + 1547 ], "__typename": [ - 80 + 83 ] }, "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2809 + 3088 ], "where": [ - 2795 + 3074 ], "__typename": [ - 80 + 83 ] }, "match_streams": { @@ -51640,16 +56903,16 @@ export default { 5 ], "error_message": [ - 80 + 83 ], "game_server_node": [ - 1806 + 2067 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_game_streamer": [ 5 @@ -51658,132 +56921,132 @@ export default { 5 ], "k8s_service_name": [ - 80 + 83 ], "last_status_at": [ - 4670 + 4958 ], "link": [ - 80 + 83 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "mode": [ - 80 + 83 ], "priority": [ 40 ], "status": [ - 80 + 83 ], "status_history": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "stream_url": [ - 80 + 83 ], "title": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_streams_aggregate": { "aggregate": [ - 2820 + 3099 ], "nodes": [ - 2814 + 3093 ], "__typename": [ - 80 + 83 ] }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2817 + 3096 ], "bool_or": [ - 2818 + 3097 ], "count": [ - 2819 + 3098 ], "__typename": [ - 80 + 83 ] }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2843 + 3122 ], "distinct": [ 5 ], "filter": [ - 2826 + 3105 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2844 + 3123 ], "distinct": [ 5 ], "filter": [ - 2826 + 3105 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2842 + 3121 ], "distinct": [ 5 ], "filter": [ - 2826 + 3105 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "match_streams_aggregate_fields": { "avg": [ - 2824 + 3103 ], "count": [ 40, { "columns": [ - 2842, + 3121, "[match_streams_select_column!]" ], "distinct": [ @@ -51792,91 +57055,91 @@ export default { } ], "max": [ - 2833 + 3112 ], "min": [ - 2835 + 3114 ], "stddev": [ - 2846 + 3125 ], "stddev_pop": [ - 2848 + 3127 ], "stddev_samp": [ - 2850 + 3129 ], "sum": [ - 2854 + 3133 ], "var_pop": [ - 2858 + 3137 ], "var_samp": [ - 2860 + 3139 ], "variance": [ - 2862 + 3141 ], "__typename": [ - 80 + 83 ] }, "match_streams_aggregate_order_by": { "avg": [ - 2825 + 3104 ], "count": [ - 3094 + 3377 ], "max": [ - 2834 + 3113 ], "min": [ - 2836 + 3115 ], "stddev": [ - 2847 + 3126 ], "stddev_pop": [ - 2849 + 3128 ], "stddev_samp": [ - 2851 + 3130 ], "sum": [ - 2855 + 3134 ], "var_pop": [ - 2859 + 3138 ], "var_samp": [ - 2861 + 3140 ], "variance": [ - 2863 + 3142 ], "__typename": [ - 80 + 83 ] }, "match_streams_append_input": { "status_history": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "match_streams_arr_rel_insert_input": { "data": [ - 2832 + 3111 ], "on_conflict": [ - 2838 + 3117 ], "__typename": [ - 80 + 83 ] }, "match_streams_avg_fields": { @@ -51884,41 +57147,41 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_streams_avg_order_by": { "priority": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_streams_bool_exp": { "_and": [ - 2826 + 3105 ], "_not": [ - 2826 + 3105 ], "_or": [ - 2826 + 3105 ], "autodirector": [ 6 ], "error_message": [ - 82 + 85 ], "game_server_node": [ - 1818 + 2079 ], "game_server_node_id": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "is_game_streamer": [ 6 @@ -51927,49 +57190,49 @@ export default { 6 ], "k8s_service_name": [ - 82 + 85 ], "last_status_at": [ - 4671 + 4959 ], "link": [ - 82 + 85 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "mode": [ - 82 + 85 ], "priority": [ 41 ], "status": [ - 82 + 85 ], "status_history": [ - 1932 + 2193 ], "stream_url": [ - 82 + 85 ], "title": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "match_streams_constraint": {}, "match_streams_delete_at_path_input": { "status_history": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_streams_delete_elem_input": { @@ -51977,15 +57240,15 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "match_streams_delete_key_input": { "status_history": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_streams_inc_input": { @@ -51993,7 +57256,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "match_streams_insert_input": { @@ -52001,16 +57264,16 @@ export default { 5 ], "error_message": [ - 80 + 83 ], "game_server_node": [ - 1830 + 2091 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_game_streamer": [ 5 @@ -52019,204 +57282,204 @@ export default { 5 ], "k8s_service_name": [ - 80 + 83 ], "last_status_at": [ - 4670 + 4958 ], "link": [ - 80 + 83 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "mode": [ - 80 + 83 ], "priority": [ 40 ], "status": [ - 80 + 83 ], "status_history": [ - 1930 + 2191 ], "stream_url": [ - 80 + 83 ], "title": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_streams_max_fields": { "error_message": [ - 80 + 83 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "k8s_service_name": [ - 80 + 83 ], "last_status_at": [ - 4670 + 4958 ], "link": [ - 80 + 83 ], "match_id": [ - 5170 + 5458 ], "mode": [ - 80 + 83 ], "priority": [ 40 ], "status": [ - 80 + 83 ], "stream_url": [ - 80 + 83 ], "title": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_streams_max_order_by": { "error_message": [ - 3094 + 3377 ], "game_server_node_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "k8s_service_name": [ - 3094 + 3377 ], "last_status_at": [ - 3094 + 3377 ], "link": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "mode": [ - 3094 + 3377 ], "priority": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "stream_url": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_streams_min_fields": { "error_message": [ - 80 + 83 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "k8s_service_name": [ - 80 + 83 ], "last_status_at": [ - 4670 + 4958 ], "link": [ - 80 + 83 ], "match_id": [ - 5170 + 5458 ], "mode": [ - 80 + 83 ], "priority": [ 40 ], "status": [ - 80 + 83 ], "stream_url": [ - 80 + 83 ], "title": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_streams_min_order_by": { "error_message": [ - 3094 + 3377 ], "game_server_node_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "k8s_service_name": [ - 3094 + 3377 ], "last_status_at": [ - 3094 + 3377 ], "link": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "mode": [ - 3094 + 3377 ], "priority": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "stream_url": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_streams_mutation_response": { @@ -52224,99 +57487,99 @@ export default { 40 ], "returning": [ - 2814 + 3093 ], "__typename": [ - 80 + 83 ] }, "match_streams_on_conflict": { "constraint": [ - 2827 + 3106 ], "update_columns": [ - 2856 + 3135 ], "where": [ - 2826 + 3105 ], "__typename": [ - 80 + 83 ] }, "match_streams_order_by": { "autodirector": [ - 3094 + 3377 ], "error_message": [ - 3094 + 3377 ], "game_server_node": [ - 1832 + 2093 ], "game_server_node_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "is_game_streamer": [ - 3094 + 3377 ], "is_live": [ - 3094 + 3377 ], "k8s_service_name": [ - 3094 + 3377 ], "last_status_at": [ - 3094 + 3377 ], "link": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "mode": [ - 3094 + 3377 ], "priority": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "status_history": [ - 3094 + 3377 ], "stream_url": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_streams_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "match_streams_prepend_input": { "status_history": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "match_streams_select_column": {}, @@ -52327,13 +57590,13 @@ export default { 5 ], "error_message": [ - 80 + 83 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_game_streamer": [ 5 @@ -52342,37 +57605,37 @@ export default { 5 ], "k8s_service_name": [ - 80 + 83 ], "last_status_at": [ - 4670 + 4958 ], "link": [ - 80 + 83 ], "match_id": [ - 5170 + 5458 ], "mode": [ - 80 + 83 ], "priority": [ 40 ], "status": [ - 80 + 83 ], "status_history": [ - 1930 + 2191 ], "stream_url": [ - 80 + 83 ], "title": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_streams_stddev_fields": { @@ -52380,15 +57643,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_streams_stddev_order_by": { "priority": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_streams_stddev_pop_fields": { @@ -52396,15 +57659,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_streams_stddev_pop_order_by": { "priority": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_streams_stddev_samp_fields": { @@ -52412,26 +57675,26 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_streams_stddev_samp_order_by": { "priority": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_streams_stream_cursor_input": { "initial_value": [ - 2853 + 3132 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "match_streams_stream_cursor_value_input": { @@ -52439,13 +57702,13 @@ export default { 5 ], "error_message": [ - 80 + 83 ], "game_server_node_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_game_streamer": [ 5 @@ -52454,37 +57717,37 @@ export default { 5 ], "k8s_service_name": [ - 80 + 83 ], "last_status_at": [ - 4670 + 4958 ], "link": [ - 80 + 83 ], "match_id": [ - 5170 + 5458 ], "mode": [ - 80 + 83 ], "priority": [ 40 ], "status": [ - 80 + 83 ], "status_history": [ - 1930 + 2191 ], "stream_url": [ - 80 + 83 ], "title": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_streams_sum_fields": { @@ -52492,45 +57755,45 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "match_streams_sum_order_by": { "priority": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2822 + 3101 ], "_delete_at_path": [ - 2828 + 3107 ], "_delete_elem": [ - 2829 + 3108 ], "_delete_key": [ - 2830 + 3109 ], "_inc": [ - 2831 + 3110 ], "_prepend": [ - 2841 + 3120 ], "_set": [ - 2845 + 3124 ], "where": [ - 2826 + 3105 ], "__typename": [ - 80 + 83 ] }, "match_streams_var_pop_fields": { @@ -52538,15 +57801,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_streams_var_pop_order_by": { "priority": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_streams_var_samp_fields": { @@ -52554,15 +57817,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_streams_var_samp_order_by": { "priority": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_streams_variance_fields": { @@ -52570,37 +57833,37 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "match_streams_variance_order_by": { "priority": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs": { "cfg": [ - 80 + 83 ], "type": [ - 828 + 832 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs_aggregate": { "aggregate": [ - 2866 + 3145 ], "nodes": [ - 2864 + 3143 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs_aggregate_fields": { @@ -52608,7 +57871,7 @@ export default { 40, { "columns": [ - 2876, + 3155, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -52617,61 +57880,61 @@ export default { } ], "max": [ - 2870 + 3149 ], "min": [ - 2871 + 3150 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs_bool_exp": { "_and": [ - 2867 + 3146 ], "_not": [ - 2867 + 3146 ], "_or": [ - 2867 + 3146 ], "cfg": [ - 82 + 85 ], "type": [ - 829 + 833 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs_constraint": {}, "match_type_cfgs_insert_input": { "cfg": [ - 80 + 83 ], "type": [ - 828 + 832 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs_max_fields": { "cfg": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs_min_fields": { "cfg": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs_mutation_response": { @@ -52679,89 +57942,89 @@ export default { 40 ], "returning": [ - 2864 + 3143 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs_on_conflict": { "constraint": [ - 2868 + 3147 ], "update_columns": [ - 2880 + 3159 ], "where": [ - 2867 + 3146 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs_order_by": { "cfg": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs_pk_columns_input": { "type": [ - 828 + 832 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs_select_column": {}, "match_type_cfgs_set_input": { "cfg": [ - 80 + 83 ], "type": [ - 828 + 832 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2879 + 3158 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs_stream_cursor_value_input": { "cfg": [ - 80 + 83 ], "type": [ - 828 + 832 ], "__typename": [ - 80 + 83 ] }, "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2877 + 3156 ], "where": [ - 2867 + 3146 ], "__typename": [ - 80 + 83 ] }, "matches": { @@ -52790,13 +58053,13 @@ export default { 5 ], "cancels_at": [ - 4670 + 4958 ], "clutches": [ - 5350, + 5638, { "distinct_on": [ - 5366, + 5654, "[v_match_clutches_select_column!]" ], "limit": [ @@ -52806,19 +58069,19 @@ export default { 40 ], "order_by": [ - 5365, + 5653, "[v_match_clutches_order_by!]" ], "where": [ - 5359 + 5647 ] } ], "clutches_aggregate": [ - 5351, + 5639, { "distinct_on": [ - 5366, + 5654, "[v_match_clutches_select_column!]" ], "limit": [ @@ -52828,31 +58091,34 @@ export default { 40 ], "order_by": [ - 5365, + 5653, "[v_match_clutches_order_by!]" ], "where": [ - 5359 + 5647 ] } ], "connection_link": [ - 80 + 83 ], "connection_string": [ - 80 + 83 + ], + "counts_toward_ranking": [ + 5 ], "created_at": [ - 4670 + 4958 ], "current_match_map_id": [ - 5170 + 5458 ], "demos": [ - 2596, + 2857, { "distinct_on": [ - 2625, + 2886, "[match_map_demos_select_column!]" ], "limit": [ @@ -52862,19 +58128,19 @@ export default { 40 ], "order_by": [ - 2622, + 2883, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2869 ] } ], "demos_aggregate": [ - 2597, + 2858, { "distinct_on": [ - 2625, + 2886, "[match_map_demos_select_column!]" ], "limit": [ @@ -52884,19 +58150,19 @@ export default { 40 ], "order_by": [ - 2622, + 2883, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2869 ] } ], "draft_games": [ - 551, + 555, { "distinct_on": [ - 575, + 579, "[draft_games_select_column!]" ], "limit": [ @@ -52906,19 +58172,19 @@ export default { 40 ], "order_by": [ - 573, + 577, "[draft_games_order_by!]" ], "where": [ - 562 + 566 ] } ], "draft_games_aggregate": [ - 552, + 556, { "distinct_on": [ - 575, + 579, "[draft_games_select_column!]" ], "limit": [ @@ -52928,28 +58194,28 @@ export default { 40 ], "order_by": [ - 573, + 577, "[draft_games_order_by!]" ], "where": [ - 562 + 566 ] } ], "e_match_status": [ - 1091 + 1155 ], "e_region": [ - 4166 + 4449 ], "effective_at": [ - 4670 + 4958 ], "elo_changes": [ - 5547, + 5835, { "distinct_on": [ - 5573, + 5861, "[v_player_elo_select_column!]" ], "limit": [ @@ -52959,19 +58225,19 @@ export default { 40 ], "order_by": [ - 5572, + 5860, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5854 ] } ], "elo_changes_aggregate": [ - 5548, + 5836, { "distinct_on": [ - 5573, + 5861, "[v_player_elo_select_column!]" ], "limit": [ @@ -52981,25 +58247,25 @@ export default { 40 ], "order_by": [ - 5572, + 5860, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5854 ] } ], "ended_at": [ - 4670 + 4958 ], "external_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "invite_code": [ - 80 + 83 ], "is_captain": [ 5 @@ -53026,36 +58292,36 @@ export default { 5 ], "label": [ - 80 + 83 ], "lineup_1": [ - 2554 + 2815 ], "lineup_1_id": [ - 5170 + 5458 ], "lineup_2": [ - 2554 + 2815 ], "lineup_2_id": [ - 5170 + 5458 ], "lineup_counts": [ - 1928, + 2189, { "path": [ - 80 + 83 ] } ], "map_veto_picking_lineup_id": [ - 5170 + 5458 ], "map_veto_picks": [ - 2688, + 2949, { "distinct_on": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -53065,19 +58331,19 @@ export default { 40 ], "order_by": [ - 2706, + 2967, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2958 ] } ], "map_veto_picks_aggregate": [ - 2689, + 2950, { "distinct_on": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -53087,22 +58353,22 @@ export default { 40 ], "order_by": [ - 2706, + 2967, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2958 ] } ], "map_veto_type": [ - 80 + 83 ], "match_maps": [ - 2716, + 2977, { "distinct_on": [ - 2738, + 2999, "[match_maps_select_column!]" ], "limit": [ @@ -53112,19 +58378,19 @@ export default { 40 ], "order_by": [ - 2736, + 2997, "[match_maps_order_by!]" ], "where": [ - 2725 + 2986 ] } ], "match_maps_aggregate": [ - 2717, + 2978, { "distinct_on": [ - 2738, + 2999, "[match_maps_select_column!]" ], "limit": [ @@ -53134,16 +58400,16 @@ export default { 40 ], "order_by": [ - 2736, + 2997, "[match_maps_order_by!]" ], "where": [ - 2725 + 2986 ] } ], "match_options_id": [ - 5170 + 5458 ], "max_players_per_lineup": [ 40 @@ -53152,10 +58418,10 @@ export default { 40 ], "opening_duels": [ - 5478, + 5766, { "distinct_on": [ - 5494, + 5782, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -53165,19 +58431,19 @@ export default { 40 ], "order_by": [ - 5493, + 5781, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5487 + 5775 ] } ], "opening_duels_aggregate": [ - 5479, + 5767, { "distinct_on": [ - 5494, + 5782, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -53187,31 +58453,31 @@ export default { 40 ], "order_by": [ - 5493, + 5781, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5487 + 5775 ] } ], "options": [ - 2758 + 3019 ], "organizer": [ - 4052 + 4335 ], "organizer_steam_id": [ - 264 + 268 ], "password": [ - 80 + 83 ], "player_assists": [ - 3232, + 3515, { "distinct_on": [ - 3255, + 3538, "[player_assists_select_column!]" ], "limit": [ @@ -53221,19 +58487,19 @@ export default { 40 ], "order_by": [ - 3253, + 3536, "[player_assists_order_by!]" ], "where": [ - 3243 + 3526 ] } ], "player_assists_aggregate": [ - 3233, + 3516, { "distinct_on": [ - 3255, + 3538, "[player_assists_select_column!]" ], "limit": [ @@ -53243,19 +58509,19 @@ export default { 40 ], "order_by": [ - 3253, + 3536, "[player_assists_order_by!]" ], "where": [ - 3243 + 3526 ] } ], "player_damages": [ - 3295, + 3578, { "distinct_on": [ - 3316, + 3599, "[player_damages_select_column!]" ], "limit": [ @@ -53265,19 +58531,19 @@ export default { 40 ], "order_by": [ - 3314, + 3597, "[player_damages_order_by!]" ], "where": [ - 3304 + 3587 ] } ], "player_damages_aggregate": [ - 3296, + 3579, { "distinct_on": [ - 3316, + 3599, "[player_damages_select_column!]" ], "limit": [ @@ -53287,19 +58553,19 @@ export default { 40 ], "order_by": [ - 3314, + 3597, "[player_damages_order_by!]" ], "where": [ - 3304 + 3587 ] } ], "player_flashes": [ - 3404, + 3687, { "distinct_on": [ - 3427, + 3710, "[player_flashes_select_column!]" ], "limit": [ @@ -53309,19 +58575,19 @@ export default { 40 ], "order_by": [ - 3425, + 3708, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3698 ] } ], "player_flashes_aggregate": [ - 3405, + 3688, { "distinct_on": [ - 3427, + 3710, "[player_flashes_select_column!]" ], "limit": [ @@ -53331,19 +58597,19 @@ export default { 40 ], "order_by": [ - 3425, + 3708, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3698 ] } ], "player_kills": [ - 3449, + 3732, { "distinct_on": [ - 3513, + 3796, "[player_kills_select_column!]" ], "limit": [ @@ -53353,19 +58619,19 @@ export default { 40 ], "order_by": [ - 3511, + 3794, "[player_kills_order_by!]" ], "where": [ - 3460 + 3743 ] } ], "player_kills_aggregate": [ - 3450, + 3733, { "distinct_on": [ - 3513, + 3796, "[player_kills_select_column!]" ], "limit": [ @@ -53375,19 +58641,19 @@ export default { 40 ], "order_by": [ - 3511, + 3794, "[player_kills_order_by!]" ], "where": [ - 3460 + 3743 ] } ], "player_objectives": [ - 3650, + 3933, { "distinct_on": [ - 3671, + 3954, "[player_objectives_select_column!]" ], "limit": [ @@ -53397,19 +58663,19 @@ export default { 40 ], "order_by": [ - 3669, + 3952, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3942 ] } ], "player_objectives_aggregate": [ - 3651, + 3934, { "distinct_on": [ - 3671, + 3954, "[player_objectives_select_column!]" ], "limit": [ @@ -53419,19 +58685,19 @@ export default { 40 ], "order_by": [ - 3669, + 3952, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3942 ] } ], "player_unused_utilities": [ - 3937, + 4220, { "distinct_on": [ - 3958, + 4241, "[player_unused_utility_select_column!]" ], "limit": [ @@ -53441,19 +58707,19 @@ export default { 40 ], "order_by": [ - 3956, + 4239, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4229 ] } ], "player_unused_utilities_aggregate": [ - 3938, + 4221, { "distinct_on": [ - 3958, + 4241, "[player_unused_utility_select_column!]" ], "limit": [ @@ -53463,19 +58729,19 @@ export default { 40 ], "order_by": [ - 3956, + 4239, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4229 ] } ], "player_utility": [ - 3978, + 4261, { "distinct_on": [ - 3999, + 4282, "[player_utility_select_column!]" ], "limit": [ @@ -53485,19 +58751,19 @@ export default { 40 ], "order_by": [ - 3997, + 4280, "[player_utility_order_by!]" ], "where": [ - 3987 + 4270 ] } ], "player_utility_aggregate": [ - 3979, + 4262, { "distinct_on": [ - 3999, + 4282, "[player_utility_select_column!]" ], "limit": [ @@ -53507,25 +58773,25 @@ export default { 40 ], "order_by": [ - 3997, + 4280, "[player_utility_order_by!]" ], "where": [ - 3987 + 4270 ] } ], "region": [ - 80 + 83 ], "region_veto_picking_lineup_id": [ - 5170 + 5458 ], "region_veto_picks": [ - 2786, + 3065, { "distinct_on": [ - 2806, + 3085, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -53535,19 +58801,19 @@ export default { 40 ], "order_by": [ - 2804, + 3083, "[match_region_veto_picks_order_by!]" ], "where": [ - 2795 + 3074 ] } ], "region_veto_picks_aggregate": [ - 2787, + 3066, { "distinct_on": [ - 2806, + 3085, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -53557,11 +58823,11 @@ export default { 40 ], "order_by": [ - 2804, + 3083, "[match_region_veto_picks_order_by!]" ], "where": [ - 2795 + 3074 ] } ], @@ -53569,43 +58835,43 @@ export default { 5 ], "scheduled_at": [ - 4670 + 4958 ], "server": [ - 4193 + 4476 ], "server_error": [ - 80 + 83 ], "server_id": [ - 5170 + 5458 ], "server_plugin_runtime": [ - 80 + 83 ], "server_region": [ - 80 + 83 ], "server_type": [ - 80 + 83 ], "share_code": [ - 80 + 83 ], "source": [ - 80 + 83 ], "started_at": [ - 4670 + 4958 ], "status": [ - 1096 + 1160 ], "streams": [ - 2814, + 3093, { "distinct_on": [ - 2842, + 3121, "[match_streams_select_column!]" ], "limit": [ @@ -53615,19 +58881,19 @@ export default { 40 ], "order_by": [ - 2839, + 3118, "[match_streams_order_by!]" ], "where": [ - 2826 + 3105 ] } ], "streams_aggregate": [ - 2815, + 3094, { "distinct_on": [ - 2842, + 3121, "[match_streams_select_column!]" ], "limit": [ @@ -53637,19 +58903,19 @@ export default { 40 ], "order_by": [ - 2839, + 3118, "[match_streams_order_by!]" ], "where": [ - 2826 + 3105 ] } ], "teams": [ - 4621, + 4909, { "distinct_on": [ - 4645, + 4933, "[teams_select_column!]" ], "limit": [ @@ -53659,19 +58925,19 @@ export default { 40 ], "order_by": [ - 4643, + 4931, "[teams_order_by!]" ], "where": [ - 4632 + 4920 ] } ], "tournament_brackets": [ - 4714, + 5002, { "distinct_on": [ - 4738, + 5026, "[tournament_brackets_select_column!]" ], "limit": [ @@ -53681,19 +58947,19 @@ export default { 40 ], "order_by": [ - 4736, + 5024, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5013 ] } ], "tournament_brackets_aggregate": [ - 4715, + 5003, { "distinct_on": [ - 4738, + 5026, "[tournament_brackets_select_column!]" ], "limit": [ @@ -53703,75 +58969,115 @@ export default { 40 ], "order_by": [ - 4736, + 5024, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5013 ] } ], "tv_connection_string": [ - 80 + 83 ], "veto_pick_expires_at": [ - 4670 + 4958 ], "winner": [ - 2554 + 2815 ], "winning_lineup_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "matches_aggregate": { "aggregate": [ - 2886 + 3167 ], "nodes": [ - 2882 + 3161 ], "__typename": [ - 80 + 83 ] }, "matches_aggregate_bool_exp": { + "bool_and": [ + 3164 + ], + "bool_or": [ + 3165 + ], "count": [ - 2885 + 3166 ], "__typename": [ - 80 + 83 + ] + }, + "matches_aggregate_bool_exp_bool_and": { + "arguments": [ + 3186 + ], + "distinct": [ + 5 + ], + "filter": [ + 3172 + ], + "predicate": [ + 6 + ], + "__typename": [ + 83 + ] + }, + "matches_aggregate_bool_exp_bool_or": { + "arguments": [ + 3187 + ], + "distinct": [ + 5 + ], + "filter": [ + 3172 + ], + "predicate": [ + 6 + ], + "__typename": [ + 83 ] }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2904 + 3185 ], "distinct": [ 5 ], "filter": [ - 2891 + 3172 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "matches_aggregate_fields": { "avg": [ - 2889 + 3170 ], "count": [ 40, { "columns": [ - 2904, + 3185, "[matches_select_column!]" ], "distinct": [ @@ -53780,83 +59086,83 @@ export default { } ], "max": [ - 2895 + 3176 ], "min": [ - 2897 + 3178 ], "stddev": [ - 2906 + 3189 ], "stddev_pop": [ - 2908 + 3191 ], "stddev_samp": [ - 2910 + 3193 ], "sum": [ - 2914 + 3197 ], "var_pop": [ - 2918 + 3201 ], "var_samp": [ - 2920 + 3203 ], "variance": [ - 2922 + 3205 ], "__typename": [ - 80 + 83 ] }, "matches_aggregate_order_by": { "avg": [ - 2890 + 3171 ], "count": [ - 3094 + 3377 ], "max": [ - 2896 + 3177 ], "min": [ - 2898 + 3179 ], "stddev": [ - 2907 + 3190 ], "stddev_pop": [ - 2909 + 3192 ], "stddev_samp": [ - 2911 + 3194 ], "sum": [ - 2915 + 3198 ], "var_pop": [ - 2919 + 3202 ], "var_samp": [ - 2921 + 3204 ], "variance": [ - 2923 + 3206 ], "__typename": [ - 80 + 83 ] }, "matches_arr_rel_insert_input": { "data": [ - 2894 + 3175 ], "on_conflict": [ - 2901 + 3182 ], "__typename": [ - 80 + 83 ] }, "matches_avg_fields": { @@ -53870,26 +59176,26 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "matches_avg_order_by": { "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "matches_bool_exp": { "_and": [ - 2891 + 3172 ], "_not": [ - 2891 + 3172 ], "_or": [ - 2891 + 3172 ], "can_assign_server": [ 6 @@ -53916,64 +59222,67 @@ export default { 6 ], "cancels_at": [ - 4671 + 4959 ], "clutches": [ - 5359 + 5647 ], "clutches_aggregate": [ - 5352 + 5640 ], "connection_link": [ - 82 + 85 ], "connection_string": [ - 82 + 85 + ], + "counts_toward_ranking": [ + 6 ], "created_at": [ - 4671 + 4959 ], "current_match_map_id": [ - 5172 + 5460 ], "demos": [ - 2608 + 2869 ], "demos_aggregate": [ - 2598 + 2859 ], "draft_games": [ - 562 + 566 ], "draft_games_aggregate": [ - 553 + 557 ], "e_match_status": [ - 1094 + 1158 ], "e_region": [ - 4170 + 4453 ], "effective_at": [ - 4671 + 4959 ], "elo_changes": [ - 5566 + 5854 ], "elo_changes_aggregate": [ - 5549 + 5837 ], "ended_at": [ - 4671 + 4959 ], "external_id": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "invite_code": [ - 82 + 85 ], "is_captain": [ 6 @@ -54000,43 +59309,43 @@ export default { 6 ], "label": [ - 82 + 85 ], "lineup_1": [ - 2563 + 2824 ], "lineup_1_id": [ - 5172 + 5460 ], "lineup_2": [ - 2563 + 2824 ], "lineup_2_id": [ - 5172 + 5460 ], "lineup_counts": [ - 1929 + 2190 ], "map_veto_picking_lineup_id": [ - 5172 + 5460 ], "map_veto_picks": [ - 2697 + 2958 ], "map_veto_picks_aggregate": [ - 2690 + 2951 ], "map_veto_type": [ - 82 + 85 ], "match_maps": [ - 2725 + 2986 ], "match_maps_aggregate": [ - 2718 + 2979 ], "match_options_id": [ - 5172 + 5460 ], "max_players_per_lineup": [ 41 @@ -54045,344 +59354,347 @@ export default { 41 ], "opening_duels": [ - 5487 + 5775 ], "opening_duels_aggregate": [ - 5480 + 5768 ], "options": [ - 2762 + 3030 ], "organizer": [ - 4056 + 4339 ], "organizer_steam_id": [ - 266 + 270 ], "password": [ - 82 + 85 ], "player_assists": [ - 3243 + 3526 ], "player_assists_aggregate": [ - 3234 + 3517 ], "player_damages": [ - 3304 + 3587 ], "player_damages_aggregate": [ - 3297 + 3580 ], "player_flashes": [ - 3415 + 3698 ], "player_flashes_aggregate": [ - 3406 + 3689 ], "player_kills": [ - 3460 + 3743 ], "player_kills_aggregate": [ - 3451 + 3734 ], "player_objectives": [ - 3659 + 3942 ], "player_objectives_aggregate": [ - 3652 + 3935 ], "player_unused_utilities": [ - 3946 + 4229 ], "player_unused_utilities_aggregate": [ - 3939 + 4222 ], "player_utility": [ - 3987 + 4270 ], "player_utility_aggregate": [ - 3980 + 4263 ], "region": [ - 82 + 85 ], "region_veto_picking_lineup_id": [ - 5172 + 5460 ], "region_veto_picks": [ - 2795 + 3074 ], "region_veto_picks_aggregate": [ - 2788 + 3067 ], "requested_organizer": [ 6 ], "scheduled_at": [ - 4671 + 4959 ], "server": [ - 4204 + 4488 ], "server_error": [ - 82 + 85 ], "server_id": [ - 5172 + 5460 ], "server_plugin_runtime": [ - 82 + 85 ], "server_region": [ - 82 + 85 ], "server_type": [ - 82 + 85 ], "share_code": [ - 82 + 85 ], "source": [ - 82 + 85 ], "started_at": [ - 4671 + 4959 ], "status": [ - 1097 + 1161 ], "streams": [ - 2826 + 3105 ], "streams_aggregate": [ - 2816 + 3095 ], "teams": [ - 4632 + 4920 ], "tournament_brackets": [ - 4725 + 5013 ], "tournament_brackets_aggregate": [ - 4716 + 5004 ], "tv_connection_string": [ - 82 + 85 ], "veto_pick_expires_at": [ - 4671 + 4959 ], "winner": [ - 2563 + 2824 ], "winning_lineup_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "matches_constraint": {}, "matches_inc_input": { "organizer_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "matches_insert_input": { "cancels_at": [ - 4670 + 4958 ], "clutches": [ - 5356 + 5644 + ], + "counts_toward_ranking": [ + 5 ], "created_at": [ - 4670 + 4958 ], "demos": [ - 2605 + 2866 ], "draft_games": [ - 559 + 563 ], "e_match_status": [ - 1102 + 1166 ], "e_region": [ - 4176 + 4459 ], "elo_changes": [ - 5563 + 5851 ], "ended_at": [ - 4670 + 4958 ], "external_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "lineup_1": [ - 2572 + 2833 ], "lineup_1_id": [ - 5170 + 5458 ], "lineup_2": [ - 2572 + 2833 ], "lineup_2_id": [ - 5170 + 5458 ], "map_veto_picks": [ - 2696 + 2957 ], "match_maps": [ - 2722 + 2983 ], "match_options_id": [ - 5170 + 5458 ], "opening_duels": [ - 5484 + 5772 ], "options": [ - 2769 + 3039 ], "organizer": [ - 4063 + 4346 ], "organizer_steam_id": [ - 264 + 268 ], "password": [ - 80 + 83 ], "player_assists": [ - 3240 + 3523 ], "player_damages": [ - 3301 + 3584 ], "player_flashes": [ - 3412 + 3695 ], "player_kills": [ - 3457 + 3740 ], "player_objectives": [ - 3656 + 3939 ], "player_unused_utilities": [ - 3943 + 4226 ], "player_utility": [ - 3984 + 4267 ], "region": [ - 80 + 83 ], "region_veto_picks": [ - 2794 + 3073 ], "scheduled_at": [ - 4670 + 4958 ], "server": [ - 4213 + 4500 ], "server_error": [ - 80 + 83 ], "server_id": [ - 5170 + 5458 ], "share_code": [ - 80 + 83 ], "source": [ - 80 + 83 ], "started_at": [ - 4670 + 4958 ], "status": [ - 1096 + 1160 ], "streams": [ - 2823 + 3102 ], "tournament_brackets": [ - 4722 + 5010 ], "veto_pick_expires_at": [ - 4670 + 4958 ], "winner": [ - 2572 + 2833 ], "winning_lineup_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "matches_max_fields": { "cancels_at": [ - 4670 + 4958 ], "connection_link": [ - 80 + 83 ], "connection_string": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "current_match_map_id": [ - 5170 + 5458 ], "effective_at": [ - 4670 + 4958 ], "ended_at": [ - 4670 + 4958 ], "external_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "invite_code": [ - 80 + 83 ], "label": [ - 80 + 83 ], "lineup_1_id": [ - 5170 + 5458 ], "lineup_2_id": [ - 5170 + 5458 ], "map_veto_picking_lineup_id": [ - 5170 + 5458 ], "map_veto_type": [ - 80 + 83 ], "match_options_id": [ - 5170 + 5458 ], "max_players_per_lineup": [ 40 @@ -54391,173 +59703,173 @@ export default { 40 ], "organizer_steam_id": [ - 264 + 268 ], "password": [ - 80 + 83 ], "region": [ - 80 + 83 ], "region_veto_picking_lineup_id": [ - 5170 + 5458 ], "scheduled_at": [ - 4670 + 4958 ], "server_error": [ - 80 + 83 ], "server_id": [ - 5170 + 5458 ], "server_plugin_runtime": [ - 80 + 83 ], "server_region": [ - 80 + 83 ], "server_type": [ - 80 + 83 ], "share_code": [ - 80 + 83 ], "source": [ - 80 + 83 ], "started_at": [ - 4670 + 4958 ], "tv_connection_string": [ - 80 + 83 ], "veto_pick_expires_at": [ - 4670 + 4958 ], "winning_lineup_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "matches_max_order_by": { "cancels_at": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "effective_at": [ - 3094 + 3377 ], "ended_at": [ - 3094 + 3377 ], "external_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "lineup_1_id": [ - 3094 + 3377 ], "lineup_2_id": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "organizer_steam_id": [ - 3094 + 3377 ], "password": [ - 3094 + 3377 ], "region": [ - 3094 + 3377 ], "scheduled_at": [ - 3094 + 3377 ], "server_error": [ - 3094 + 3377 ], "server_id": [ - 3094 + 3377 ], "share_code": [ - 3094 + 3377 ], "source": [ - 3094 + 3377 ], "started_at": [ - 3094 + 3377 ], "veto_pick_expires_at": [ - 3094 + 3377 ], "winning_lineup_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "matches_min_fields": { "cancels_at": [ - 4670 + 4958 ], "connection_link": [ - 80 + 83 ], "connection_string": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "current_match_map_id": [ - 5170 + 5458 ], "effective_at": [ - 4670 + 4958 ], "ended_at": [ - 4670 + 4958 ], "external_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "invite_code": [ - 80 + 83 ], "label": [ - 80 + 83 ], "lineup_1_id": [ - 5170 + 5458 ], "lineup_2_id": [ - 5170 + 5458 ], "map_veto_picking_lineup_id": [ - 5170 + 5458 ], "map_veto_type": [ - 80 + 83 ], "match_options_id": [ - 5170 + 5458 ], "max_players_per_lineup": [ 40 @@ -54566,123 +59878,123 @@ export default { 40 ], "organizer_steam_id": [ - 264 + 268 ], "password": [ - 80 + 83 ], "region": [ - 80 + 83 ], "region_veto_picking_lineup_id": [ - 5170 + 5458 ], "scheduled_at": [ - 4670 + 4958 ], "server_error": [ - 80 + 83 ], "server_id": [ - 5170 + 5458 ], "server_plugin_runtime": [ - 80 + 83 ], "server_region": [ - 80 + 83 ], "server_type": [ - 80 + 83 ], "share_code": [ - 80 + 83 ], "source": [ - 80 + 83 ], "started_at": [ - 4670 + 4958 ], "tv_connection_string": [ - 80 + 83 ], "veto_pick_expires_at": [ - 4670 + 4958 ], "winning_lineup_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "matches_min_order_by": { "cancels_at": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "effective_at": [ - 3094 + 3377 ], "ended_at": [ - 3094 + 3377 ], "external_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "lineup_1_id": [ - 3094 + 3377 ], "lineup_2_id": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "organizer_steam_id": [ - 3094 + 3377 ], "password": [ - 3094 + 3377 ], "region": [ - 3094 + 3377 ], "scheduled_at": [ - 3094 + 3377 ], "server_error": [ - 3094 + 3377 ], "server_id": [ - 3094 + 3377 ], "share_code": [ - 3094 + 3377 ], "source": [ - 3094 + 3377 ], "started_at": [ - 3094 + 3377 ], "veto_pick_expires_at": [ - 3094 + 3377 ], "winning_lineup_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "matches_mutation_response": { @@ -54690,354 +60002,362 @@ export default { 40 ], "returning": [ - 2882 + 3161 ], "__typename": [ - 80 + 83 ] }, "matches_obj_rel_insert_input": { "data": [ - 2894 + 3175 ], "on_conflict": [ - 2901 + 3182 ], "__typename": [ - 80 + 83 ] }, "matches_on_conflict": { "constraint": [ - 2892 + 3173 ], "update_columns": [ - 2916 + 3199 ], "where": [ - 2891 + 3172 ], "__typename": [ - 80 + 83 ] }, "matches_order_by": { "can_assign_server": [ - 3094 + 3377 ], "can_cancel": [ - 3094 + 3377 ], "can_check_in": [ - 3094 + 3377 ], "can_reassign_winner": [ - 3094 + 3377 ], "can_schedule": [ - 3094 + 3377 ], "can_start": [ - 3094 + 3377 ], "can_stream_live": [ - 3094 + 3377 ], "can_stream_tv": [ - 3094 + 3377 ], "cancels_at": [ - 3094 + 3377 ], "clutches_aggregate": [ - 5355 + 5643 ], "connection_link": [ - 3094 + 3377 ], "connection_string": [ - 3094 + 3377 + ], + "counts_toward_ranking": [ + 3377 ], "created_at": [ - 3094 + 3377 ], "current_match_map_id": [ - 3094 + 3377 ], "demos_aggregate": [ - 2603 + 2864 ], "draft_games_aggregate": [ - 558 + 562 ], "e_match_status": [ - 1104 + 1168 ], "e_region": [ - 4178 + 4461 ], "effective_at": [ - 3094 + 3377 ], "elo_changes_aggregate": [ - 5562 + 5850 ], "ended_at": [ - 3094 + 3377 ], "external_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "invite_code": [ - 3094 + 3377 ], "is_captain": [ - 3094 + 3377 ], "is_coach": [ - 3094 + 3377 ], "is_friend_in_match_lineup": [ - 3094 + 3377 ], "is_in_lineup": [ - 3094 + 3377 ], "is_match_server_available": [ - 3094 + 3377 ], "is_organizer": [ - 3094 + 3377 ], "is_server_online": [ - 3094 + 3377 ], "is_tournament_match": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "lineup_1": [ - 2574 + 2835 ], "lineup_1_id": [ - 3094 + 3377 ], "lineup_2": [ - 2574 + 2835 ], "lineup_2_id": [ - 3094 + 3377 ], "lineup_counts": [ - 3094 + 3377 ], "map_veto_picking_lineup_id": [ - 3094 + 3377 ], "map_veto_picks_aggregate": [ - 2695 + 2956 ], "map_veto_type": [ - 3094 + 3377 ], "match_maps_aggregate": [ - 2721 + 2982 ], "match_options_id": [ - 3094 + 3377 ], "max_players_per_lineup": [ - 3094 + 3377 ], "min_players_per_lineup": [ - 3094 + 3377 ], "opening_duels_aggregate": [ - 5483 + 5771 ], "options": [ - 2771 + 3041 ], "organizer": [ - 4065 + 4348 ], "organizer_steam_id": [ - 3094 + 3377 ], "password": [ - 3094 + 3377 ], "player_assists_aggregate": [ - 3239 + 3522 ], "player_damages_aggregate": [ - 3300 + 3583 ], "player_flashes_aggregate": [ - 3411 + 3694 ], "player_kills_aggregate": [ - 3456 + 3739 ], "player_objectives_aggregate": [ - 3655 + 3938 ], "player_unused_utilities_aggregate": [ - 3942 + 4225 ], "player_utility_aggregate": [ - 3983 + 4266 ], "region": [ - 3094 + 3377 ], "region_veto_picking_lineup_id": [ - 3094 + 3377 ], "region_veto_picks_aggregate": [ - 2793 + 3072 ], "requested_organizer": [ - 3094 + 3377 ], "scheduled_at": [ - 3094 + 3377 ], "server": [ - 4215 + 4502 ], "server_error": [ - 3094 + 3377 ], "server_id": [ - 3094 + 3377 ], "server_plugin_runtime": [ - 3094 + 3377 ], "server_region": [ - 3094 + 3377 ], "server_type": [ - 3094 + 3377 ], "share_code": [ - 3094 + 3377 ], "source": [ - 3094 + 3377 ], "started_at": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "streams_aggregate": [ - 2821 + 3100 ], "teams_aggregate": [ - 4628 + 4916 ], "tournament_brackets_aggregate": [ - 4721 + 5009 ], "tv_connection_string": [ - 3094 + 3377 ], "veto_pick_expires_at": [ - 3094 + 3377 ], "winner": [ - 2574 + 2835 ], "winning_lineup_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "matches_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "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 + 4958 + ], + "counts_toward_ranking": [ + 5 ], "created_at": [ - 4670 + 4958 ], "ended_at": [ - 4670 + 4958 ], "external_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "lineup_1_id": [ - 5170 + 5458 ], "lineup_2_id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "organizer_steam_id": [ - 264 + 268 ], "password": [ - 80 + 83 ], "region": [ - 80 + 83 ], "scheduled_at": [ - 4670 + 4958 ], "server_error": [ - 80 + 83 ], "server_id": [ - 5170 + 5458 ], "share_code": [ - 80 + 83 ], "source": [ - 80 + 83 ], "started_at": [ - 4670 + 4958 ], "status": [ - 1096 + 1160 ], "veto_pick_expires_at": [ - 4670 + 4958 ], "winning_lineup_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "matches_stddev_fields": { @@ -55051,15 +60371,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "matches_stddev_order_by": { "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "matches_stddev_pop_fields": { @@ -55073,15 +60393,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "matches_stddev_samp_fields": { @@ -55095,97 +60415,100 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "matches_stream_cursor_input": { "initial_value": [ - 2913 + 3196 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4670 + 4958 + ], + "counts_toward_ranking": [ + 5 ], "created_at": [ - 4670 + 4958 ], "effective_at": [ - 4670 + 4958 ], "ended_at": [ - 4670 + 4958 ], "external_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "lineup_1_id": [ - 5170 + 5458 ], "lineup_2_id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "organizer_steam_id": [ - 264 + 268 ], "password": [ - 80 + 83 ], "region": [ - 80 + 83 ], "scheduled_at": [ - 4670 + 4958 ], "server_error": [ - 80 + 83 ], "server_id": [ - 5170 + 5458 ], "share_code": [ - 80 + 83 ], "source": [ - 80 + 83 ], "started_at": [ - 4670 + 4958 ], "status": [ - 1096 + 1160 ], "veto_pick_expires_at": [ - 4670 + 4958 ], "winning_lineup_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "matches_sum_fields": { @@ -55196,33 +60519,33 @@ export default { 40 ], "organizer_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "matches_sum_order_by": { "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "matches_update_column": {}, "matches_updates": { "_inc": [ - 2893 + 3174 ], "_set": [ - 2905 + 3188 ], "where": [ - 2891 + 3172 ], "__typename": [ - 80 + 83 ] }, "matches_var_pop_fields": { @@ -55236,15 +60559,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "matches_var_samp_fields": { @@ -55258,15 +60581,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "matches_variance_fields": { @@ -55280,37 +60603,37 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "matches_variance_order_by": { "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes": { "hash": [ - 80 + 83 ], "name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2926 + 3209 ], "nodes": [ - 2924 + 3207 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes_aggregate_fields": { @@ -55318,7 +60641,7 @@ export default { 40, { "columns": [ - 2936, + 3219, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -55327,67 +60650,67 @@ export default { } ], "max": [ - 2930 + 3213 ], "min": [ - 2931 + 3214 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2927 + 3210 ], "_not": [ - 2927 + 3210 ], "_or": [ - 2927 + 3210 ], "hash": [ - 82 + 85 ], "name": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes_constraint": {}, "migration_hashes_hashes_insert_input": { "hash": [ - 80 + 83 ], "name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes_max_fields": { "hash": [ - 80 + 83 ], "name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes_min_fields": { "hash": [ - 80 + 83 ], "name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes_mutation_response": { @@ -55395,115 +60718,115 @@ export default { 40 ], "returning": [ - 2924 + 3207 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2928 + 3211 ], "update_columns": [ - 2940 + 3223 ], "where": [ - 2927 + 3210 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes_order_by": { "hash": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes_pk_columns_input": { "name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes_select_column": {}, "migration_hashes_hashes_set_input": { "hash": [ - 80 + 83 ], "name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2939 + 3222 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes_stream_cursor_value_input": { "hash": [ - 80 + 83 ], "name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2937 + 3220 ], "where": [ - 2927 + 3210 ], "__typename": [ - 80 + 83 ] }, "my_friends": { "avatar_url": [ - 80 + 83 ], "country": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "custom_avatar_url": [ - 80 + 83 ], "days_since_last_ban": [ 40 ], "discord_id": [ - 80 + 83 ], "elo": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], @@ -55511,84 +60834,84 @@ export default { 40 ], "faceit_nickname": [ - 80 + 83 ], "faceit_player_id": [ - 80 + 83 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4670 + 4958 ], "faceit_url": [ - 80 + 83 ], "friend_steam_id": [ - 264 + 268 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 264 + 268 ], "language": [ - 80 + 83 ], "last_presence_state": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "last_read_news_at": [ - 4670 + 4958 ], "last_sign_in_at": [ - 4670 + 4958 ], "name": [ - 80 + 83 ], "name_registered": [ 5 ], "player": [ - 4052 + 4335 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4670 + 4958 ], "presence_updated_at": [ - 4670 + 4958 ], "profile_url": [ - 80 + 83 ], "role": [ - 80 + 83 ], "roster_image_url": [ - 80 + 83 ], "show_match_ready_modal": [ 5 ], "status": [ - 80 + 83 ], "steam_bans_checked_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "vac_ban_count": [ 40 @@ -55597,94 +60920,94 @@ export default { 5 ], "__typename": [ - 80 + 83 ] }, "my_friends_aggregate": { "aggregate": [ - 2948 + 3231 ], "nodes": [ - 2942 + 3225 ], "__typename": [ - 80 + 83 ] }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2945 + 3228 ], "bool_or": [ - 2946 + 3229 ], "count": [ - 2947 + 3230 ], "__typename": [ - 80 + 83 ] }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2968 + 3251 ], "distinct": [ 5 ], "filter": [ - 2954 + 3237 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2969 + 3252 ], "distinct": [ 5 ], "filter": [ - 2954 + 3237 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2967 + 3250 ], "distinct": [ 5 ], "filter": [ - 2954 + 3237 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "my_friends_aggregate_fields": { "avg": [ - 2952 + 3235 ], "count": [ 40, { "columns": [ - 2967, + 3250, "[my_friends_select_column!]" ], "distinct": [ @@ -55693,91 +61016,91 @@ export default { } ], "max": [ - 2960 + 3243 ], "min": [ - 2962 + 3245 ], "stddev": [ - 2971 + 3254 ], "stddev_pop": [ - 2973 + 3256 ], "stddev_samp": [ - 2975 + 3258 ], "sum": [ - 2979 + 3262 ], "var_pop": [ - 2982 + 3265 ], "var_samp": [ - 2984 + 3267 ], "variance": [ - 2986 + 3269 ], "__typename": [ - 80 + 83 ] }, "my_friends_aggregate_order_by": { "avg": [ - 2953 + 3236 ], "count": [ - 3094 + 3377 ], "max": [ - 2961 + 3244 ], "min": [ - 2963 + 3246 ], "stddev": [ - 2972 + 3255 ], "stddev_pop": [ - 2974 + 3257 ], "stddev_samp": [ - 2976 + 3259 ], "sum": [ - 2980 + 3263 ], "var_pop": [ - 2983 + 3266 ], "var_samp": [ - 2985 + 3268 ], "variance": [ - 2987 + 3270 ], "__typename": [ - 80 + 83 ] }, "my_friends_append_input": { "elo": [ - 1930 + 2191 ], "last_presence_state": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "my_friends_arr_rel_insert_input": { "data": [ - 2959 + 3242 ], "__typename": [ - 80 + 83 ] }, "my_friends_avg_fields": { @@ -55809,149 +61132,149 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 3094 + 3377 ], "faceit_elo": [ - 3094 + 3377 ], "faceit_skill_level": [ - 3094 + 3377 ], "friend_steam_id": [ - 3094 + 3377 ], "game_ban_count": [ - 3094 + 3377 ], "invited_by_steam_id": [ - 3094 + 3377 ], "premier_rank": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "vac_ban_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "my_friends_bool_exp": { "_and": [ - 2954 + 3237 ], "_not": [ - 2954 + 3237 ], "_or": [ - 2954 + 3237 ], "avatar_url": [ - 82 + 85 ], "country": [ - 82 + 85 ], "created_at": [ - 4671 + 4959 ], "custom_avatar_url": [ - 82 + 85 ], "days_since_last_ban": [ 41 ], "discord_id": [ - 82 + 85 ], "elo": [ - 1932 + 2193 ], "faceit_elo": [ 41 ], "faceit_nickname": [ - 82 + 85 ], "faceit_player_id": [ - 82 + 85 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 4671 + 4959 ], "faceit_url": [ - 82 + 85 ], "friend_steam_id": [ - 266 + 270 ], "game_ban_count": [ 41 ], "invited_by_steam_id": [ - 266 + 270 ], "language": [ - 82 + 85 ], "last_presence_state": [ - 1932 + 2193 ], "last_read_news_at": [ - 4671 + 4959 ], "last_sign_in_at": [ - 4671 + 4959 ], "name": [ - 82 + 85 ], "name_registered": [ 6 ], "player": [ - 4056 + 4339 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 4671 + 4959 ], "presence_updated_at": [ - 4671 + 4959 ], "profile_url": [ - 82 + 85 ], "role": [ - 82 + 85 ], "roster_image_url": [ - 82 + 85 ], "show_match_ready_modal": [ 6 ], "status": [ - 82 + 85 ], "steam_bans_checked_at": [ - 4671 + 4959 ], "steam_id": [ - 266 + 270 ], "vac_ban_count": [ 41 @@ -55960,18 +61283,18 @@ export default { 6 ], "__typename": [ - 80 + 83 ] }, "my_friends_delete_at_path_input": { "elo": [ - 80 + 83 ], "last_presence_state": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "my_friends_delete_elem_input": { @@ -55982,18 +61305,18 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "my_friends_delete_key_input": { "elo": [ - 80 + 83 ], "last_presence_state": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "my_friends_inc_input": { @@ -56007,126 +61330,126 @@ export default { 40 ], "friend_steam_id": [ - 264 + 268 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 264 + 268 ], "premier_rank": [ 40 ], "steam_id": [ - 264 + 268 ], "vac_ban_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "my_friends_insert_input": { "avatar_url": [ - 80 + 83 ], "country": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "custom_avatar_url": [ - 80 + 83 ], "days_since_last_ban": [ 40 ], "discord_id": [ - 80 + 83 ], "elo": [ - 1930 + 2191 ], "faceit_elo": [ 40 ], "faceit_nickname": [ - 80 + 83 ], "faceit_player_id": [ - 80 + 83 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4670 + 4958 ], "faceit_url": [ - 80 + 83 ], "friend_steam_id": [ - 264 + 268 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 264 + 268 ], "language": [ - 80 + 83 ], "last_presence_state": [ - 1930 + 2191 ], "last_read_news_at": [ - 4670 + 4958 ], "last_sign_in_at": [ - 4670 + 4958 ], "name": [ - 80 + 83 ], "name_registered": [ 5 ], "player": [ - 4063 + 4346 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4670 + 4958 ], "presence_updated_at": [ - 4670 + 4958 ], "profile_url": [ - 80 + 83 ], "role": [ - 80 + 83 ], "roster_image_url": [ - 80 + 83 ], "show_match_ready_modal": [ 5 ], "status": [ - 80 + 83 ], "steam_bans_checked_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "vac_ban_count": [ 40 @@ -56135,375 +61458,375 @@ export default { 5 ], "__typename": [ - 80 + 83 ] }, "my_friends_max_fields": { "avatar_url": [ - 80 + 83 ], "country": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "custom_avatar_url": [ - 80 + 83 ], "days_since_last_ban": [ 40 ], "discord_id": [ - 80 + 83 ], "faceit_elo": [ 40 ], "faceit_nickname": [ - 80 + 83 ], "faceit_player_id": [ - 80 + 83 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4670 + 4958 ], "faceit_url": [ - 80 + 83 ], "friend_steam_id": [ - 264 + 268 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 264 + 268 ], "language": [ - 80 + 83 ], "last_read_news_at": [ - 4670 + 4958 ], "last_sign_in_at": [ - 4670 + 4958 ], "name": [ - 80 + 83 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4670 + 4958 ], "presence_updated_at": [ - 4670 + 4958 ], "profile_url": [ - 80 + 83 ], "role": [ - 80 + 83 ], "roster_image_url": [ - 80 + 83 ], "status": [ - 80 + 83 ], "steam_bans_checked_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "vac_ban_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "my_friends_max_order_by": { "avatar_url": [ - 3094 + 3377 ], "country": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "custom_avatar_url": [ - 3094 + 3377 ], "days_since_last_ban": [ - 3094 + 3377 ], "discord_id": [ - 3094 + 3377 ], "faceit_elo": [ - 3094 + 3377 ], "faceit_nickname": [ - 3094 + 3377 ], "faceit_player_id": [ - 3094 + 3377 ], "faceit_skill_level": [ - 3094 + 3377 ], "faceit_updated_at": [ - 3094 + 3377 ], "faceit_url": [ - 3094 + 3377 ], "friend_steam_id": [ - 3094 + 3377 ], "game_ban_count": [ - 3094 + 3377 ], "invited_by_steam_id": [ - 3094 + 3377 ], "language": [ - 3094 + 3377 ], "last_read_news_at": [ - 3094 + 3377 ], "last_sign_in_at": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "premier_rank": [ - 3094 + 3377 ], "premier_rank_updated_at": [ - 3094 + 3377 ], "presence_updated_at": [ - 3094 + 3377 ], "profile_url": [ - 3094 + 3377 ], "role": [ - 3094 + 3377 ], "roster_image_url": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "steam_bans_checked_at": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "vac_ban_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "my_friends_min_fields": { "avatar_url": [ - 80 + 83 ], "country": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "custom_avatar_url": [ - 80 + 83 ], "days_since_last_ban": [ 40 ], "discord_id": [ - 80 + 83 ], "faceit_elo": [ 40 ], "faceit_nickname": [ - 80 + 83 ], "faceit_player_id": [ - 80 + 83 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4670 + 4958 ], "faceit_url": [ - 80 + 83 ], "friend_steam_id": [ - 264 + 268 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 264 + 268 ], "language": [ - 80 + 83 ], "last_read_news_at": [ - 4670 + 4958 ], "last_sign_in_at": [ - 4670 + 4958 ], "name": [ - 80 + 83 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4670 + 4958 ], "presence_updated_at": [ - 4670 + 4958 ], "profile_url": [ - 80 + 83 ], "role": [ - 80 + 83 ], "roster_image_url": [ - 80 + 83 ], "status": [ - 80 + 83 ], "steam_bans_checked_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "vac_ban_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "my_friends_min_order_by": { "avatar_url": [ - 3094 + 3377 ], "country": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "custom_avatar_url": [ - 3094 + 3377 ], "days_since_last_ban": [ - 3094 + 3377 ], "discord_id": [ - 3094 + 3377 ], "faceit_elo": [ - 3094 + 3377 ], "faceit_nickname": [ - 3094 + 3377 ], "faceit_player_id": [ - 3094 + 3377 ], "faceit_skill_level": [ - 3094 + 3377 ], "faceit_updated_at": [ - 3094 + 3377 ], "faceit_url": [ - 3094 + 3377 ], "friend_steam_id": [ - 3094 + 3377 ], "game_ban_count": [ - 3094 + 3377 ], "invited_by_steam_id": [ - 3094 + 3377 ], "language": [ - 3094 + 3377 ], "last_read_news_at": [ - 3094 + 3377 ], "last_sign_in_at": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "premier_rank": [ - 3094 + 3377 ], "premier_rank_updated_at": [ - 3094 + 3377 ], "presence_updated_at": [ - 3094 + 3377 ], "profile_url": [ - 3094 + 3377 ], "role": [ - 3094 + 3377 ], "roster_image_url": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "steam_bans_checked_at": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "vac_ban_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "my_friends_mutation_response": { @@ -56511,131 +61834,131 @@ export default { 40 ], "returning": [ - 2942 + 3225 ], "__typename": [ - 80 + 83 ] }, "my_friends_order_by": { "avatar_url": [ - 3094 + 3377 ], "country": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "custom_avatar_url": [ - 3094 + 3377 ], "days_since_last_ban": [ - 3094 + 3377 ], "discord_id": [ - 3094 + 3377 ], "elo": [ - 3094 + 3377 ], "faceit_elo": [ - 3094 + 3377 ], "faceit_nickname": [ - 3094 + 3377 ], "faceit_player_id": [ - 3094 + 3377 ], "faceit_skill_level": [ - 3094 + 3377 ], "faceit_updated_at": [ - 3094 + 3377 ], "faceit_url": [ - 3094 + 3377 ], "friend_steam_id": [ - 3094 + 3377 ], "game_ban_count": [ - 3094 + 3377 ], "invited_by_steam_id": [ - 3094 + 3377 ], "language": [ - 3094 + 3377 ], "last_presence_state": [ - 3094 + 3377 ], "last_read_news_at": [ - 3094 + 3377 ], "last_sign_in_at": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "name_registered": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "premier_rank": [ - 3094 + 3377 ], "premier_rank_updated_at": [ - 3094 + 3377 ], "presence_updated_at": [ - 3094 + 3377 ], "profile_url": [ - 3094 + 3377 ], "role": [ - 3094 + 3377 ], "roster_image_url": [ - 3094 + 3377 ], "show_match_ready_modal": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "steam_bans_checked_at": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "vac_ban_count": [ - 3094 + 3377 ], "vac_banned": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "my_friends_prepend_input": { "elo": [ - 1930 + 2191 ], "last_presence_state": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "my_friends_select_column": {}, @@ -56643,67 +61966,67 @@ export default { "my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns": {}, "my_friends_set_input": { "avatar_url": [ - 80 + 83 ], "country": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "custom_avatar_url": [ - 80 + 83 ], "days_since_last_ban": [ 40 ], "discord_id": [ - 80 + 83 ], "elo": [ - 1930 + 2191 ], "faceit_elo": [ 40 ], "faceit_nickname": [ - 80 + 83 ], "faceit_player_id": [ - 80 + 83 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4670 + 4958 ], "faceit_url": [ - 80 + 83 ], "friend_steam_id": [ - 264 + 268 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 264 + 268 ], "language": [ - 80 + 83 ], "last_presence_state": [ - 1930 + 2191 ], "last_read_news_at": [ - 4670 + 4958 ], "last_sign_in_at": [ - 4670 + 4958 ], "name": [ - 80 + 83 ], "name_registered": [ 5 @@ -56712,31 +62035,31 @@ export default { 40 ], "premier_rank_updated_at": [ - 4670 + 4958 ], "presence_updated_at": [ - 4670 + 4958 ], "profile_url": [ - 80 + 83 ], "role": [ - 80 + 83 ], "roster_image_url": [ - 80 + 83 ], "show_match_ready_modal": [ 5 ], "status": [ - 80 + 83 ], "steam_bans_checked_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "vac_ban_count": [ 40 @@ -56745,7 +62068,7 @@ export default { 5 ], "__typename": [ - 80 + 83 ] }, "my_friends_stddev_fields": { @@ -56777,39 +62100,39 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 3094 + 3377 ], "faceit_elo": [ - 3094 + 3377 ], "faceit_skill_level": [ - 3094 + 3377 ], "friend_steam_id": [ - 3094 + 3377 ], "game_ban_count": [ - 3094 + 3377 ], "invited_by_steam_id": [ - 3094 + 3377 ], "premier_rank": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "vac_ban_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "my_friends_stddev_pop_fields": { @@ -56841,39 +62164,39 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 3094 + 3377 ], "faceit_elo": [ - 3094 + 3377 ], "faceit_skill_level": [ - 3094 + 3377 ], "friend_steam_id": [ - 3094 + 3377 ], "game_ban_count": [ - 3094 + 3377 ], "invited_by_steam_id": [ - 3094 + 3377 ], "premier_rank": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "vac_ban_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "my_friends_stddev_samp_fields": { @@ -56905,115 +62228,115 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 3094 + 3377 ], "faceit_elo": [ - 3094 + 3377 ], "faceit_skill_level": [ - 3094 + 3377 ], "friend_steam_id": [ - 3094 + 3377 ], "game_ban_count": [ - 3094 + 3377 ], "invited_by_steam_id": [ - 3094 + 3377 ], "premier_rank": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "vac_ban_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "my_friends_stream_cursor_input": { "initial_value": [ - 2978 + 3261 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "my_friends_stream_cursor_value_input": { "avatar_url": [ - 80 + 83 ], "country": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "custom_avatar_url": [ - 80 + 83 ], "days_since_last_ban": [ 40 ], "discord_id": [ - 80 + 83 ], "elo": [ - 1930 + 2191 ], "faceit_elo": [ 40 ], "faceit_nickname": [ - 80 + 83 ], "faceit_player_id": [ - 80 + 83 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4670 + 4958 ], "faceit_url": [ - 80 + 83 ], "friend_steam_id": [ - 264 + 268 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 264 + 268 ], "language": [ - 80 + 83 ], "last_presence_state": [ - 1930 + 2191 ], "last_read_news_at": [ - 4670 + 4958 ], "last_sign_in_at": [ - 4670 + 4958 ], "name": [ - 80 + 83 ], "name_registered": [ 5 @@ -57022,31 +62345,31 @@ export default { 40 ], "premier_rank_updated_at": [ - 4670 + 4958 ], "presence_updated_at": [ - 4670 + 4958 ], "profile_url": [ - 80 + 83 ], "role": [ - 80 + 83 ], "roster_image_url": [ - 80 + 83 ], "show_match_ready_modal": [ 5 ], "status": [ - 80 + 83 ], "steam_bans_checked_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "vac_ban_count": [ 40 @@ -57055,7 +62378,7 @@ export default { 5 ], "__typename": [ - 80 + 83 ] }, "my_friends_sum_fields": { @@ -57069,86 +62392,86 @@ export default { 40 ], "friend_steam_id": [ - 264 + 268 ], "game_ban_count": [ 40 ], "invited_by_steam_id": [ - 264 + 268 ], "premier_rank": [ 40 ], "steam_id": [ - 264 + 268 ], "vac_ban_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 3094 + 3377 ], "faceit_elo": [ - 3094 + 3377 ], "faceit_skill_level": [ - 3094 + 3377 ], "friend_steam_id": [ - 3094 + 3377 ], "game_ban_count": [ - 3094 + 3377 ], "invited_by_steam_id": [ - 3094 + 3377 ], "premier_rank": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "vac_ban_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "my_friends_updates": { "_append": [ - 2950 + 3233 ], "_delete_at_path": [ - 2955 + 3238 ], "_delete_elem": [ - 2956 + 3239 ], "_delete_key": [ - 2957 + 3240 ], "_inc": [ - 2958 + 3241 ], "_prepend": [ - 2966 + 3249 ], "_set": [ - 2970 + 3253 ], "where": [ - 2954 + 3237 ], "__typename": [ - 80 + 83 ] }, "my_friends_var_pop_fields": { @@ -57180,39 +62503,39 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 3094 + 3377 ], "faceit_elo": [ - 3094 + 3377 ], "faceit_skill_level": [ - 3094 + 3377 ], "friend_steam_id": [ - 3094 + 3377 ], "game_ban_count": [ - 3094 + 3377 ], "invited_by_steam_id": [ - 3094 + 3377 ], "premier_rank": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "vac_ban_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "my_friends_var_samp_fields": { @@ -57244,39 +62567,39 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 3094 + 3377 ], "faceit_elo": [ - 3094 + 3377 ], "faceit_skill_level": [ - 3094 + 3377 ], "friend_steam_id": [ - 3094 + 3377 ], "game_ban_count": [ - 3094 + 3377 ], "invited_by_steam_id": [ - 3094 + 3377 ], "premier_rank": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "vac_ban_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "my_friends_variance_fields": { @@ -57308,105 +62631,105 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 3094 + 3377 ], "faceit_elo": [ - 3094 + 3377 ], "faceit_skill_level": [ - 3094 + 3377 ], "friend_steam_id": [ - 3094 + 3377 ], "game_ban_count": [ - 3094 + 3377 ], "invited_by_steam_id": [ - 3094 + 3377 ], "premier_rank": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "vac_ban_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "news_articles": { "author": [ - 4052 + 4335 ], "author_steam_id": [ - 264 + 268 ], "content_markdown": [ - 80 + 83 ], "cover_image_url": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "published_at": [ - 4670 + 4958 ], "slug": [ - 80 + 83 ], "status": [ - 80 + 83 ], "teaser": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "view_count": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "news_articles_aggregate": { "aggregate": [ - 2990 + 3273 ], "nodes": [ - 2988 + 3271 ], "__typename": [ - 80 + 83 ] }, "news_articles_aggregate_fields": { "avg": [ - 2991 + 3274 ], "count": [ 40, { "columns": [ - 3002, + 3285, "[news_articles_select_column!]" ], "distinct": [ @@ -57415,34 +62738,34 @@ export default { } ], "max": [ - 2996 + 3279 ], "min": [ - 2997 + 3280 ], "stddev": [ - 3004 + 3287 ], "stddev_pop": [ - 3005 + 3288 ], "stddev_samp": [ - 3006 + 3289 ], "sum": [ - 3009 + 3292 ], "var_pop": [ - 3012 + 3295 ], "var_samp": [ - 3013 + 3296 ], "variance": [ - 3014 + 3297 ], "__typename": [ - 80 + 83 ] }, "news_articles_avg_fields": { @@ -57453,198 +62776,198 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "news_articles_bool_exp": { "_and": [ - 2992 + 3275 ], "_not": [ - 2992 + 3275 ], "_or": [ - 2992 + 3275 ], "author": [ - 4056 + 4339 ], "author_steam_id": [ - 266 + 270 ], "content_markdown": [ - 82 + 85 ], "cover_image_url": [ - 82 + 85 ], "created_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "published_at": [ - 4671 + 4959 ], "slug": [ - 82 + 85 ], "status": [ - 82 + 85 ], "teaser": [ - 82 + 85 ], "title": [ - 82 + 85 ], "updated_at": [ - 4671 + 4959 ], "view_count": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "news_articles_constraint": {}, "news_articles_inc_input": { "author_steam_id": [ - 264 + 268 ], "view_count": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "news_articles_insert_input": { "author": [ - 4063 + 4346 ], "author_steam_id": [ - 264 + 268 ], "content_markdown": [ - 80 + 83 ], "cover_image_url": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "published_at": [ - 4670 + 4958 ], "slug": [ - 80 + 83 ], "status": [ - 80 + 83 ], "teaser": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "view_count": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "news_articles_max_fields": { "author_steam_id": [ - 264 + 268 ], "content_markdown": [ - 80 + 83 ], "cover_image_url": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "published_at": [ - 4670 + 4958 ], "slug": [ - 80 + 83 ], "status": [ - 80 + 83 ], "teaser": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "view_count": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "news_articles_min_fields": { "author_steam_id": [ - 264 + 268 ], "content_markdown": [ - 80 + 83 ], "cover_image_url": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "published_at": [ - 4670 + 4958 ], "slug": [ - 80 + 83 ], "status": [ - 80 + 83 ], "teaser": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "view_count": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "news_articles_mutation_response": { @@ -57652,118 +62975,118 @@ export default { 40 ], "returning": [ - 2988 + 3271 ], "__typename": [ - 80 + 83 ] }, "news_articles_on_conflict": { "constraint": [ - 2993 + 3276 ], "update_columns": [ - 3010 + 3293 ], "where": [ - 2992 + 3275 ], "__typename": [ - 80 + 83 ] }, "news_articles_order_by": { "author": [ - 4065 + 4348 ], "author_steam_id": [ - 3094 + 3377 ], "content_markdown": [ - 3094 + 3377 ], "cover_image_url": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "published_at": [ - 3094 + 3377 ], "slug": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "teaser": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "view_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "news_articles_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "news_articles_select_column": {}, "news_articles_set_input": { "author_steam_id": [ - 264 + 268 ], "content_markdown": [ - 80 + 83 ], "cover_image_url": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "published_at": [ - 4670 + 4958 ], "slug": [ - 80 + 83 ], "status": [ - 80 + 83 ], "teaser": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "view_count": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "news_articles_stddev_fields": { @@ -57774,7 +63097,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "news_articles_stddev_pop_fields": { @@ -57785,7 +63108,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "news_articles_stddev_samp_fields": { @@ -57796,85 +63119,85 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "news_articles_stream_cursor_input": { "initial_value": [ - 3008 + 3291 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "news_articles_stream_cursor_value_input": { "author_steam_id": [ - 264 + 268 ], "content_markdown": [ - 80 + 83 ], "cover_image_url": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "published_at": [ - 4670 + 4958 ], "slug": [ - 80 + 83 ], "status": [ - 80 + 83 ], "teaser": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "view_count": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "news_articles_sum_fields": { "author_steam_id": [ - 264 + 268 ], "view_count": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2994 + 3277 ], "_set": [ - 3003 + 3286 ], "where": [ - 2992 + 3275 ], "__typename": [ - 80 + 83 ] }, "news_articles_var_pop_fields": { @@ -57885,7 +63208,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "news_articles_var_samp_fields": { @@ -57896,7 +63219,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "news_articles_variance_fields": { @@ -57907,49 +63230,49 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notification_preferences": { "channel": [ - 80 + 83 ], "enabled": [ 5 ], "key": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_aggregate": { "aggregate": [ - 3017 + 3300 ], "nodes": [ - 3015 + 3298 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_aggregate_fields": { "avg": [ - 3018 + 3301 ], "count": [ 40, { "columns": [ - 3029, + 3312, "[notification_preferences_select_column!]" ], "distinct": [ @@ -57958,34 +63281,34 @@ export default { } ], "max": [ - 3023 + 3306 ], "min": [ - 3024 + 3307 ], "stddev": [ - 3031 + 3314 ], "stddev_pop": [ - 3032 + 3315 ], "stddev_samp": [ - 3033 + 3316 ], "sum": [ - 3036 + 3319 ], "var_pop": [ - 3039 + 3322 ], "var_samp": [ - 3040 + 3323 ], "variance": [ - 3041 + 3324 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_avg_fields": { @@ -57993,99 +63316,99 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_bool_exp": { "_and": [ - 3019 + 3302 ], "_not": [ - 3019 + 3302 ], "_or": [ - 3019 + 3302 ], "channel": [ - 82 + 85 ], "enabled": [ 6 ], "key": [ - 82 + 85 ], "steam_id": [ - 266 + 270 ], "updated_at": [ - 4671 + 4959 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_constraint": {}, "notification_preferences_inc_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_insert_input": { "channel": [ - 80 + 83 ], "enabled": [ 5 ], "key": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_max_fields": { "channel": [ - 80 + 83 ], "key": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_min_fields": { "channel": [ - 80 + 83 ], "key": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_mutation_response": { @@ -58093,79 +63416,79 @@ export default { 40 ], "returning": [ - 3015 + 3298 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_on_conflict": { "constraint": [ - 3020 + 3303 ], "update_columns": [ - 3037 + 3320 ], "where": [ - 3019 + 3302 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_order_by": { "channel": [ - 3094 + 3377 ], "enabled": [ - 3094 + 3377 ], "key": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_pk_columns_input": { "channel": [ - 80 + 83 ], "key": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_select_column": {}, "notification_preferences_set_input": { "channel": [ - 80 + 83 ], "enabled": [ 5 ], "key": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_stddev_fields": { @@ -58173,7 +63496,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_stddev_pop_fields": { @@ -58181,7 +63504,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_stddev_samp_fields": { @@ -58189,61 +63512,61 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_stream_cursor_input": { "initial_value": [ - 3035 + 3318 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_stream_cursor_value_input": { "channel": [ - 80 + 83 ], "enabled": [ 5 ], "key": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_update_column": {}, "notification_preferences_updates": { "_inc": [ - 3021 + 3304 ], "_set": [ - 3030 + 3313 ], "where": [ - 3019 + 3302 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_var_pop_fields": { @@ -58251,7 +63574,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_var_samp_fields": { @@ -58259,7 +63582,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notification_preferences_variance_fields": { @@ -58267,26 +63590,26 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notifications": { "actions": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "created_at": [ - 4670 + 4958 ], "data": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], @@ -58294,13 +63617,13 @@ export default { 5 ], "deleted_at": [ - 4670 + 4958 ], "entity_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "in_app": [ 5 @@ -58309,112 +63632,112 @@ export default { 5 ], "message": [ - 80 + 83 ], "player": [ - 4052 + 4335 ], "role": [ - 1178 + 1242 ], "steam_id": [ - 264 + 268 ], "title": [ - 80 + 83 ], "type": [ - 1138 + 1202 ], "__typename": [ - 80 + 83 ] }, "notifications_aggregate": { "aggregate": [ - 3048 + 3331 ], "nodes": [ - 3042 + 3325 ], "__typename": [ - 80 + 83 ] }, "notifications_aggregate_bool_exp": { "bool_and": [ - 3045 + 3328 ], "bool_or": [ - 3046 + 3329 ], "count": [ - 3047 + 3330 ], "__typename": [ - 80 + 83 ] }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 3071 + 3354 ], "distinct": [ 5 ], "filter": [ - 3054 + 3337 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 3072 + 3355 ], "distinct": [ 5 ], "filter": [ - 3054 + 3337 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 3070 + 3353 ], "distinct": [ 5 ], "filter": [ - 3054 + 3337 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "notifications_aggregate_fields": { "avg": [ - 3052 + 3335 ], "count": [ 40, { "columns": [ - 3070, + 3353, "[notifications_select_column!]" ], "distinct": [ @@ -58423,94 +63746,94 @@ export default { } ], "max": [ - 3061 + 3344 ], "min": [ - 3063 + 3346 ], "stddev": [ - 3074 + 3357 ], "stddev_pop": [ - 3076 + 3359 ], "stddev_samp": [ - 3078 + 3361 ], "sum": [ - 3082 + 3365 ], "var_pop": [ - 3086 + 3369 ], "var_samp": [ - 3088 + 3371 ], "variance": [ - 3090 + 3373 ], "__typename": [ - 80 + 83 ] }, "notifications_aggregate_order_by": { "avg": [ - 3053 + 3336 ], "count": [ - 3094 + 3377 ], "max": [ - 3062 + 3345 ], "min": [ - 3064 + 3347 ], "stddev": [ - 3075 + 3358 ], "stddev_pop": [ - 3077 + 3360 ], "stddev_samp": [ - 3079 + 3362 ], "sum": [ - 3083 + 3366 ], "var_pop": [ - 3087 + 3370 ], "var_samp": [ - 3089 + 3372 ], "variance": [ - 3091 + 3374 ], "__typename": [ - 80 + 83 ] }, "notifications_append_input": { "actions": [ - 1930 + 2191 ], "data": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "notifications_arr_rel_insert_input": { "data": [ - 3060 + 3343 ], "on_conflict": [ - 3066 + 3349 ], "__typename": [ - 80 + 83 ] }, "notifications_avg_fields": { @@ -58518,47 +63841,47 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notifications_avg_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "notifications_bool_exp": { "_and": [ - 3054 + 3337 ], "_not": [ - 3054 + 3337 ], "_or": [ - 3054 + 3337 ], "actions": [ - 1932 + 2193 ], "created_at": [ - 4671 + 4959 ], "data": [ - 1932 + 2193 ], "deletable": [ 6 ], "deleted_at": [ - 4671 + 4959 ], "entity_id": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "in_app": [ 6 @@ -58567,37 +63890,37 @@ export default { 6 ], "message": [ - 82 + 85 ], "player": [ - 4056 + 4339 ], "role": [ - 1179 + 1243 ], "steam_id": [ - 266 + 270 ], "title": [ - 82 + 85 ], "type": [ - 1139 + 1203 ], "__typename": [ - 80 + 83 ] }, "notifications_constraint": {}, "notifications_delete_at_path_input": { "actions": [ - 80 + 83 ], "data": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "notifications_delete_elem_input": { @@ -58608,49 +63931,49 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "notifications_delete_key_input": { "actions": [ - 80 + 83 ], "data": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "notifications_inc_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "notifications_insert_input": { "actions": [ - 1930 + 2191 ], "created_at": [ - 4670 + 4958 ], "data": [ - 1930 + 2191 ], "deletable": [ 5 ], "deleted_at": [ - 4670 + 4958 ], "entity_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "in_app": [ 5 @@ -58659,129 +63982,129 @@ export default { 5 ], "message": [ - 80 + 83 ], "player": [ - 4063 + 4346 ], "role": [ - 1178 + 1242 ], "steam_id": [ - 264 + 268 ], "title": [ - 80 + 83 ], "type": [ - 1138 + 1202 ], "__typename": [ - 80 + 83 ] }, "notifications_max_fields": { "created_at": [ - 4670 + 4958 ], "deleted_at": [ - 4670 + 4958 ], "entity_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "title": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "notifications_max_order_by": { "created_at": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "entity_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "message": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "notifications_min_fields": { "created_at": [ - 4670 + 4958 ], "deleted_at": [ - 4670 + 4958 ], "entity_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "title": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "notifications_min_order_by": { "created_at": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "entity_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "message": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "notifications_mutation_response": { @@ -58789,93 +64112,93 @@ export default { 40 ], "returning": [ - 3042 + 3325 ], "__typename": [ - 80 + 83 ] }, "notifications_on_conflict": { "constraint": [ - 3055 + 3338 ], "update_columns": [ - 3084 + 3367 ], "where": [ - 3054 + 3337 ], "__typename": [ - 80 + 83 ] }, "notifications_order_by": { "actions": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "data": [ - 3094 + 3377 ], "deletable": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "entity_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "in_app": [ - 3094 + 3377 ], "is_read": [ - 3094 + 3377 ], "message": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "role": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "notifications_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "notifications_prepend_input": { "actions": [ - 1930 + 2191 ], "data": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "notifications_select_column": {}, @@ -58883,25 +64206,25 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1930 + 2191 ], "created_at": [ - 4670 + 4958 ], "data": [ - 1930 + 2191 ], "deletable": [ 5 ], "deleted_at": [ - 4670 + 4958 ], "entity_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "in_app": [ 5 @@ -58910,22 +64233,22 @@ export default { 5 ], "message": [ - 80 + 83 ], "role": [ - 1178 + 1242 ], "steam_id": [ - 264 + 268 ], "title": [ - 80 + 83 ], "type": [ - 1138 + 1202 ], "__typename": [ - 80 + 83 ] }, "notifications_stddev_fields": { @@ -58933,15 +64256,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notifications_stddev_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "notifications_stddev_pop_fields": { @@ -58949,15 +64272,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notifications_stddev_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "notifications_stddev_samp_fields": { @@ -58965,49 +64288,49 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notifications_stddev_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "notifications_stream_cursor_input": { "initial_value": [ - 3081 + 3364 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "notifications_stream_cursor_value_input": { "actions": [ - 1930 + 2191 ], "created_at": [ - 4670 + 4958 ], "data": [ - 1930 + 2191 ], "deletable": [ 5 ], "deleted_at": [ - 4670 + 4958 ], "entity_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "in_app": [ 5 @@ -59016,68 +64339,68 @@ export default { 5 ], "message": [ - 80 + 83 ], "role": [ - 1178 + 1242 ], "steam_id": [ - 264 + 268 ], "title": [ - 80 + 83 ], "type": [ - 1138 + 1202 ], "__typename": [ - 80 + 83 ] }, "notifications_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "notifications_sum_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "notifications_update_column": {}, "notifications_updates": { "_append": [ - 3050 + 3333 ], "_delete_at_path": [ - 3056 + 3339 ], "_delete_elem": [ - 3057 + 3340 ], "_delete_key": [ - 3058 + 3341 ], "_inc": [ - 3059 + 3342 ], "_prepend": [ - 3069 + 3352 ], "_set": [ - 3073 + 3356 ], "where": [ - 3054 + 3337 ], "__typename": [ - 80 + 83 ] }, "notifications_var_pop_fields": { @@ -59085,15 +64408,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notifications_var_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "notifications_var_samp_fields": { @@ -59101,15 +64424,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notifications_var_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "notifications_variance_fields": { @@ -59117,116 +64440,116 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "notifications_variance_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 3092 + 3375 ], "_gt": [ - 3092 + 3375 ], "_gte": [ - 3092 + 3375 ], "_in": [ - 3092 + 3375 ], "_is_null": [ 5 ], "_lt": [ - 3092 + 3375 ], "_lte": [ - 3092 + 3375 ], "_neq": [ - 3092 + 3375 ], "_nin": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "order_by": {}, "pending_match_import_players": { "created_at": [ - 4670 + 4958 ], "pending_match_import": [ - 3136 + 3419 ], "player": [ - 4052 + 4335 ], "steam_id": [ - 264 + 268 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_aggregate": { "aggregate": [ - 3099 + 3382 ], "nodes": [ - 3095 + 3378 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 3098 + 3381 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 3116 + 3399 ], "distinct": [ 5 ], "filter": [ - 3104 + 3387 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_aggregate_fields": { "avg": [ - 3102 + 3385 ], "count": [ 40, { "columns": [ - 3116, + 3399, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -59235,83 +64558,83 @@ export default { } ], "max": [ - 3108 + 3391 ], "min": [ - 3110 + 3393 ], "stddev": [ - 3118 + 3401 ], "stddev_pop": [ - 3120 + 3403 ], "stddev_samp": [ - 3122 + 3405 ], "sum": [ - 3126 + 3409 ], "var_pop": [ - 3130 + 3413 ], "var_samp": [ - 3132 + 3415 ], "variance": [ - 3134 + 3417 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 3103 + 3386 ], "count": [ - 3094 + 3377 ], "max": [ - 3109 + 3392 ], "min": [ - 3111 + 3394 ], "stddev": [ - 3119 + 3402 ], "stddev_pop": [ - 3121 + 3404 ], "stddev_samp": [ - 3123 + 3406 ], "sum": [ - 3127 + 3410 ], "var_pop": [ - 3131 + 3414 ], "var_samp": [ - 3133 + 3416 ], "variance": [ - 3135 + 3418 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 3107 + 3390 ], "on_conflict": [ - 3113 + 3396 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_avg_fields": { @@ -59322,135 +64645,135 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 3094 + 3377 ], "valve_match_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_bool_exp": { "_and": [ - 3104 + 3387 ], "_not": [ - 3104 + 3387 ], "_or": [ - 3104 + 3387 ], "created_at": [ - 4671 + 4959 ], "pending_match_import": [ - 3140 + 3423 ], "player": [ - 4056 + 4339 ], "steam_id": [ - 266 + 270 ], "valve_match_id": [ - 3093 + 3376 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_constraint": {}, "pending_match_import_players_inc_input": { "steam_id": [ - 264 + 268 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_insert_input": { "created_at": [ - 4670 + 4958 ], "pending_match_import": [ - 3147 + 3430 ], "player": [ - 4063 + 4346 ], "steam_id": [ - 264 + 268 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_max_fields": { "created_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_max_order_by": { "created_at": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "valve_match_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_min_fields": { "created_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_min_order_by": { "created_at": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "valve_match_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_mutation_response": { @@ -59458,70 +64781,70 @@ export default { 40 ], "returning": [ - 3095 + 3378 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_on_conflict": { "constraint": [ - 3105 + 3388 ], "update_columns": [ - 3128 + 3411 ], "where": [ - 3104 + 3387 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_order_by": { "created_at": [ - 3094 + 3377 ], "pending_match_import": [ - 3149 + 3432 ], "player": [ - 4065 + 4348 ], "steam_id": [ - 3094 + 3377 ], "valve_match_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_pk_columns_input": { "steam_id": [ - 264 + 268 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_stddev_fields": { @@ -59532,18 +64855,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 3094 + 3377 ], "valve_match_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_stddev_pop_fields": { @@ -59554,18 +64877,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "valve_match_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_stddev_samp_fields": { @@ -59576,80 +64899,80 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "valve_match_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 3125 + 3408 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_sum_fields": { "steam_id": [ - 264 + 268 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 3094 + 3377 ], "valve_match_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 3106 + 3389 ], "_set": [ - 3117 + 3400 ], "where": [ - 3104 + 3387 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_var_pop_fields": { @@ -59660,18 +64983,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "valve_match_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_var_samp_fields": { @@ -59682,18 +65005,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "valve_match_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_variance_fields": { @@ -59704,41 +65027,41 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 3094 + 3377 ], "valve_match_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports": { "created_at": [ - 4670 + 4958 ], "demo_url": [ - 80 + 83 ], "error": [ - 80 + 83 ], "map_name": [ - 80 + 83 ], "match_start_time": [ - 4670 + 4958 ], "players": [ - 3095, + 3378, { "distinct_on": [ - 3116, + 3399, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -59748,19 +65071,19 @@ export default { 40 ], "order_by": [ - 3114, + 3397, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3387 ] } ], "players_aggregate": [ - 3096, + 3379, { "distinct_on": [ - 3116, + 3399, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -59770,50 +65093,50 @@ export default { 40 ], "order_by": [ - 3114, + 3397, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3387 ] } ], "share_code": [ - 80 + 83 ], "status": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_aggregate": { "aggregate": [ - 3138 + 3421 ], "nodes": [ - 3136 + 3419 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_aggregate_fields": { "avg": [ - 3139 + 3422 ], "count": [ 40, { "columns": [ - 3151, + 3434, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -59822,34 +65145,34 @@ export default { } ], "max": [ - 3144 + 3427 ], "min": [ - 3145 + 3428 ], "stddev": [ - 3153 + 3436 ], "stddev_pop": [ - 3154 + 3437 ], "stddev_samp": [ - 3155 + 3438 ], "sum": [ - 3158 + 3441 ], "var_pop": [ - 3161 + 3444 ], "var_samp": [ - 3162 + 3445 ], "variance": [ - 3163 + 3446 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_avg_fields": { @@ -59857,162 +65180,162 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_bool_exp": { "_and": [ - 3140 + 3423 ], "_not": [ - 3140 + 3423 ], "_or": [ - 3140 + 3423 ], "created_at": [ - 4671 + 4959 ], "demo_url": [ - 82 + 85 ], "error": [ - 82 + 85 ], "map_name": [ - 82 + 85 ], "match_start_time": [ - 4671 + 4959 ], "players": [ - 3104 + 3387 ], "players_aggregate": [ - 3097 + 3380 ], "share_code": [ - 82 + 85 ], "status": [ - 82 + 85 ], "updated_at": [ - 4671 + 4959 ], "valve_match_id": [ - 3093 + 3376 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_insert_input": { "created_at": [ - 4670 + 4958 ], "demo_url": [ - 80 + 83 ], "error": [ - 80 + 83 ], "map_name": [ - 80 + 83 ], "match_start_time": [ - 4670 + 4958 ], "players": [ - 3101 + 3384 ], "share_code": [ - 80 + 83 ], "status": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_max_fields": { "created_at": [ - 4670 + 4958 ], "demo_url": [ - 80 + 83 ], "error": [ - 80 + 83 ], "map_name": [ - 80 + 83 ], "match_start_time": [ - 4670 + 4958 ], "share_code": [ - 80 + 83 ], "status": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_min_fields": { "created_at": [ - 4670 + 4958 ], "demo_url": [ - 80 + 83 ], "error": [ - 80 + 83 ], "map_name": [ - 80 + 83 ], "match_start_time": [ - 4670 + 4958 ], "share_code": [ - 80 + 83 ], "status": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_mutation_response": { @@ -60020,111 +65343,111 @@ export default { 40 ], "returning": [ - 3136 + 3419 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 3143 + 3426 ], "on_conflict": [ - 3148 + 3431 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_on_conflict": { "constraint": [ - 3141 + 3424 ], "update_columns": [ - 3159 + 3442 ], "where": [ - 3140 + 3423 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_order_by": { "created_at": [ - 3094 + 3377 ], "demo_url": [ - 3094 + 3377 ], "error": [ - 3094 + 3377 ], "map_name": [ - 3094 + 3377 ], "match_start_time": [ - 3094 + 3377 ], "players_aggregate": [ - 3100 + 3383 ], "share_code": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "valve_match_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4670 + 4958 ], "demo_url": [ - 80 + 83 ], "error": [ - 80 + 83 ], "map_name": [ - 80 + 83 ], "match_start_time": [ - 4670 + 4958 ], "share_code": [ - 80 + 83 ], "status": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_stddev_fields": { @@ -60132,7 +65455,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_stddev_pop_fields": { @@ -60140,7 +65463,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_stddev_samp_fields": { @@ -60148,73 +65471,73 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 3157 + 3440 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "demo_url": [ - 80 + 83 ], "error": [ - 80 + 83 ], "map_name": [ - 80 + 83 ], "match_start_time": [ - 4670 + 4958 ], "share_code": [ - 80 + 83 ], "status": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 3142 + 3425 ], "_set": [ - 3152 + 3435 ], "where": [ - 3140 + 3423 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_var_pop_fields": { @@ -60222,7 +65545,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_var_samp_fields": { @@ -60230,7 +65553,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "pending_match_imports_variance_fields": { @@ -60238,15 +65561,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo": { "attacker": [ - 4052 + 4335 ], "attacker_steam_id": [ - 264 + 268 ], "counter_strafe_eligible_shots": [ 40 @@ -60258,7 +65581,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "first_bullet_hits": [ 40 @@ -60276,16 +65599,16 @@ export default { 40 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "non_awp_hits": [ 40 @@ -60306,35 +65629,35 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 3166 + 3449 ], "nodes": [ - 3164 + 3447 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 3167 + 3450 ], "count": [ 40, { "columns": [ - 3178, + 3461, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -60343,34 +65666,34 @@ export default { } ], "max": [ - 3172 + 3455 ], "min": [ - 3173 + 3456 ], "stddev": [ - 3180 + 3463 ], "stddev_pop": [ - 3181 + 3464 ], "stddev_samp": [ - 3182 + 3465 ], "sum": [ - 3185 + 3468 ], "var_pop": [ - 3188 + 3471 ], "var_samp": [ - 3189 + 3472 ], "variance": [ - 3190 + 3473 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_avg_fields": { @@ -60429,24 +65752,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_bool_exp": { "_and": [ - 3168 + 3451 ], "_not": [ - 3168 + 3451 ], "_or": [ - 3168 + 3451 ], "attacker": [ - 4056 + 4339 ], "attacker_steam_id": [ - 266 + 270 ], "counter_strafe_eligible_shots": [ 41 @@ -60458,7 +65781,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3093 + 3376 ], "first_bullet_hits": [ 41 @@ -60476,16 +65799,16 @@ export default { 41 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "non_awp_hits": [ 41 @@ -60506,19 +65829,19 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3093 + 3376 ], "total_engagement_frames": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_constraint": {}, "player_aim_stats_demo_inc_input": { "attacker_steam_id": [ - 264 + 268 ], "counter_strafe_eligible_shots": [ 40 @@ -60530,7 +65853,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "first_bullet_hits": [ 40 @@ -60566,21 +65889,21 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_insert_input": { "attacker": [ - 4063 + 4346 ], "attacker_steam_id": [ - 264 + 268 ], "counter_strafe_eligible_shots": [ 40 @@ -60592,7 +65915,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "first_bullet_hits": [ 40 @@ -60610,16 +65933,16 @@ export default { 40 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "non_awp_hits": [ 40 @@ -60640,18 +65963,18 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_max_fields": { "attacker_steam_id": [ - 264 + 268 ], "counter_strafe_eligible_shots": [ 40 @@ -60663,7 +65986,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "first_bullet_hits": [ 40 @@ -60681,10 +66004,10 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "non_awp_hits": [ 40 @@ -60705,18 +66028,18 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_min_fields": { "attacker_steam_id": [ - 264 + 268 ], "counter_strafe_eligible_shots": [ 40 @@ -60728,7 +66051,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "first_bullet_hits": [ 40 @@ -60746,10 +66069,10 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "non_awp_hits": [ 40 @@ -60770,13 +66093,13 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_mutation_response": { @@ -60784,115 +66107,115 @@ export default { 40 ], "returning": [ - 3164 + 3447 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 3169 + 3452 ], "update_columns": [ - 3186 + 3469 ], "where": [ - 3168 + 3451 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_order_by": { "attacker": [ - 4065 + 4348 ], "attacker_steam_id": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "crosshair_angle_count": [ - 3094 + 3377 ], "crosshair_angle_sum_deg": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "time_to_damage_count": [ - 3094 + 3377 ], "time_to_damage_sum_s": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_pk_columns_input": { "attacker_steam_id": [ - 264 + 268 ], "match_map_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_select_column": {}, "player_aim_stats_demo_set_input": { "attacker_steam_id": [ - 264 + 268 ], "counter_strafe_eligible_shots": [ 40 @@ -60904,7 +66227,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "first_bullet_hits": [ 40 @@ -60922,10 +66245,10 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "non_awp_hits": [ 40 @@ -60946,13 +66269,13 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_stddev_fields": { @@ -61011,7 +66334,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_stddev_pop_fields": { @@ -61070,7 +66393,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_stddev_samp_fields": { @@ -61129,23 +66452,23 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 3184 + 3467 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_stream_cursor_value_input": { "attacker_steam_id": [ - 264 + 268 ], "counter_strafe_eligible_shots": [ 40 @@ -61157,7 +66480,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "first_bullet_hits": [ 40 @@ -61175,10 +66498,10 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "non_awp_hits": [ 40 @@ -61199,18 +66522,18 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_sum_fields": { "attacker_steam_id": [ - 264 + 268 ], "counter_strafe_eligible_shots": [ 40 @@ -61222,7 +66545,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "first_bullet_hits": [ 40 @@ -61258,28 +66581,28 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 3170 + 3453 ], "_set": [ - 3179 + 3462 ], "where": [ - 3168 + 3451 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_var_pop_fields": { @@ -61338,7 +66661,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_var_samp_fields": { @@ -61397,7 +66720,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_stats_demo_variance_fields": { @@ -61456,7 +66779,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats": { @@ -61473,19 +66796,19 @@ export default { 40 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4052 + 4335 ], "shots": [ 40 @@ -61494,60 +66817,60 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "weapon_class": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 3195 + 3478 ], "nodes": [ - 3191 + 3474 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 3194 + 3477 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 3212 + 3495 ], "distinct": [ 5 ], "filter": [ - 3200 + 3483 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 3198 + 3481 ], "count": [ 40, { "columns": [ - 3212, + 3495, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -61556,83 +66879,83 @@ export default { } ], "max": [ - 3204 + 3487 ], "min": [ - 3206 + 3489 ], "stddev": [ - 3214 + 3497 ], "stddev_pop": [ - 3216 + 3499 ], "stddev_samp": [ - 3218 + 3501 ], "sum": [ - 3222 + 3505 ], "var_pop": [ - 3226 + 3509 ], "var_samp": [ - 3228 + 3511 ], "variance": [ - 3230 + 3513 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 3199 + 3482 ], "count": [ - 3094 + 3377 ], "max": [ - 3205 + 3488 ], "min": [ - 3207 + 3490 ], "stddev": [ - 3215 + 3498 ], "stddev_pop": [ - 3217 + 3500 ], "stddev_samp": [ - 3219 + 3502 ], "sum": [ - 3223 + 3506 ], "var_pop": [ - 3227 + 3510 ], "var_samp": [ - 3229 + 3512 ], "variance": [ - 3231 + 3514 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 3203 + 3486 ], "on_conflict": [ - 3209 + 3492 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_avg_fields": { @@ -61658,44 +66981,44 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 3200 + 3483 ], "_not": [ - 3200 + 3483 ], "_or": [ - 3200 + 3483 ], "first_bullet_hits": [ 41 @@ -61710,19 +67033,19 @@ export default { 41 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "player": [ - 4056 + 4339 ], "shots": [ 41 @@ -61731,13 +67054,13 @@ export default { 41 ], "steam_id": [ - 266 + 270 ], "weapon_class": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_constraint": {}, @@ -61761,10 +67084,10 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_insert_input": { @@ -61781,19 +67104,19 @@ export default { 40 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4063 + 4346 ], "shots": [ 40 @@ -61802,13 +67125,13 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "weapon_class": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_max_fields": { @@ -61825,10 +67148,10 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "shots": [ 40 @@ -61837,48 +67160,48 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "weapon_class": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "weapon_class": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_min_fields": { @@ -61895,10 +67218,10 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "shots": [ 40 @@ -61907,48 +67230,48 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "weapon_class": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "weapon_class": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_mutation_response": { @@ -61956,82 +67279,82 @@ export default { 40 ], "returning": [ - 3191 + 3474 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 3201 + 3484 ], "update_columns": [ - 3224 + 3507 ], "where": [ - 3200 + 3483 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "weapon_class": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "weapon_class": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_select_column": {}, @@ -62049,10 +67372,10 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "shots": [ 40 @@ -62061,13 +67384,13 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "weapon_class": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_stddev_fields": { @@ -62093,33 +67416,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_stddev_pop_fields": { @@ -62145,33 +67468,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_stddev_samp_fields": { @@ -62197,44 +67520,44 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 3221 + 3504 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_stream_cursor_value_input": { @@ -62251,10 +67574,10 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "shots": [ 40 @@ -62263,13 +67586,13 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "weapon_class": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_sum_fields": { @@ -62292,51 +67615,51 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 3202 + 3485 ], "_set": [ - 3213 + 3496 ], "where": [ - 3200 + 3483 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_var_pop_fields": { @@ -62362,33 +67685,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_var_samp_fields": { @@ -62414,33 +67737,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_variance_fields": { @@ -62466,53 +67789,53 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_assists": { "attacked_player": [ - 4052 + 4335 ], "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "deleted_at": [ - 4670 + 4958 ], "flash": [ 5 @@ -62521,115 +67844,115 @@ export default { 5 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4052 + 4335 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_assists_aggregate": { "aggregate": [ - 3238 + 3521 ], "nodes": [ - 3232 + 3515 ], "__typename": [ - 80 + 83 ] }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 3235 + 3518 ], "bool_or": [ - 3236 + 3519 ], "count": [ - 3237 + 3520 ], "__typename": [ - 80 + 83 ] }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 3256 + 3539 ], "distinct": [ 5 ], "filter": [ - 3243 + 3526 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 3257 + 3540 ], "distinct": [ 5 ], "filter": [ - 3243 + 3526 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 3255 + 3538 ], "distinct": [ 5 ], "filter": [ - 3243 + 3526 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_assists_aggregate_fields": { "avg": [ - 3241 + 3524 ], "count": [ 40, { "columns": [ - 3255, + 3538, "[player_assists_select_column!]" ], "distinct": [ @@ -62638,83 +67961,83 @@ export default { } ], "max": [ - 3247 + 3530 ], "min": [ - 3249 + 3532 ], "stddev": [ - 3259 + 3542 ], "stddev_pop": [ - 3261 + 3544 ], "stddev_samp": [ - 3263 + 3546 ], "sum": [ - 3267 + 3550 ], "var_pop": [ - 3271 + 3554 ], "var_samp": [ - 3273 + 3556 ], "variance": [ - 3275 + 3558 ], "__typename": [ - 80 + 83 ] }, "player_assists_aggregate_order_by": { "avg": [ - 3242 + 3525 ], "count": [ - 3094 + 3377 ], "max": [ - 3248 + 3531 ], "min": [ - 3250 + 3533 ], "stddev": [ - 3260 + 3543 ], "stddev_pop": [ - 3262 + 3545 ], "stddev_samp": [ - 3264 + 3547 ], "sum": [ - 3268 + 3551 ], "var_pop": [ - 3272 + 3555 ], "var_samp": [ - 3274 + 3557 ], "variance": [ - 3276 + 3559 ], "__typename": [ - 80 + 83 ] }, "player_assists_arr_rel_insert_input": { "data": [ - 3246 + 3529 ], "on_conflict": [ - 3252 + 3535 ], "__typename": [ - 80 + 83 ] }, "player_assists_avg_fields": { @@ -62728,50 +68051,50 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_assists_bool_exp": { "_and": [ - 3243 + 3526 ], "_not": [ - 3243 + 3526 ], "_or": [ - 3243 + 3526 ], "attacked_player": [ - 4056 + 4339 ], "attacked_steam_id": [ - 266 + 270 ], "attacked_team": [ - 82 + 85 ], "attacker_steam_id": [ - 266 + 270 ], "attacker_team": [ - 82 + 85 ], "deleted_at": [ - 4671 + 4959 ], "flash": [ 6 @@ -62780,218 +68103,218 @@ export default { 6 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "player": [ - 4056 + 4339 ], "round": [ 41 ], "time": [ - 4671 + 4959 ], "__typename": [ - 80 + 83 ] }, "player_assists_constraint": {}, "player_assists_inc_input": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_assists_insert_input": { "attacked_player": [ - 4063 + 4346 ], "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "deleted_at": [ - 4670 + 4958 ], "flash": [ 5 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4063 + 4346 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_assists_max_fields": { "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "deleted_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_assists_max_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacked_team": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "attacker_team": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_assists_min_fields": { "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "deleted_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_assists_min_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacked_team": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "attacker_team": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_assists_mutation_response": { @@ -62999,91 +68322,91 @@ export default { 40 ], "returning": [ - 3232 + 3515 ], "__typename": [ - 80 + 83 ] }, "player_assists_on_conflict": { "constraint": [ - 3244 + 3527 ], "update_columns": [ - 3269 + 3552 ], "where": [ - 3243 + 3526 ], "__typename": [ - 80 + 83 ] }, "player_assists_order_by": { "attacked_player": [ - 4065 + 4348 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacked_team": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "attacker_team": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "flash": [ - 3094 + 3377 ], "is_team_assist": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_assists_pk_columns_input": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "match_map_id": [ - 5170 + 5458 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_assists_select_column": {}, @@ -63091,37 +68414,37 @@ export default { "player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_assists_set_input": { "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "deleted_at": [ - 4670 + 4958 ], "flash": [ 5 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_assists_stddev_fields": { @@ -63135,21 +68458,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_assists_stddev_pop_fields": { @@ -63163,21 +68486,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_assists_stddev_samp_fields": { @@ -63191,110 +68514,110 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_assists_stream_cursor_input": { "initial_value": [ - 3266 + 3549 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_assists_stream_cursor_value_input": { "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "deleted_at": [ - 4670 + 4958 ], "flash": [ 5 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_assists_sum_fields": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 3245 + 3528 ], "_set": [ - 3258 + 3541 ], "where": [ - 3243 + 3526 ], "__typename": [ - 80 + 83 ] }, "player_assists_var_pop_fields": { @@ -63308,21 +68631,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_assists_var_samp_fields": { @@ -63336,21 +68659,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_assists_variance_fields": { @@ -63364,47 +68687,47 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v": { "accuracy": [ - 3092 + 3375 ], "accuracy_spotted": [ - 3092 + 3375 ], "counter_strafe_pct": [ - 3092 + 3375 ], "crosshair_deg": [ - 3092 + 3375 ], "enemy_blind_pr": [ - 3092 + 3375 ], "flash_assists_pr": [ - 3092 + 3375 ], "hs_pct": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "maps": [ 40 @@ -63416,44 +68739,44 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "survival_pct": [ - 3092 + 3375 ], "time_to_damage_s": [ - 3092 + 3375 ], "traded_death_pct": [ - 3092 + 3375 ], "util_efficiency": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_aggregate": { "aggregate": [ - 3279 + 3562 ], "nodes": [ - 3277 + 3560 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_aggregate_fields": { "avg": [ - 3280 + 3563 ], "count": [ 40, { "columns": [ - 3285, + 3568, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -63462,34 +68785,34 @@ export default { } ], "max": [ - 3282 + 3565 ], "min": [ - 3283 + 3566 ], "stddev": [ - 3286 + 3569 ], "stddev_pop": [ - 3287 + 3570 ], "stddev_samp": [ - 3288 + 3571 ], "sum": [ - 3291 + 3574 ], "var_pop": [ - 3292 + 3575 ], "var_samp": [ - 3293 + 3576 ], "variance": [ - 3294 + 3577 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_avg_fields": { @@ -63542,42 +68865,42 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_bool_exp": { "_and": [ - 3281 + 3564 ], "_not": [ - 3281 + 3564 ], "_or": [ - 3281 + 3564 ], "accuracy": [ - 3093 + 3376 ], "accuracy_spotted": [ - 3093 + 3376 ], "counter_strafe_pct": [ - 3093 + 3376 ], "crosshair_deg": [ - 3093 + 3376 ], "enemy_blind_pr": [ - 3093 + 3376 ], "flash_assists_pr": [ - 3093 + 3376 ], "hs_pct": [ - 3093 + 3376 ], "kast_pct": [ - 3093 + 3376 ], "maps": [ 41 @@ -63589,48 +68912,48 @@ export default { 41 ], "steam_id": [ - 266 + 270 ], "survival_pct": [ - 3093 + 3376 ], "time_to_damage_s": [ - 3093 + 3376 ], "traded_death_pct": [ - 3093 + 3376 ], "util_efficiency": [ - 3093 + 3376 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_max_fields": { "accuracy": [ - 3092 + 3375 ], "accuracy_spotted": [ - 3092 + 3375 ], "counter_strafe_pct": [ - 3092 + 3375 ], "crosshair_deg": [ - 3092 + 3375 ], "enemy_blind_pr": [ - 3092 + 3375 ], "flash_assists_pr": [ - 3092 + 3375 ], "hs_pct": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "maps": [ 40 @@ -63642,48 +68965,48 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "survival_pct": [ - 3092 + 3375 ], "time_to_damage_s": [ - 3092 + 3375 ], "traded_death_pct": [ - 3092 + 3375 ], "util_efficiency": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_min_fields": { "accuracy": [ - 3092 + 3375 ], "accuracy_spotted": [ - 3092 + 3375 ], "counter_strafe_pct": [ - 3092 + 3375 ], "crosshair_deg": [ - 3092 + 3375 ], "enemy_blind_pr": [ - 3092 + 3375 ], "flash_assists_pr": [ - 3092 + 3375 ], "hs_pct": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "maps": [ 40 @@ -63695,75 +69018,75 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "survival_pct": [ - 3092 + 3375 ], "time_to_damage_s": [ - 3092 + 3375 ], "traded_death_pct": [ - 3092 + 3375 ], "util_efficiency": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_order_by": { "accuracy": [ - 3094 + 3377 ], "accuracy_spotted": [ - 3094 + 3377 ], "counter_strafe_pct": [ - 3094 + 3377 ], "crosshair_deg": [ - 3094 + 3377 ], "enemy_blind_pr": [ - 3094 + 3377 ], "flash_assists_pr": [ - 3094 + 3377 ], "hs_pct": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "maps": [ - 3094 + 3377 ], "premier_rank": [ - 3094 + 3377 ], "rounds": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "survival_pct": [ - 3094 + 3377 ], "time_to_damage_s": [ - 3094 + 3377 ], "traded_death_pct": [ - 3094 + 3377 ], "util_efficiency": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_select_column": {}, @@ -63817,7 +69140,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_stddev_pop_fields": { @@ -63870,7 +69193,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_stddev_samp_fields": { @@ -63923,44 +69246,44 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 3290 + 3573 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 3092 + 3375 ], "accuracy_spotted": [ - 3092 + 3375 ], "counter_strafe_pct": [ - 3092 + 3375 ], "crosshair_deg": [ - 3092 + 3375 ], "enemy_blind_pr": [ - 3092 + 3375 ], "flash_assists_pr": [ - 3092 + 3375 ], "hs_pct": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "maps": [ 40 @@ -63972,48 +69295,48 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "survival_pct": [ - 3092 + 3375 ], "time_to_damage_s": [ - 3092 + 3375 ], "traded_death_pct": [ - 3092 + 3375 ], "util_efficiency": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_sum_fields": { "accuracy": [ - 3092 + 3375 ], "accuracy_spotted": [ - 3092 + 3375 ], "counter_strafe_pct": [ - 3092 + 3375 ], "crosshair_deg": [ - 3092 + 3375 ], "enemy_blind_pr": [ - 3092 + 3375 ], "flash_assists_pr": [ - 3092 + 3375 ], "hs_pct": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "maps": [ 40 @@ -64025,22 +69348,22 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "survival_pct": [ - 3092 + 3375 ], "time_to_damage_s": [ - 3092 + 3375 ], "traded_death_pct": [ - 3092 + 3375 ], "util_efficiency": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_var_pop_fields": { @@ -64093,7 +69416,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_var_samp_fields": { @@ -64146,7 +69469,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_career_stats_v_variance_fields": { @@ -64199,7 +69522,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_damages": { @@ -64207,31 +69530,31 @@ export default { 40 ], "attacked_location": [ - 80 + 83 ], "attacked_location_coordinates": [ - 80 + 83 ], "attacked_player": [ - 4052 + 4335 ], "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_location": [ - 80 + 83 ], "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "damage": [ 40 @@ -64240,93 +69563,93 @@ export default { 40 ], "deleted_at": [ - 4670 + 4958 ], "health": [ 40 ], "hitgroup": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4052 + 4335 ], "round": [ - 3092 + 3375 ], "team_damage": [ 5 ], "time": [ - 4670 + 4958 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_damages_aggregate": { "aggregate": [ - 3299 + 3582 ], "nodes": [ - 3295 + 3578 ], "__typename": [ - 80 + 83 ] }, "player_damages_aggregate_bool_exp": { "count": [ - 3298 + 3581 ], "__typename": [ - 80 + 83 ] }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 3316 + 3599 ], "distinct": [ 5 ], "filter": [ - 3304 + 3587 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_damages_aggregate_fields": { "avg": [ - 3302 + 3585 ], "count": [ 40, { "columns": [ - 3316, + 3599, "[player_damages_select_column!]" ], "distinct": [ @@ -64335,83 +69658,83 @@ export default { } ], "max": [ - 3308 + 3591 ], "min": [ - 3310 + 3593 ], "stddev": [ - 3318 + 3601 ], "stddev_pop": [ - 3320 + 3603 ], "stddev_samp": [ - 3322 + 3605 ], "sum": [ - 3326 + 3609 ], "var_pop": [ - 3330 + 3613 ], "var_samp": [ - 3332 + 3615 ], "variance": [ - 3334 + 3617 ], "__typename": [ - 80 + 83 ] }, "player_damages_aggregate_order_by": { "avg": [ - 3303 + 3586 ], "count": [ - 3094 + 3377 ], "max": [ - 3309 + 3592 ], "min": [ - 3311 + 3594 ], "stddev": [ - 3319 + 3602 ], "stddev_pop": [ - 3321 + 3604 ], "stddev_samp": [ - 3323 + 3606 ], "sum": [ - 3327 + 3610 ], "var_pop": [ - 3331 + 3614 ], "var_samp": [ - 3333 + 3616 ], "variance": [ - 3335 + 3618 ], "__typename": [ - 80 + 83 ] }, "player_damages_arr_rel_insert_input": { "data": [ - 3307 + 3590 ], "on_conflict": [ - 3313 + 3596 ], "__typename": [ - 80 + 83 ] }, "player_damages_avg_fields": { @@ -64437,74 +69760,74 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_damages_avg_order_by": { "armor": [ - 3094 + 3377 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_armor": [ - 3094 + 3377 ], "health": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_damages_bool_exp": { "_and": [ - 3304 + 3587 ], "_not": [ - 3304 + 3587 ], "_or": [ - 3304 + 3587 ], "armor": [ 41 ], "attacked_location": [ - 82 + 85 ], "attacked_location_coordinates": [ - 82 + 85 ], "attacked_player": [ - 4056 + 4339 ], "attacked_steam_id": [ - 266 + 270 ], "attacked_team": [ - 82 + 85 ], "attacker_location": [ - 82 + 85 ], "attacker_location_coordinates": [ - 82 + 85 ], "attacker_steam_id": [ - 266 + 270 ], "attacker_team": [ - 82 + 85 ], "damage": [ 41 @@ -64513,46 +69836,46 @@ export default { 41 ], "deleted_at": [ - 4671 + 4959 ], "health": [ 41 ], "hitgroup": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "player": [ - 4056 + 4339 ], "round": [ - 3093 + 3376 ], "team_damage": [ 6 ], "time": [ - 4671 + 4959 ], "with": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "player_damages_constraint": {}, @@ -64561,10 +69884,10 @@ export default { 40 ], "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "damage": [ 40 @@ -64576,10 +69899,10 @@ export default { 40 ], "round": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "player_damages_insert_input": { @@ -64587,31 +69910,31 @@ export default { 40 ], "attacked_location": [ - 80 + 83 ], "attacked_location_coordinates": [ - 80 + 83 ], "attacked_player": [ - 4063 + 4346 ], "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_location": [ - 80 + 83 ], "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "damage": [ 40 @@ -64620,43 +69943,43 @@ export default { 40 ], "deleted_at": [ - 4670 + 4958 ], "health": [ 40 ], "hitgroup": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4063 + 4346 ], "round": [ - 3092 + 3375 ], "time": [ - 4670 + 4958 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_damages_max_fields": { @@ -64664,28 +69987,28 @@ export default { 40 ], "attacked_location": [ - 80 + 83 ], "attacked_location_coordinates": [ - 80 + 83 ], "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_location": [ - 80 + 83 ], "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "damage": [ 40 @@ -64694,99 +70017,99 @@ export default { 40 ], "deleted_at": [ - 4670 + 4958 ], "health": [ 40 ], "hitgroup": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ - 3092 + 3375 ], "time": [ - 4670 + 4958 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_damages_max_order_by": { "armor": [ - 3094 + 3377 ], "attacked_location": [ - 3094 + 3377 ], "attacked_location_coordinates": [ - 3094 + 3377 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacked_team": [ - 3094 + 3377 ], "attacker_location": [ - 3094 + 3377 ], "attacker_location_coordinates": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "attacker_team": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_armor": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "health": [ - 3094 + 3377 ], "hitgroup": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "with": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_damages_min_fields": { @@ -64794,28 +70117,28 @@ export default { 40 ], "attacked_location": [ - 80 + 83 ], "attacked_location_coordinates": [ - 80 + 83 ], "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_location": [ - 80 + 83 ], "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "damage": [ 40 @@ -64824,99 +70147,99 @@ export default { 40 ], "deleted_at": [ - 4670 + 4958 ], "health": [ 40 ], "hitgroup": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ - 3092 + 3375 ], "time": [ - 4670 + 4958 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_damages_min_order_by": { "armor": [ - 3094 + 3377 ], "attacked_location": [ - 3094 + 3377 ], "attacked_location_coordinates": [ - 3094 + 3377 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacked_team": [ - 3094 + 3377 ], "attacker_location": [ - 3094 + 3377 ], "attacker_location_coordinates": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "attacker_team": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_armor": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "health": [ - 3094 + 3377 ], "hitgroup": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "with": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_damages_mutation_response": { @@ -64924,118 +70247,118 @@ export default { 40 ], "returning": [ - 3295 + 3578 ], "__typename": [ - 80 + 83 ] }, "player_damages_on_conflict": { "constraint": [ - 3305 + 3588 ], "update_columns": [ - 3328 + 3611 ], "where": [ - 3304 + 3587 ], "__typename": [ - 80 + 83 ] }, "player_damages_order_by": { "armor": [ - 3094 + 3377 ], "attacked_location": [ - 3094 + 3377 ], "attacked_location_coordinates": [ - 3094 + 3377 ], "attacked_player": [ - 4065 + 4348 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacked_team": [ - 3094 + 3377 ], "attacker_location": [ - 3094 + 3377 ], "attacker_location_coordinates": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "attacker_team": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_armor": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "health": [ - 3094 + 3377 ], "hitgroup": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "round": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "with": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_damages_pk_columns_input": { "id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_damages_select_column": {}, @@ -65044,28 +70367,28 @@ export default { 40 ], "attacked_location": [ - 80 + 83 ], "attacked_location_coordinates": [ - 80 + 83 ], "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_location": [ - 80 + 83 ], "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "damage": [ 40 @@ -65074,34 +70397,34 @@ export default { 40 ], "deleted_at": [ - 4670 + 4958 ], "health": [ 40 ], "hitgroup": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ - 3092 + 3375 ], "time": [ - 4670 + 4958 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_damages_stddev_fields": { @@ -65127,33 +70450,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_damages_stddev_order_by": { "armor": [ - 3094 + 3377 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_armor": [ - 3094 + 3377 ], "health": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_damages_stddev_pop_fields": { @@ -65179,33 +70502,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_damages_stddev_pop_order_by": { "armor": [ - 3094 + 3377 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_armor": [ - 3094 + 3377 ], "health": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_damages_stddev_samp_fields": { @@ -65231,44 +70554,44 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_damages_stddev_samp_order_by": { "armor": [ - 3094 + 3377 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_armor": [ - 3094 + 3377 ], "health": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_damages_stream_cursor_input": { "initial_value": [ - 3325 + 3608 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_damages_stream_cursor_value_input": { @@ -65276,28 +70599,28 @@ export default { 40 ], "attacked_location": [ - 80 + 83 ], "attacked_location_coordinates": [ - 80 + 83 ], "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_location": [ - 80 + 83 ], "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "damage": [ 40 @@ -65306,34 +70629,34 @@ export default { 40 ], "deleted_at": [ - 4670 + 4958 ], "health": [ 40 ], "hitgroup": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ - 3092 + 3375 ], "time": [ - 4670 + 4958 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_damages_sum_fields": { @@ -65341,10 +70664,10 @@ export default { 40 ], "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "damage": [ 40 @@ -65356,51 +70679,51 @@ export default { 40 ], "round": [ - 3092 + 3375 ], "__typename": [ - 80 + 83 ] }, "player_damages_sum_order_by": { "armor": [ - 3094 + 3377 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_armor": [ - 3094 + 3377 ], "health": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 3306 + 3589 ], "_set": [ - 3317 + 3600 ], "where": [ - 3304 + 3587 ], "__typename": [ - 80 + 83 ] }, "player_damages_var_pop_fields": { @@ -65426,33 +70749,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_damages_var_pop_order_by": { "armor": [ - 3094 + 3377 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_armor": [ - 3094 + 3377 ], "health": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_damages_var_samp_fields": { @@ -65478,33 +70801,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_damages_var_samp_order_by": { "armor": [ - 3094 + 3377 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_armor": [ - 3094 + 3377 ], "health": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_damages_variance_fields": { @@ -65530,71 +70853,71 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_damages_variance_order_by": { "armor": [ - 3094 + 3377 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_armor": [ - 3094 + 3377 ], "health": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_elo": { "actual_score": [ - 1777 + 1841 ], "assists": [ 40 ], "change": [ - 3092 + 3375 ], "created_at": [ - 4670 + 4958 ], "current": [ - 3092 + 3375 ], "damage": [ 40 ], "damage_percent": [ - 1777 + 1841 ], "deaths": [ 40 ], "expected_score": [ - 1777 + 1841 ], "impact": [ - 3092 + 3375 ], "k_factor": [ 40 ], "kda": [ - 1777 + 1841 ], "kills": [ 40 @@ -65606,68 +70929,68 @@ export default { 40 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "opponent_team_elo_avg": [ - 1777 + 1841 ], "performance_multiplier": [ - 1777 + 1841 ], "player": [ - 4052 + 4335 ], "player_team_elo_avg": [ - 1777 + 1841 ], "rating_for_expected": [ - 1777 + 1841 ], "season": [ - 4138 + 4421 ], "season_id": [ - 5170 + 5458 ], "series_multiplier": [ 40 ], "steam_id": [ - 264 + 268 ], "team_avg_kda": [ - 1777 + 1841 ], "type": [ - 1117 + 1181 ], "__typename": [ - 80 + 83 ] }, "player_elo_aggregate": { "aggregate": [ - 3338 + 3621 ], "nodes": [ - 3336 + 3619 ], "__typename": [ - 80 + 83 ] }, "player_elo_aggregate_fields": { "avg": [ - 3339 + 3622 ], "count": [ 40, { "columns": [ - 3350, + 3633, "[player_elo_select_column!]" ], "distinct": [ @@ -65676,34 +70999,34 @@ export default { } ], "max": [ - 3344 + 3627 ], "min": [ - 3345 + 3628 ], "stddev": [ - 3352 + 3635 ], "stddev_pop": [ - 3353 + 3636 ], "stddev_samp": [ - 3354 + 3637 ], "sum": [ - 3357 + 3640 ], "var_pop": [ - 3360 + 3643 ], "var_samp": [ - 3361 + 3644 ], "variance": [ - 3362 + 3645 ], "__typename": [ - 80 + 83 ] }, "player_elo_avg_fields": { @@ -65771,54 +71094,54 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_elo_bool_exp": { "_and": [ - 3340 + 3623 ], "_not": [ - 3340 + 3623 ], "_or": [ - 3340 + 3623 ], "actual_score": [ - 1778 + 1842 ], "assists": [ 41 ], "change": [ - 3093 + 3376 ], "created_at": [ - 4671 + 4959 ], "current": [ - 3093 + 3376 ], "damage": [ 41 ], "damage_percent": [ - 1778 + 1842 ], "deaths": [ 41 ], "expected_score": [ - 1778 + 1842 ], "impact": [ - 3093 + 3376 ], "k_factor": [ 41 ], "kda": [ - 1778 + 1842 ], "kills": [ 41 @@ -65830,82 +71153,82 @@ export default { 41 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "opponent_team_elo_avg": [ - 1778 + 1842 ], "performance_multiplier": [ - 1778 + 1842 ], "player": [ - 4056 + 4339 ], "player_team_elo_avg": [ - 1778 + 1842 ], "rating_for_expected": [ - 1778 + 1842 ], "season": [ - 4142 + 4425 ], "season_id": [ - 5172 + 5460 ], "series_multiplier": [ 41 ], "steam_id": [ - 266 + 270 ], "team_avg_kda": [ - 1778 + 1842 ], "type": [ - 1118 + 1182 ], "__typename": [ - 80 + 83 ] }, "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1777 + 1841 ], "assists": [ 40 ], "change": [ - 3092 + 3375 ], "current": [ - 3092 + 3375 ], "damage": [ 40 ], "damage_percent": [ - 1777 + 1841 ], "deaths": [ 40 ], "expected_score": [ - 1777 + 1841 ], "impact": [ - 3092 + 3375 ], "k_factor": [ 40 ], "kda": [ - 1777 + 1841 ], "kills": [ 40 @@ -65917,66 +71240,66 @@ export default { 40 ], "opponent_team_elo_avg": [ - 1777 + 1841 ], "performance_multiplier": [ - 1777 + 1841 ], "player_team_elo_avg": [ - 1777 + 1841 ], "rating_for_expected": [ - 1777 + 1841 ], "series_multiplier": [ 40 ], "steam_id": [ - 264 + 268 ], "team_avg_kda": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_elo_insert_input": { "actual_score": [ - 1777 + 1841 ], "assists": [ 40 ], "change": [ - 3092 + 3375 ], "created_at": [ - 4670 + 4958 ], "current": [ - 3092 + 3375 ], "damage": [ 40 ], "damage_percent": [ - 1777 + 1841 ], "deaths": [ 40 ], "expected_score": [ - 1777 + 1841 ], "impact": [ - 3092 + 3375 ], "k_factor": [ 40 ], "kda": [ - 1777 + 1841 ], "kills": [ 40 @@ -65988,84 +71311,84 @@ export default { 40 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "opponent_team_elo_avg": [ - 1777 + 1841 ], "performance_multiplier": [ - 1777 + 1841 ], "player": [ - 4063 + 4346 ], "player_team_elo_avg": [ - 1777 + 1841 ], "rating_for_expected": [ - 1777 + 1841 ], "season": [ - 4149 + 4432 ], "season_id": [ - 5170 + 5458 ], "series_multiplier": [ 40 ], "steam_id": [ - 264 + 268 ], "team_avg_kda": [ - 1777 + 1841 ], "type": [ - 1117 + 1181 ], "__typename": [ - 80 + 83 ] }, "player_elo_max_fields": { "actual_score": [ - 1777 + 1841 ], "assists": [ 40 ], "change": [ - 3092 + 3375 ], "created_at": [ - 4670 + 4958 ], "current": [ - 3092 + 3375 ], "damage": [ 40 ], "damage_percent": [ - 1777 + 1841 ], "deaths": [ 40 ], "expected_score": [ - 1777 + 1841 ], "impact": [ - 3092 + 3375 ], "k_factor": [ 40 ], "kda": [ - 1777 + 1841 ], "kills": [ 40 @@ -66077,72 +71400,72 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "opponent_team_elo_avg": [ - 1777 + 1841 ], "performance_multiplier": [ - 1777 + 1841 ], "player_team_elo_avg": [ - 1777 + 1841 ], "rating_for_expected": [ - 1777 + 1841 ], "season_id": [ - 5170 + 5458 ], "series_multiplier": [ 40 ], "steam_id": [ - 264 + 268 ], "team_avg_kda": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_elo_min_fields": { "actual_score": [ - 1777 + 1841 ], "assists": [ 40 ], "change": [ - 3092 + 3375 ], "created_at": [ - 4670 + 4958 ], "current": [ - 3092 + 3375 ], "damage": [ 40 ], "damage_percent": [ - 1777 + 1841 ], "deaths": [ 40 ], "expected_score": [ - 1777 + 1841 ], "impact": [ - 3092 + 3375 ], "k_factor": [ 40 ], "kda": [ - 1777 + 1841 ], "kills": [ 40 @@ -66154,34 +71477,34 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "opponent_team_elo_avg": [ - 1777 + 1841 ], "performance_multiplier": [ - 1777 + 1841 ], "player_team_elo_avg": [ - 1777 + 1841 ], "rating_for_expected": [ - 1777 + 1841 ], "season_id": [ - 5170 + 5458 ], "series_multiplier": [ 40 ], "steam_id": [ - 264 + 268 ], "team_avg_kda": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_elo_mutation_response": { @@ -66189,166 +71512,166 @@ export default { 40 ], "returning": [ - 3336 + 3619 ], "__typename": [ - 80 + 83 ] }, "player_elo_on_conflict": { "constraint": [ - 3341 + 3624 ], "update_columns": [ - 3358 + 3641 ], "where": [ - 3340 + 3623 ], "__typename": [ - 80 + 83 ] }, "player_elo_order_by": { "actual_score": [ - 3094 + 3377 ], "assists": [ - 3094 + 3377 ], "change": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "current": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_percent": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "expected_score": [ - 3094 + 3377 ], "impact": [ - 3094 + 3377 ], "k_factor": [ - 3094 + 3377 ], "kda": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "map_losses": [ - 3094 + 3377 ], "map_wins": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "opponent_team_elo_avg": [ - 3094 + 3377 ], "performance_multiplier": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "player_team_elo_avg": [ - 3094 + 3377 ], "rating_for_expected": [ - 3094 + 3377 ], "season": [ - 4151 + 4434 ], "season_id": [ - 3094 + 3377 ], "series_multiplier": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_avg_kda": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_elo_pk_columns_input": { "match_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "type": [ - 1117 + 1181 ], "__typename": [ - 80 + 83 ] }, "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1777 + 1841 ], "assists": [ 40 ], "change": [ - 3092 + 3375 ], "created_at": [ - 4670 + 4958 ], "current": [ - 3092 + 3375 ], "damage": [ 40 ], "damage_percent": [ - 1777 + 1841 ], "deaths": [ 40 ], "expected_score": [ - 1777 + 1841 ], "impact": [ - 3092 + 3375 ], "k_factor": [ 40 ], "kda": [ - 1777 + 1841 ], "kills": [ 40 @@ -66360,37 +71683,37 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "opponent_team_elo_avg": [ - 1777 + 1841 ], "performance_multiplier": [ - 1777 + 1841 ], "player_team_elo_avg": [ - 1777 + 1841 ], "rating_for_expected": [ - 1777 + 1841 ], "season_id": [ - 5170 + 5458 ], "series_multiplier": [ 40 ], "steam_id": [ - 264 + 268 ], "team_avg_kda": [ - 1777 + 1841 ], "type": [ - 1117 + 1181 ], "__typename": [ - 80 + 83 ] }, "player_elo_stddev_fields": { @@ -66458,7 +71781,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_elo_stddev_pop_fields": { @@ -66526,7 +71849,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_elo_stddev_samp_fields": { @@ -66594,56 +71917,56 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_elo_stream_cursor_input": { "initial_value": [ - 3356 + 3639 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1777 + 1841 ], "assists": [ 40 ], "change": [ - 3092 + 3375 ], "created_at": [ - 4670 + 4958 ], "current": [ - 3092 + 3375 ], "damage": [ 40 ], "damage_percent": [ - 1777 + 1841 ], "deaths": [ 40 ], "expected_score": [ - 1777 + 1841 ], "impact": [ - 3092 + 3375 ], "k_factor": [ 40 ], "kda": [ - 1777 + 1841 ], "kills": [ 40 @@ -66655,72 +71978,72 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "opponent_team_elo_avg": [ - 1777 + 1841 ], "performance_multiplier": [ - 1777 + 1841 ], "player_team_elo_avg": [ - 1777 + 1841 ], "rating_for_expected": [ - 1777 + 1841 ], "season_id": [ - 5170 + 5458 ], "series_multiplier": [ 40 ], "steam_id": [ - 264 + 268 ], "team_avg_kda": [ - 1777 + 1841 ], "type": [ - 1117 + 1181 ], "__typename": [ - 80 + 83 ] }, "player_elo_sum_fields": { "actual_score": [ - 1777 + 1841 ], "assists": [ 40 ], "change": [ - 3092 + 3375 ], "current": [ - 3092 + 3375 ], "damage": [ 40 ], "damage_percent": [ - 1777 + 1841 ], "deaths": [ 40 ], "expected_score": [ - 1777 + 1841 ], "impact": [ - 3092 + 3375 ], "k_factor": [ 40 ], "kda": [ - 1777 + 1841 ], "kills": [ 40 @@ -66732,43 +72055,43 @@ export default { 40 ], "opponent_team_elo_avg": [ - 1777 + 1841 ], "performance_multiplier": [ - 1777 + 1841 ], "player_team_elo_avg": [ - 1777 + 1841 ], "rating_for_expected": [ - 1777 + 1841 ], "series_multiplier": [ 40 ], "steam_id": [ - 264 + 268 ], "team_avg_kda": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 3342 + 3625 ], "_set": [ - 3351 + 3634 ], "where": [ - 3340 + 3623 ], "__typename": [ - 80 + 83 ] }, "player_elo_var_pop_fields": { @@ -66836,7 +72159,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_elo_var_samp_fields": { @@ -66904,7 +72227,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_elo_variance_fields": { @@ -66972,7 +72295,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history": { @@ -66980,19 +72303,19 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "observed_at": [ - 4670 + 4958 ], "player": [ - 4052 + 4335 ], "previous_rank": [ 40 @@ -67001,57 +72324,57 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 3367 + 3650 ], "nodes": [ - 3363 + 3646 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 3366 + 3649 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3384 + 3667 ], "distinct": [ 5 ], "filter": [ - 3372 + 3655 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 3370 + 3653 ], "count": [ 40, { "columns": [ - 3384, + 3667, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -67060,83 +72383,83 @@ export default { } ], "max": [ - 3376 + 3659 ], "min": [ - 3378 + 3661 ], "stddev": [ - 3386 + 3669 ], "stddev_pop": [ - 3388 + 3671 ], "stddev_samp": [ - 3390 + 3673 ], "sum": [ - 3394 + 3677 ], "var_pop": [ - 3398 + 3681 ], "var_samp": [ - 3400 + 3683 ], "variance": [ - 3402 + 3685 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 3371 + 3654 ], "count": [ - 3094 + 3377 ], "max": [ - 3377 + 3660 ], "min": [ - 3379 + 3662 ], "stddev": [ - 3387 + 3670 ], "stddev_pop": [ - 3389 + 3672 ], "stddev_samp": [ - 3391 + 3674 ], "sum": [ - 3395 + 3678 ], "var_pop": [ - 3399 + 3682 ], "var_samp": [ - 3401 + 3684 ], "variance": [ - 3403 + 3686 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 3375 + 3658 ], "on_conflict": [ - 3381 + 3664 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_avg_fields": { @@ -67153,53 +72476,53 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 3094 + 3377 ], "previous_rank": [ - 3094 + 3377 ], "skill_level": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_bool_exp": { "_and": [ - 3372 + 3655 ], "_not": [ - 3372 + 3655 ], "_or": [ - 3372 + 3655 ], "elo": [ 41 ], "id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "observed_at": [ - 4671 + 4959 ], "player": [ - 4056 + 4339 ], "previous_rank": [ 41 @@ -67208,10 +72531,10 @@ export default { 41 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_constraint": {}, @@ -67226,10 +72549,10 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_insert_input": { @@ -67237,19 +72560,19 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "observed_at": [ - 4670 + 4958 ], "player": [ - 4063 + 4346 ], "previous_rank": [ 40 @@ -67258,10 +72581,10 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_max_fields": { @@ -67269,13 +72592,13 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "observed_at": [ - 4670 + 4958 ], "previous_rank": [ 40 @@ -67284,36 +72607,36 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_max_order_by": { "elo": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "observed_at": [ - 3094 + 3377 ], "previous_rank": [ - 3094 + 3377 ], "skill_level": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_min_fields": { @@ -67321,13 +72644,13 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "observed_at": [ - 4670 + 4958 ], "previous_rank": [ 40 @@ -67336,36 +72659,36 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_min_order_by": { "elo": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "observed_at": [ - 3094 + 3377 ], "previous_rank": [ - 3094 + 3377 ], "skill_level": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_mutation_response": { @@ -67373,64 +72696,64 @@ export default { 40 ], "returning": [ - 3363 + 3646 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 3373 + 3656 ], "update_columns": [ - 3396 + 3679 ], "where": [ - 3372 + 3655 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_order_by": { "elo": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "observed_at": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "previous_rank": [ - 3094 + 3377 ], "skill_level": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_select_column": {}, @@ -67439,13 +72762,13 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "observed_at": [ - 4670 + 4958 ], "previous_rank": [ 40 @@ -67454,10 +72777,10 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_stddev_fields": { @@ -67474,24 +72797,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 3094 + 3377 ], "previous_rank": [ - 3094 + 3377 ], "skill_level": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_stddev_pop_fields": { @@ -67508,24 +72831,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 3094 + 3377 ], "previous_rank": [ - 3094 + 3377 ], "skill_level": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_stddev_samp_fields": { @@ -67542,35 +72865,35 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 3094 + 3377 ], "previous_rank": [ - 3094 + 3377 ], "skill_level": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 3393 + 3676 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_stream_cursor_value_input": { @@ -67578,13 +72901,13 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "observed_at": [ - 4670 + 4958 ], "previous_rank": [ 40 @@ -67593,10 +72916,10 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_sum_fields": { @@ -67610,42 +72933,42 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 3094 + 3377 ], "previous_rank": [ - 3094 + 3377 ], "skill_level": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 3374 + 3657 ], "_set": [ - 3385 + 3668 ], "where": [ - 3372 + 3655 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_var_pop_fields": { @@ -67662,24 +72985,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 3094 + 3377 ], "previous_rank": [ - 3094 + 3377 ], "skill_level": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_var_samp_fields": { @@ -67696,24 +73019,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 3094 + 3377 ], "previous_rank": [ - 3094 + 3377 ], "skill_level": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_variance_fields": { @@ -67730,53 +73053,53 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 3094 + 3377 ], "previous_rank": [ - 3094 + 3377 ], "skill_level": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_flashes": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "blinded": [ - 4052 + 4335 ], "deleted_at": [ - 4670 + 4958 ], "duration": [ - 3092 + 3375 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 @@ -67785,100 +73108,100 @@ export default { 5 ], "thrown_by": [ - 4052 + 4335 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_flashes_aggregate": { "aggregate": [ - 3410 + 3693 ], "nodes": [ - 3404 + 3687 ], "__typename": [ - 80 + 83 ] }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 3407 + 3690 ], "bool_or": [ - 3408 + 3691 ], "count": [ - 3409 + 3692 ], "__typename": [ - 80 + 83 ] }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 3428 + 3711 ], "distinct": [ 5 ], "filter": [ - 3415 + 3698 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 3429 + 3712 ], "distinct": [ 5 ], "filter": [ - 3415 + 3698 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 3427 + 3710 ], "distinct": [ 5 ], "filter": [ - 3415 + 3698 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_flashes_aggregate_fields": { "avg": [ - 3413 + 3696 ], "count": [ 40, { "columns": [ - 3427, + 3710, "[player_flashes_select_column!]" ], "distinct": [ @@ -67887,83 +73210,83 @@ export default { } ], "max": [ - 3419 + 3702 ], "min": [ - 3421 + 3704 ], "stddev": [ - 3431 + 3714 ], "stddev_pop": [ - 3433 + 3716 ], "stddev_samp": [ - 3435 + 3718 ], "sum": [ - 3439 + 3722 ], "var_pop": [ - 3443 + 3726 ], "var_samp": [ - 3445 + 3728 ], "variance": [ - 3447 + 3730 ], "__typename": [ - 80 + 83 ] }, "player_flashes_aggregate_order_by": { "avg": [ - 3414 + 3697 ], "count": [ - 3094 + 3377 ], "max": [ - 3420 + 3703 ], "min": [ - 3422 + 3705 ], "stddev": [ - 3432 + 3715 ], "stddev_pop": [ - 3434 + 3717 ], "stddev_samp": [ - 3436 + 3719 ], "sum": [ - 3440 + 3723 ], "var_pop": [ - 3444 + 3727 ], "var_samp": [ - 3446 + 3729 ], "variance": [ - 3448 + 3731 ], "__typename": [ - 80 + 83 ] }, "player_flashes_arr_rel_insert_input": { "data": [ - 3418 + 3701 ], "on_conflict": [ - 3424 + 3707 ], "__typename": [ - 80 + 83 ] }, "player_flashes_avg_fields": { @@ -67980,62 +73303,62 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "duration": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_flashes_bool_exp": { "_and": [ - 3415 + 3698 ], "_not": [ - 3415 + 3698 ], "_or": [ - 3415 + 3698 ], "attacked_steam_id": [ - 266 + 270 ], "attacker_steam_id": [ - 266 + 270 ], "blinded": [ - 4056 + 4339 ], "deleted_at": [ - 4671 + 4959 ], "duration": [ - 3093 + 3376 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "round": [ 41 @@ -68044,60 +73367,60 @@ export default { 6 ], "thrown_by": [ - 4056 + 4339 ], "time": [ - 4671 + 4959 ], "__typename": [ - 80 + 83 ] }, "player_flashes_constraint": {}, "player_flashes_inc_input": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "duration": [ - 3092 + 3375 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_flashes_insert_input": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "blinded": [ - 4063 + 4346 ], "deleted_at": [ - 4670 + 4958 ], "duration": [ - 3092 + 3375 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 @@ -68106,129 +73429,129 @@ export default { 5 ], "thrown_by": [ - 4063 + 4346 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_flashes_max_fields": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "deleted_at": [ - 4670 + 4958 ], "duration": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "duration": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_flashes_min_fields": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "deleted_at": [ - 4670 + 4958 ], "duration": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "duration": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_flashes_mutation_response": { @@ -68236,85 +73559,85 @@ export default { 40 ], "returning": [ - 3404 + 3687 ], "__typename": [ - 80 + 83 ] }, "player_flashes_on_conflict": { "constraint": [ - 3416 + 3699 ], "update_columns": [ - 3441 + 3724 ], "where": [ - 3415 + 3698 ], "__typename": [ - 80 + 83 ] }, "player_flashes_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "blinded": [ - 4065 + 4348 ], "deleted_at": [ - 3094 + 3377 ], "duration": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "team_flash": [ - 3094 + 3377 ], "thrown_by": [ - 4065 + 4348 ], "time": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_flashes_pk_columns_input": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "match_map_id": [ - 5170 + 5458 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_flashes_select_column": {}, @@ -68322,22 +73645,22 @@ export default { "player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_flashes_set_input": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "deleted_at": [ - 4670 + 4958 ], "duration": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 @@ -68346,10 +73669,10 @@ export default { 5 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_flashes_stddev_fields": { @@ -68366,24 +73689,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "duration": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_flashes_stddev_pop_fields": { @@ -68400,24 +73723,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "duration": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_flashes_stddev_samp_fields": { @@ -68434,55 +73757,55 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "duration": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_flashes_stream_cursor_input": { "initial_value": [ - 3438 + 3721 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_flashes_stream_cursor_value_input": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "deleted_at": [ - 4670 + 4958 ], "duration": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 @@ -68491,59 +73814,59 @@ export default { 5 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_flashes_sum_fields": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "duration": [ - 3092 + 3375 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "duration": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 3417 + 3700 ], "_set": [ - 3430 + 3713 ], "where": [ - 3415 + 3698 ], "__typename": [ - 80 + 83 ] }, "player_flashes_var_pop_fields": { @@ -68560,24 +73883,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "duration": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_flashes_var_samp_fields": { @@ -68594,24 +73917,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "duration": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_flashes_variance_fields": { @@ -68628,24 +73951,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "duration": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills": { @@ -68653,43 +73976,43 @@ export default { 5 ], "attacked_location": [ - 80 + 83 ], "attacked_location_coordinates": [ - 80 + 83 ], "attacked_player": [ - 4052 + 4335 ], "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_location": [ - 80 + 83 ], "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "blinded": [ 5 ], "deleted_at": [ - 4670 + 4958 ], "headshot": [ 5 ], "hitgroup": [ - 80 + 83 ], "in_air": [ 5 @@ -68698,22 +74021,22 @@ export default { 5 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "no_scope": [ 5 ], "player": [ - 4052 + 4335 ], "round": [ 40 @@ -68728,100 +74051,100 @@ export default { 5 ], "time": [ - 4670 + 4958 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_kills_aggregate": { "aggregate": [ - 3455 + 3738 ], "nodes": [ - 3449 + 3732 ], "__typename": [ - 80 + 83 ] }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 3452 + 3735 ], "bool_or": [ - 3453 + 3736 ], "count": [ - 3454 + 3737 ], "__typename": [ - 80 + 83 ] }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 3514 + 3797 ], "distinct": [ 5 ], "filter": [ - 3460 + 3743 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 3515 + 3798 ], "distinct": [ 5 ], "filter": [ - 3460 + 3743 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 3513 + 3796 ], "distinct": [ 5 ], "filter": [ - 3460 + 3743 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_kills_aggregate_fields": { "avg": [ - 3458 + 3741 ], "count": [ 40, { "columns": [ - 3513, + 3796, "[player_kills_select_column!]" ], "distinct": [ @@ -68830,83 +74153,83 @@ export default { } ], "max": [ - 3505 + 3788 ], "min": [ - 3507 + 3790 ], "stddev": [ - 3517 + 3800 ], "stddev_pop": [ - 3519 + 3802 ], "stddev_samp": [ - 3521 + 3804 ], "sum": [ - 3525 + 3808 ], "var_pop": [ - 3529 + 3812 ], "var_samp": [ - 3531 + 3814 ], "variance": [ - 3533 + 3816 ], "__typename": [ - 80 + 83 ] }, "player_kills_aggregate_order_by": { "avg": [ - 3459 + 3742 ], "count": [ - 3094 + 3377 ], "max": [ - 3506 + 3789 ], "min": [ - 3508 + 3791 ], "stddev": [ - 3518 + 3801 ], "stddev_pop": [ - 3520 + 3803 ], "stddev_samp": [ - 3522 + 3805 ], "sum": [ - 3526 + 3809 ], "var_pop": [ - 3530 + 3813 ], "var_samp": [ - 3532 + 3815 ], "variance": [ - 3534 + 3817 ], "__typename": [ - 80 + 83 ] }, "player_kills_arr_rel_insert_input": { "data": [ - 3504 + 3787 ], "on_conflict": [ - 3510 + 3793 ], "__typename": [ - 80 + 83 ] }, "player_kills_avg_fields": { @@ -68920,74 +74243,74 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_bool_exp": { "_and": [ - 3460 + 3743 ], "_not": [ - 3460 + 3743 ], "_or": [ - 3460 + 3743 ], "assisted": [ 6 ], "attacked_location": [ - 82 + 85 ], "attacked_location_coordinates": [ - 82 + 85 ], "attacked_player": [ - 4056 + 4339 ], "attacked_steam_id": [ - 266 + 270 ], "attacked_team": [ - 82 + 85 ], "attacker_location": [ - 82 + 85 ], "attacker_location_coordinates": [ - 82 + 85 ], "attacker_steam_id": [ - 266 + 270 ], "attacker_team": [ - 82 + 85 ], "blinded": [ 6 ], "deleted_at": [ - 4671 + 4959 ], "headshot": [ 6 ], "hitgroup": [ - 82 + 85 ], "in_air": [ 6 @@ -68996,22 +74319,22 @@ export default { 6 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "no_scope": [ 6 ], "player": [ - 4056 + 4339 ], "round": [ 41 @@ -69026,77 +74349,77 @@ export default { 6 ], "time": [ - 4671 + 4959 ], "with": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon": { "kill_count": [ - 264 + 268 ], "player": [ - 4052 + 4335 ], "player_steam_id": [ - 264 + 268 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 3465 + 3748 ], "nodes": [ - 3461 + 3744 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 3464 + 3747 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 3482 + 3765 ], "distinct": [ 5 ], "filter": [ - 3470 + 3753 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 3468 + 3751 ], "count": [ 40, { "columns": [ - 3482, + 3765, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -69105,83 +74428,83 @@ export default { } ], "max": [ - 3474 + 3757 ], "min": [ - 3476 + 3759 ], "stddev": [ - 3484 + 3767 ], "stddev_pop": [ - 3486 + 3769 ], "stddev_samp": [ - 3488 + 3771 ], "sum": [ - 3492 + 3775 ], "var_pop": [ - 3496 + 3779 ], "var_samp": [ - 3498 + 3781 ], "variance": [ - 3500 + 3783 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 3469 + 3752 ], "count": [ - 3094 + 3377 ], "max": [ - 3475 + 3758 ], "min": [ - 3477 + 3760 ], "stddev": [ - 3485 + 3768 ], "stddev_pop": [ - 3487 + 3770 ], "stddev_samp": [ - 3489 + 3772 ], "sum": [ - 3493 + 3776 ], "var_pop": [ - 3497 + 3780 ], "var_samp": [ - 3499 + 3782 ], "variance": [ - 3501 + 3784 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 3473 + 3756 ], "on_conflict": [ - 3479 + 3762 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_avg_fields": { @@ -69192,129 +74515,129 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_bool_exp": { "_and": [ - 3470 + 3753 ], "_not": [ - 3470 + 3753 ], "_or": [ - 3470 + 3753 ], "kill_count": [ - 266 + 270 ], "player": [ - 4056 + 4339 ], "player_steam_id": [ - 266 + 270 ], "with": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_constraint": {}, "player_kills_by_weapon_inc_input": { "kill_count": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_insert_input": { "kill_count": [ - 264 + 268 ], "player": [ - 4063 + 4346 ], "player_steam_id": [ - 264 + 268 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_max_fields": { "kill_count": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "with": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_min_fields": { "kill_count": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "with": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_mutation_response": { @@ -69322,67 +74645,67 @@ export default { 40 ], "returning": [ - 3461 + 3744 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 3471 + 3754 ], "update_columns": [ - 3494 + 3777 ], "where": [ - 3470 + 3753 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_order_by": { "kill_count": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "player_steam_id": [ - 3094 + 3377 ], "with": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_pk_columns_input": { "player_steam_id": [ - 264 + 268 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_select_column": {}, "player_kills_by_weapon_set_input": { "kill_count": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_stddev_fields": { @@ -69393,18 +74716,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_stddev_pop_fields": { @@ -69415,18 +74738,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_stddev_samp_fields": { @@ -69437,80 +74760,80 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 3491 + 3774 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_stream_cursor_value_input": { "kill_count": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_sum_fields": { "kill_count": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 3472 + 3755 ], "_set": [ - 3483 + 3766 ], "where": [ - 3470 + 3753 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_var_pop_fields": { @@ -69521,18 +74844,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_var_samp_fields": { @@ -69543,18 +74866,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_variance_fields": { @@ -69565,33 +74888,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_constraint": {}, "player_kills_inc_input": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_kills_insert_input": { @@ -69599,64 +74922,64 @@ export default { 5 ], "attacked_location": [ - 80 + 83 ], "attacked_location_coordinates": [ - 80 + 83 ], "attacked_player": [ - 4063 + 4346 ], "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_location": [ - 80 + 83 ], "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "blinded": [ 5 ], "deleted_at": [ - 4670 + 4958 ], "headshot": [ 5 ], "hitgroup": [ - 80 + 83 ], "in_air": [ 5 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "no_scope": [ 5 ], "player": [ - 4063 + 4346 ], "round": [ 40 @@ -69668,213 +74991,213 @@ export default { 5 ], "time": [ - 4670 + 4958 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_kills_max_fields": { "attacked_location": [ - 80 + 83 ], "attacked_location_coordinates": [ - 80 + 83 ], "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_location": [ - 80 + 83 ], "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "deleted_at": [ - 4670 + 4958 ], "hitgroup": [ - 80 + 83 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_kills_max_order_by": { "attacked_location": [ - 3094 + 3377 ], "attacked_location_coordinates": [ - 3094 + 3377 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacked_team": [ - 3094 + 3377 ], "attacker_location": [ - 3094 + 3377 ], "attacker_location_coordinates": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "attacker_team": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "hitgroup": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "with": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_min_fields": { "attacked_location": [ - 80 + 83 ], "attacked_location_coordinates": [ - 80 + 83 ], "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_location": [ - 80 + 83 ], "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "deleted_at": [ - 4670 + 4958 ], "hitgroup": [ - 80 + 83 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_kills_min_order_by": { "attacked_location": [ - 3094 + 3377 ], "attacked_location_coordinates": [ - 3094 + 3377 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacked_team": [ - 3094 + 3377 ], "attacker_location": [ - 3094 + 3377 ], "attacker_location_coordinates": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "attacker_team": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "hitgroup": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "with": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_mutation_response": { @@ -69882,130 +75205,130 @@ export default { 40 ], "returning": [ - 3449 + 3732 ], "__typename": [ - 80 + 83 ] }, "player_kills_on_conflict": { "constraint": [ - 3502 + 3785 ], "update_columns": [ - 3527 + 3810 ], "where": [ - 3460 + 3743 ], "__typename": [ - 80 + 83 ] }, "player_kills_order_by": { "assisted": [ - 3094 + 3377 ], "attacked_location": [ - 3094 + 3377 ], "attacked_location_coordinates": [ - 3094 + 3377 ], "attacked_player": [ - 4065 + 4348 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacked_team": [ - 3094 + 3377 ], "attacker_location": [ - 3094 + 3377 ], "attacker_location_coordinates": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "attacker_team": [ - 3094 + 3377 ], "blinded": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "headshot": [ - 3094 + 3377 ], "hitgroup": [ - 3094 + 3377 ], "in_air": [ - 3094 + 3377 ], "is_suicide": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "no_scope": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "round": [ - 3094 + 3377 ], "team_kill": [ - 3094 + 3377 ], "thru_smoke": [ - 3094 + 3377 ], "thru_wall": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "with": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_pk_columns_input": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "match_map_id": [ - 5170 + 5458 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_kills_select_column": {}, @@ -70016,49 +75339,49 @@ export default { 5 ], "attacked_location": [ - 80 + 83 ], "attacked_location_coordinates": [ - 80 + 83 ], "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_location": [ - 80 + 83 ], "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "blinded": [ 5 ], "deleted_at": [ - 4670 + 4958 ], "headshot": [ 5 ], "hitgroup": [ - 80 + 83 ], "in_air": [ 5 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "no_scope": [ 5 @@ -70073,13 +75396,13 @@ export default { 5 ], "time": [ - 4670 + 4958 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_kills_stddev_fields": { @@ -70093,21 +75416,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_stddev_pop_fields": { @@ -70121,21 +75444,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_stddev_samp_fields": { @@ -70149,32 +75472,32 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_stream_cursor_input": { "initial_value": [ - 3524 + 3807 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_kills_stream_cursor_value_input": { @@ -70182,49 +75505,49 @@ export default { 5 ], "attacked_location": [ - 80 + 83 ], "attacked_location_coordinates": [ - 80 + 83 ], "attacked_steam_id": [ - 264 + 268 ], "attacked_team": [ - 80 + 83 ], "attacker_location": [ - 80 + 83 ], "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "attacker_team": [ - 80 + 83 ], "blinded": [ 5 ], "deleted_at": [ - 4670 + 4958 ], "headshot": [ 5 ], "hitgroup": [ - 80 + 83 ], "in_air": [ 5 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "no_scope": [ 5 @@ -70239,56 +75562,56 @@ export default { 5 ], "time": [ - 4670 + 4958 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_kills_sum_fields": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 3503 + 3786 ], "_set": [ - 3516 + 3799 ], "where": [ - 3460 + 3743 ], "__typename": [ - 80 + 83 ] }, "player_kills_var_pop_fields": { @@ -70302,21 +75625,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_var_samp_fields": { @@ -70330,21 +75653,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_kills_variance_fields": { @@ -70358,26 +75681,26 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank": { "player_steam_id": [ - 80 + 83 ], "rank": [ 40 @@ -70386,32 +75709,32 @@ export default { 40 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 3537 + 3820 ], "nodes": [ - 3535 + 3818 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 3538 + 3821 ], "count": [ 40, { "columns": [ - 3546, + 3829, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -70420,34 +75743,34 @@ export default { } ], "max": [ - 3542 + 3825 ], "min": [ - 3543 + 3826 ], "stddev": [ - 3548 + 3831 ], "stddev_pop": [ - 3549 + 3832 ], "stddev_samp": [ - 3550 + 3833 ], "sum": [ - 3553 + 3836 ], "var_pop": [ - 3555 + 3838 ], "var_samp": [ - 3556 + 3839 ], "variance": [ - 3557 + 3840 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_avg_fields": { @@ -70461,21 +75784,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_bool_exp": { "_and": [ - 3539 + 3822 ], "_not": [ - 3539 + 3822 ], "_or": [ - 3539 + 3822 ], "player_steam_id": [ - 82 + 85 ], "rank": [ 41 @@ -70484,10 +75807,10 @@ export default { 41 ], "value": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_inc_input": { @@ -70498,15 +75821,15 @@ export default { 40 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_insert_input": { "player_steam_id": [ - 80 + 83 ], "rank": [ 40 @@ -70515,15 +75838,15 @@ export default { 40 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_max_fields": { "player_steam_id": [ - 80 + 83 ], "rank": [ 40 @@ -70532,15 +75855,15 @@ export default { 40 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_min_fields": { "player_steam_id": [ - 80 + 83 ], "rank": [ 40 @@ -70549,10 +75872,10 @@ export default { 40 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_mutation_response": { @@ -70560,33 +75883,33 @@ export default { 40 ], "returning": [ - 3535 + 3818 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "total": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_select_column": {}, "player_leaderboard_rank_set_input": { "player_steam_id": [ - 80 + 83 ], "rank": [ 40 @@ -70595,10 +75918,10 @@ export default { 40 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_stddev_fields": { @@ -70612,7 +75935,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_stddev_pop_fields": { @@ -70626,7 +75949,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_stddev_samp_fields": { @@ -70640,23 +75963,23 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 3552 + 3835 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_stream_cursor_value_input": { "player_steam_id": [ - 80 + 83 ], "rank": [ 40 @@ -70665,10 +75988,10 @@ export default { 40 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_sum_fields": { @@ -70679,24 +76002,24 @@ export default { 40 ], "value": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_updates": { "_inc": [ - 3540 + 3823 ], "_set": [ - 3547 + 3830 ], "where": [ - 3539 + 3822 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_var_pop_fields": { @@ -70710,7 +76033,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_var_samp_fields": { @@ -70724,7 +76047,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_leaderboard_rank_variance_fields": { @@ -70738,7 +76061,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats": { @@ -70761,7 +76084,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "damage": [ 40 @@ -70803,7 +76126,7 @@ export default { 40 ], "flash_duration_sum": [ - 3092 + 3375 ], "flashes_thrown": [ 40 @@ -70857,16 +76180,16 @@ export default { 40 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "molotov_damage": [ 40 @@ -70881,7 +76204,7 @@ export default { 40 ], "player": [ - 4052 + 4335 ], "rounds_ct": [ 40 @@ -70914,7 +76237,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "team_damage": [ 40 @@ -70929,7 +76252,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 @@ -70959,7 +76282,7 @@ export default { 40 ], "updated_at": [ - 4670 + 4958 ], "util_on_death_count": [ 40 @@ -70974,54 +76297,54 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_aggregate": { "aggregate": [ - 3562 + 3845 ], "nodes": [ - 3558 + 3841 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 3561 + 3844 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 3579 + 3862 ], "distinct": [ 5 ], "filter": [ - 3567 + 3850 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_aggregate_fields": { "avg": [ - 3565 + 3848 ], "count": [ 40, { "columns": [ - 3579, + 3862, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -71030,83 +76353,83 @@ export default { } ], "max": [ - 3571 + 3854 ], "min": [ - 3573 + 3856 ], "stddev": [ - 3581 + 3864 ], "stddev_pop": [ - 3583 + 3866 ], "stddev_samp": [ - 3585 + 3868 ], "sum": [ - 3589 + 3872 ], "var_pop": [ - 3593 + 3876 ], "var_samp": [ - 3595 + 3878 ], "variance": [ - 3597 + 3880 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 3566 + 3849 ], "count": [ - 3094 + 3377 ], "max": [ - 3572 + 3855 ], "min": [ - 3574 + 3857 ], "stddev": [ - 3582 + 3865 ], "stddev_pop": [ - 3584 + 3867 ], "stddev_samp": [ - 3586 + 3869 ], "sum": [ - 3590 + 3873 ], "var_pop": [ - 3594 + 3877 ], "var_samp": [ - 3596 + 3879 ], "variance": [ - 3598 + 3881 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 3570 + 3853 ], "on_conflict": [ - 3576 + 3859 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_avg_fields": { @@ -71324,236 +76647,236 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_avg_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "crosshair_angle_count": [ - 3094 + 3377 ], "crosshair_angle_sum_deg": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flash_duration_count": [ - 3094 + 3377 ], "flash_duration_sum": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kast_rounds": [ - 3094 + 3377 ], "kast_total_rounds": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "time_to_damage_count": [ - 3094 + 3377 ], "time_to_damage_sum_s": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "util_on_death_count": [ - 3094 + 3377 ], "util_on_death_sum": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_bool_exp": { "_and": [ - 3567 + 3850 ], "_not": [ - 3567 + 3850 ], "_or": [ - 3567 + 3850 ], "assists": [ 41 @@ -71574,7 +76897,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3093 + 3376 ], "damage": [ 41 @@ -71616,7 +76939,7 @@ export default { 41 ], "flash_duration_sum": [ - 3093 + 3376 ], "flashes_thrown": [ 41 @@ -71670,16 +76993,16 @@ export default { 41 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "molotov_damage": [ 41 @@ -71694,7 +77017,7 @@ export default { 41 ], "player": [ - 4056 + 4339 ], "rounds_ct": [ 41 @@ -71727,7 +77050,7 @@ export default { 41 ], "steam_id": [ - 266 + 270 ], "team_damage": [ 41 @@ -71742,7 +77065,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3093 + 3376 ], "total_engagement_frames": [ 41 @@ -71772,7 +77095,7 @@ export default { 41 ], "updated_at": [ - 4671 + 4959 ], "util_on_death_count": [ 41 @@ -71787,7 +77110,7 @@ export default { 41 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_constraint": {}, @@ -71811,7 +77134,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "damage": [ 40 @@ -71853,7 +77176,7 @@ export default { 40 ], "flash_duration_sum": [ - 3092 + 3375 ], "flashes_thrown": [ 40 @@ -71949,7 +77272,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "team_damage": [ 40 @@ -71964,7 +77287,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 @@ -72006,7 +77329,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_insert_input": { @@ -72029,7 +77352,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "damage": [ 40 @@ -72071,7 +77394,7 @@ export default { 40 ], "flash_duration_sum": [ - 3092 + 3375 ], "flashes_thrown": [ 40 @@ -72125,16 +77448,16 @@ export default { 40 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "molotov_damage": [ 40 @@ -72149,7 +77472,7 @@ export default { 40 ], "player": [ - 4063 + 4346 ], "rounds_ct": [ 40 @@ -72182,7 +77505,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "team_damage": [ 40 @@ -72197,7 +77520,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 @@ -72227,7 +77550,7 @@ export default { 40 ], "updated_at": [ - 4670 + 4958 ], "util_on_death_count": [ 40 @@ -72242,7 +77565,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_max_fields": { @@ -72265,7 +77588,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "damage": [ 40 @@ -72307,7 +77630,7 @@ export default { 40 ], "flash_duration_sum": [ - 3092 + 3375 ], "flashes_thrown": [ 40 @@ -72361,10 +77684,10 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "molotov_damage": [ 40 @@ -72409,7 +77732,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "team_damage": [ 40 @@ -72424,7 +77747,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 @@ -72454,7 +77777,7 @@ export default { 40 ], "updated_at": [ - 4670 + 4958 ], "util_on_death_count": [ 40 @@ -72469,234 +77792,234 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_max_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "crosshair_angle_count": [ - 3094 + 3377 ], "crosshair_angle_sum_deg": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flash_duration_count": [ - 3094 + 3377 ], "flash_duration_sum": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kast_rounds": [ - 3094 + 3377 ], "kast_total_rounds": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "time_to_damage_count": [ - 3094 + 3377 ], "time_to_damage_sum_s": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "util_on_death_count": [ - 3094 + 3377 ], "util_on_death_sum": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_min_fields": { @@ -72719,7 +78042,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "damage": [ 40 @@ -72761,7 +78084,7 @@ export default { 40 ], "flash_duration_sum": [ - 3092 + 3375 ], "flashes_thrown": [ 40 @@ -72815,10 +78138,10 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "molotov_damage": [ 40 @@ -72863,7 +78186,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "team_damage": [ 40 @@ -72878,7 +78201,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 @@ -72908,7 +78231,7 @@ export default { 40 ], "updated_at": [ - 4670 + 4958 ], "util_on_death_count": [ 40 @@ -72923,234 +78246,234 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_min_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "crosshair_angle_count": [ - 3094 + 3377 ], "crosshair_angle_sum_deg": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flash_duration_count": [ - 3094 + 3377 ], "flash_duration_sum": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kast_rounds": [ - 3094 + 3377 ], "kast_total_rounds": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "time_to_damage_count": [ - 3094 + 3377 ], "time_to_damage_sum_s": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "util_on_death_count": [ - 3094 + 3377 ], "util_on_death_sum": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_mutation_response": { @@ -73158,271 +78481,271 @@ export default { 40 ], "returning": [ - 3558 + 3841 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_on_conflict": { "constraint": [ - 3568 + 3851 ], "update_columns": [ - 3591 + 3874 ], "where": [ - 3567 + 3850 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "crosshair_angle_count": [ - 3094 + 3377 ], "crosshair_angle_sum_deg": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flash_duration_count": [ - 3094 + 3377 ], "flash_duration_sum": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kast_rounds": [ - 3094 + 3377 ], "kast_total_rounds": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "time_to_damage_count": [ - 3094 + 3377 ], "time_to_damage_sum_s": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "util_on_death_count": [ - 3094 + 3377 ], "util_on_death_sum": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_select_column": {}, @@ -73446,7 +78769,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "damage": [ 40 @@ -73488,7 +78811,7 @@ export default { 40 ], "flash_duration_sum": [ - 3092 + 3375 ], "flashes_thrown": [ 40 @@ -73542,10 +78865,10 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "molotov_damage": [ 40 @@ -73590,7 +78913,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "team_damage": [ 40 @@ -73605,7 +78928,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 @@ -73635,7 +78958,7 @@ export default { 40 ], "updated_at": [ - 4670 + 4958 ], "util_on_death_count": [ 40 @@ -73650,7 +78973,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_stddev_fields": { @@ -73868,225 +79191,225 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_stddev_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "crosshair_angle_count": [ - 3094 + 3377 ], "crosshair_angle_sum_deg": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flash_duration_count": [ - 3094 + 3377 ], "flash_duration_sum": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kast_rounds": [ - 3094 + 3377 ], "kast_total_rounds": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "time_to_damage_count": [ - 3094 + 3377 ], "time_to_damage_sum_s": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "util_on_death_count": [ - 3094 + 3377 ], "util_on_death_sum": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_stddev_pop_fields": { @@ -74304,225 +79627,225 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "crosshair_angle_count": [ - 3094 + 3377 ], "crosshair_angle_sum_deg": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flash_duration_count": [ - 3094 + 3377 ], "flash_duration_sum": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kast_rounds": [ - 3094 + 3377 ], "kast_total_rounds": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "time_to_damage_count": [ - 3094 + 3377 ], "time_to_damage_sum_s": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "util_on_death_count": [ - 3094 + 3377 ], "util_on_death_sum": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_stddev_samp_fields": { @@ -74740,236 +80063,236 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "crosshair_angle_count": [ - 3094 + 3377 ], "crosshair_angle_sum_deg": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flash_duration_count": [ - 3094 + 3377 ], "flash_duration_sum": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kast_rounds": [ - 3094 + 3377 ], "kast_total_rounds": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "time_to_damage_count": [ - 3094 + 3377 ], "time_to_damage_sum_s": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "util_on_death_count": [ - 3094 + 3377 ], "util_on_death_sum": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 3588 + 3871 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_stream_cursor_value_input": { @@ -74992,7 +80315,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "damage": [ 40 @@ -75034,7 +80357,7 @@ export default { 40 ], "flash_duration_sum": [ - 3092 + 3375 ], "flashes_thrown": [ 40 @@ -75088,10 +80411,10 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "molotov_damage": [ 40 @@ -75136,7 +80459,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "team_damage": [ 40 @@ -75151,7 +80474,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 @@ -75181,7 +80504,7 @@ export default { 40 ], "updated_at": [ - 4670 + 4958 ], "util_on_death_count": [ 40 @@ -75196,7 +80519,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_sum_fields": { @@ -75219,7 +80542,7 @@ export default { 40 ], "crosshair_angle_sum_deg": [ - 3092 + 3375 ], "damage": [ 40 @@ -75261,7 +80584,7 @@ export default { 40 ], "flash_duration_sum": [ - 3092 + 3375 ], "flashes_thrown": [ 40 @@ -75357,7 +80680,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "team_damage": [ 40 @@ -75372,7 +80695,7 @@ export default { 40 ], "time_to_damage_sum_s": [ - 3092 + 3375 ], "total_engagement_frames": [ 40 @@ -75414,240 +80737,240 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_sum_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "crosshair_angle_count": [ - 3094 + 3377 ], "crosshair_angle_sum_deg": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flash_duration_count": [ - 3094 + 3377 ], "flash_duration_sum": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kast_rounds": [ - 3094 + 3377 ], "kast_total_rounds": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "time_to_damage_count": [ - 3094 + 3377 ], "time_to_damage_sum_s": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "util_on_death_count": [ - 3094 + 3377 ], "util_on_death_sum": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 3569 + 3852 ], "_set": [ - 3580 + 3863 ], "where": [ - 3567 + 3850 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_var_pop_fields": { @@ -75865,225 +81188,225 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "crosshair_angle_count": [ - 3094 + 3377 ], "crosshair_angle_sum_deg": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flash_duration_count": [ - 3094 + 3377 ], "flash_duration_sum": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kast_rounds": [ - 3094 + 3377 ], "kast_total_rounds": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "time_to_damage_count": [ - 3094 + 3377 ], "time_to_damage_sum_s": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "util_on_death_count": [ - 3094 + 3377 ], "util_on_death_sum": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_var_samp_fields": { @@ -76301,225 +81624,225 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "crosshair_angle_count": [ - 3094 + 3377 ], "crosshair_angle_sum_deg": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flash_duration_count": [ - 3094 + 3377 ], "flash_duration_sum": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kast_rounds": [ - 3094 + 3377 ], "kast_total_rounds": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "time_to_damage_count": [ - 3094 + 3377 ], "time_to_damage_sum_s": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "util_on_death_count": [ - 3094 + 3377 ], "util_on_death_sum": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_variance_fields": { @@ -76737,309 +82060,309 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_map_stats_variance_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "crosshair_angle_count": [ - 3094 + 3377 ], "crosshair_angle_sum_deg": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flash_duration_count": [ - 3094 + 3377 ], "flash_duration_sum": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kast_rounds": [ - 3094 + 3377 ], "kast_total_rounds": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "time_to_damage_count": [ - 3094 + 3377 ], "time_to_damage_sum_s": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "util_on_death_count": [ - 3094 + 3377 ], "util_on_death_sum": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v": { "accuracy": [ - 3092 + 3375 ], "accuracy_spotted": [ - 3092 + 3375 ], "aim_rating": [ - 1777 + 1841 ], "counter_strafe_pct": [ - 3092 + 3375 ], "enemy_blind_pr": [ - 3092 + 3375 ], "flash_assists_pr": [ - 3092 + 3375 ], "hs_pct": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "overall_rating": [ - 1777 + 1841 ], "played_at": [ - 4670 + 4958 ], "positioning_rating": [ - 1777 + 1841 ], "rounds": [ 40 ], "source": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "survival_pct": [ - 3092 + 3375 ], "traded_death_pct": [ - 3092 + 3375 ], "util_efficiency": [ - 3092 + 3375 ], "utility_rating": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_aggregate": { "aggregate": [ - 3601 + 3884 ], "nodes": [ - 3599 + 3882 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_aggregate_fields": { "avg": [ - 3602 + 3885 ], "count": [ 40, { "columns": [ - 3607, + 3890, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -77048,34 +82371,34 @@ export default { } ], "max": [ - 3604 + 3887 ], "min": [ - 3605 + 3888 ], "stddev": [ - 3608 + 3891 ], "stddev_pop": [ - 3609 + 3892 ], "stddev_samp": [ - 3610 + 3893 ], "sum": [ - 3613 + 3896 ], "var_pop": [ - 3614 + 3897 ], "var_samp": [ - 3615 + 3898 ], "variance": [ - 3616 + 3899 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_avg_fields": { @@ -77128,264 +82451,264 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_bool_exp": { "_and": [ - 3603 + 3886 ], "_not": [ - 3603 + 3886 ], "_or": [ - 3603 + 3886 ], "accuracy": [ - 3093 + 3376 ], "accuracy_spotted": [ - 3093 + 3376 ], "aim_rating": [ - 1778 + 1842 ], "counter_strafe_pct": [ - 3093 + 3376 ], "enemy_blind_pr": [ - 3093 + 3376 ], "flash_assists_pr": [ - 3093 + 3376 ], "hs_pct": [ - 3093 + 3376 ], "kast_pct": [ - 3093 + 3376 ], "match_id": [ - 5172 + 5460 ], "overall_rating": [ - 1778 + 1842 ], "played_at": [ - 4671 + 4959 ], "positioning_rating": [ - 1778 + 1842 ], "rounds": [ 41 ], "source": [ - 82 + 85 ], "steam_id": [ - 266 + 270 ], "survival_pct": [ - 3093 + 3376 ], "traded_death_pct": [ - 3093 + 3376 ], "util_efficiency": [ - 3093 + 3376 ], "utility_rating": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_max_fields": { "accuracy": [ - 3092 + 3375 ], "accuracy_spotted": [ - 3092 + 3375 ], "aim_rating": [ - 1777 + 1841 ], "counter_strafe_pct": [ - 3092 + 3375 ], "enemy_blind_pr": [ - 3092 + 3375 ], "flash_assists_pr": [ - 3092 + 3375 ], "hs_pct": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "overall_rating": [ - 1777 + 1841 ], "played_at": [ - 4670 + 4958 ], "positioning_rating": [ - 1777 + 1841 ], "rounds": [ 40 ], "source": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "survival_pct": [ - 3092 + 3375 ], "traded_death_pct": [ - 3092 + 3375 ], "util_efficiency": [ - 3092 + 3375 ], "utility_rating": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_min_fields": { "accuracy": [ - 3092 + 3375 ], "accuracy_spotted": [ - 3092 + 3375 ], "aim_rating": [ - 1777 + 1841 ], "counter_strafe_pct": [ - 3092 + 3375 ], "enemy_blind_pr": [ - 3092 + 3375 ], "flash_assists_pr": [ - 3092 + 3375 ], "hs_pct": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "overall_rating": [ - 1777 + 1841 ], "played_at": [ - 4670 + 4958 ], "positioning_rating": [ - 1777 + 1841 ], "rounds": [ 40 ], "source": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "survival_pct": [ - 3092 + 3375 ], "traded_death_pct": [ - 3092 + 3375 ], "util_efficiency": [ - 3092 + 3375 ], "utility_rating": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_order_by": { "accuracy": [ - 3094 + 3377 ], "accuracy_spotted": [ - 3094 + 3377 ], "aim_rating": [ - 3094 + 3377 ], "counter_strafe_pct": [ - 3094 + 3377 ], "enemy_blind_pr": [ - 3094 + 3377 ], "flash_assists_pr": [ - 3094 + 3377 ], "hs_pct": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "overall_rating": [ - 3094 + 3377 ], "played_at": [ - 3094 + 3377 ], "positioning_rating": [ - 3094 + 3377 ], "rounds": [ - 3094 + 3377 ], "source": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "survival_pct": [ - 3094 + 3377 ], "traded_death_pct": [ - 3094 + 3377 ], "util_efficiency": [ - 3094 + 3377 ], "utility_rating": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_select_column": {}, @@ -77439,7 +82762,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_stddev_pop_fields": { @@ -77492,7 +82815,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_stddev_samp_fields": { @@ -77545,133 +82868,133 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 3612 + 3895 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 3092 + 3375 ], "accuracy_spotted": [ - 3092 + 3375 ], "aim_rating": [ - 1777 + 1841 ], "counter_strafe_pct": [ - 3092 + 3375 ], "enemy_blind_pr": [ - 3092 + 3375 ], "flash_assists_pr": [ - 3092 + 3375 ], "hs_pct": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "overall_rating": [ - 1777 + 1841 ], "played_at": [ - 4670 + 4958 ], "positioning_rating": [ - 1777 + 1841 ], "rounds": [ 40 ], "source": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "survival_pct": [ - 3092 + 3375 ], "traded_death_pct": [ - 3092 + 3375 ], "util_efficiency": [ - 3092 + 3375 ], "utility_rating": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_sum_fields": { "accuracy": [ - 3092 + 3375 ], "accuracy_spotted": [ - 3092 + 3375 ], "aim_rating": [ - 1777 + 1841 ], "counter_strafe_pct": [ - 3092 + 3375 ], "enemy_blind_pr": [ - 3092 + 3375 ], "flash_assists_pr": [ - 3092 + 3375 ], "hs_pct": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "overall_rating": [ - 1777 + 1841 ], "positioning_rating": [ - 1777 + 1841 ], "rounds": [ 40 ], "steam_id": [ - 264 + 268 ], "survival_pct": [ - 3092 + 3375 ], "traded_death_pct": [ - 3092 + 3375 ], "util_efficiency": [ - 3092 + 3375 ], "utility_rating": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_var_pop_fields": { @@ -77724,7 +83047,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_var_samp_fields": { @@ -77777,7 +83100,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_performance_v_variance_fields": { @@ -77830,7 +83153,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v": { @@ -77844,13 +83167,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3092 + 3375 ], "avg_flash_duration": [ - 3092 + 3375 ], "avg_time_to_damage_s": [ - 3092 + 3375 ], "counter_strafe_eligible_shots": [ 40 @@ -77940,7 +83263,7 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "molotov_damage": [ 40 @@ -77985,7 +83308,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "team_damage": [ 40 @@ -78024,7 +83347,7 @@ export default { 40 ], "utility_on_death": [ - 3092 + 3375 ], "wasted_magazine_shots": [ 40 @@ -78033,54 +83356,54 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_aggregate": { "aggregate": [ - 3621 + 3904 ], "nodes": [ - 3617 + 3900 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3620 + 3903 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3633 + 3916 ], "distinct": [ 5 ], "filter": [ - 3626 + 3909 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3624 + 3907 ], "count": [ 40, { "columns": [ - 3633, + 3916, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -78089,80 +83412,80 @@ export default { } ], "max": [ - 3628 + 3911 ], "min": [ - 3630 + 3913 ], "stddev": [ - 3634 + 3917 ], "stddev_pop": [ - 3636 + 3919 ], "stddev_samp": [ - 3638 + 3921 ], "sum": [ - 3642 + 3925 ], "var_pop": [ - 3644 + 3927 ], "var_samp": [ - 3646 + 3929 ], "variance": [ - 3648 + 3931 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3625 + 3908 ], "count": [ - 3094 + 3377 ], "max": [ - 3629 + 3912 ], "min": [ - 3631 + 3914 ], "stddev": [ - 3635 + 3918 ], "stddev_pop": [ - 3637 + 3920 ], "stddev_samp": [ - 3639 + 3922 ], "sum": [ - 3643 + 3926 ], "var_pop": [ - 3645 + 3928 ], "var_samp": [ - 3647 + 3930 ], "variance": [ - 3649 + 3932 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3627 + 3910 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_avg_fields": { @@ -78362,218 +83685,218 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_avg_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "avg_crosshair_angle_deg": [ - 3094 + 3377 ], "avg_flash_duration": [ - 3094 + 3377 ], "avg_time_to_damage_s": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "utility_on_death": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_bool_exp": { "_and": [ - 3626 + 3909 ], "_not": [ - 3626 + 3909 ], "_or": [ - 3626 + 3909 ], "assists": [ 41 @@ -78585,13 +83908,13 @@ export default { 41 ], "avg_crosshair_angle_deg": [ - 3093 + 3376 ], "avg_flash_duration": [ - 3093 + 3376 ], "avg_time_to_damage_s": [ - 3093 + 3376 ], "counter_strafe_eligible_shots": [ 41 @@ -78681,7 +84004,7 @@ export default { 41 ], "match_id": [ - 5172 + 5460 ], "molotov_damage": [ 41 @@ -78726,7 +84049,7 @@ export default { 41 ], "steam_id": [ - 266 + 270 ], "team_damage": [ 41 @@ -78765,7 +84088,7 @@ export default { 41 ], "utility_on_death": [ - 3093 + 3376 ], "wasted_magazine_shots": [ 41 @@ -78774,7 +84097,7 @@ export default { 41 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_insert_input": { @@ -78788,13 +84111,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3092 + 3375 ], "avg_flash_duration": [ - 3092 + 3375 ], "avg_time_to_damage_s": [ - 3092 + 3375 ], "counter_strafe_eligible_shots": [ 40 @@ -78884,7 +84207,7 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "molotov_damage": [ 40 @@ -78929,7 +84252,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "team_damage": [ 40 @@ -78968,7 +84291,7 @@ export default { 40 ], "utility_on_death": [ - 3092 + 3375 ], "wasted_magazine_shots": [ 40 @@ -78977,7 +84300,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_max_fields": { @@ -78991,13 +84314,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3092 + 3375 ], "avg_flash_duration": [ - 3092 + 3375 ], "avg_time_to_damage_s": [ - 3092 + 3375 ], "counter_strafe_eligible_shots": [ 40 @@ -79087,7 +84410,7 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "molotov_damage": [ 40 @@ -79132,7 +84455,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "team_damage": [ 40 @@ -79171,7 +84494,7 @@ export default { 40 ], "utility_on_death": [ - 3092 + 3375 ], "wasted_magazine_shots": [ 40 @@ -79180,210 +84503,210 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_max_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "avg_crosshair_angle_deg": [ - 3094 + 3377 ], "avg_flash_duration": [ - 3094 + 3377 ], "avg_time_to_damage_s": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "utility_on_death": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_min_fields": { @@ -79397,13 +84720,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3092 + 3375 ], "avg_flash_duration": [ - 3092 + 3375 ], "avg_time_to_damage_s": [ - 3092 + 3375 ], "counter_strafe_eligible_shots": [ 40 @@ -79493,7 +84816,7 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "molotov_damage": [ 40 @@ -79538,7 +84861,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "team_damage": [ 40 @@ -79577,7 +84900,7 @@ export default { 40 ], "utility_on_death": [ - 3092 + 3375 ], "wasted_magazine_shots": [ 40 @@ -79586,413 +84909,413 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_min_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "avg_crosshair_angle_deg": [ - 3094 + 3377 ], "avg_flash_duration": [ - 3094 + 3377 ], "avg_time_to_damage_s": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "utility_on_death": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "avg_crosshair_angle_deg": [ - 3094 + 3377 ], "avg_flash_duration": [ - 3094 + 3377 ], "avg_time_to_damage_s": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "utility_on_death": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_select_column": {}, @@ -80193,207 +85516,207 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_stddev_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "avg_crosshair_angle_deg": [ - 3094 + 3377 ], "avg_flash_duration": [ - 3094 + 3377 ], "avg_time_to_damage_s": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "utility_on_death": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_stddev_pop_fields": { @@ -80593,207 +85916,207 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "avg_crosshair_angle_deg": [ - 3094 + 3377 ], "avg_flash_duration": [ - 3094 + 3377 ], "avg_time_to_damage_s": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "utility_on_death": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_stddev_samp_fields": { @@ -80993,218 +86316,218 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "avg_crosshair_angle_deg": [ - 3094 + 3377 ], "avg_flash_duration": [ - 3094 + 3377 ], "avg_time_to_damage_s": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "utility_on_death": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3641 + 3924 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_stream_cursor_value_input": { @@ -81218,13 +86541,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3092 + 3375 ], "avg_flash_duration": [ - 3092 + 3375 ], "avg_time_to_damage_s": [ - 3092 + 3375 ], "counter_strafe_eligible_shots": [ 40 @@ -81314,7 +86637,7 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "molotov_damage": [ 40 @@ -81359,7 +86682,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "team_damage": [ 40 @@ -81398,7 +86721,7 @@ export default { 40 ], "utility_on_death": [ - 3092 + 3375 ], "wasted_magazine_shots": [ 40 @@ -81407,7 +86730,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_sum_fields": { @@ -81421,13 +86744,13 @@ export default { 40 ], "avg_crosshair_angle_deg": [ - 3092 + 3375 ], "avg_flash_duration": [ - 3092 + 3375 ], "avg_time_to_damage_s": [ - 3092 + 3375 ], "counter_strafe_eligible_shots": [ 40 @@ -81559,7 +86882,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "team_damage": [ 40 @@ -81598,7 +86921,7 @@ export default { 40 ], "utility_on_death": [ - 3092 + 3375 ], "wasted_magazine_shots": [ 40 @@ -81607,207 +86930,207 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_sum_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "avg_crosshair_angle_deg": [ - 3094 + 3377 ], "avg_flash_duration": [ - 3094 + 3377 ], "avg_time_to_damage_s": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "utility_on_death": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_var_pop_fields": { @@ -82007,207 +87330,207 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "avg_crosshair_angle_deg": [ - 3094 + 3377 ], "avg_flash_duration": [ - 3094 + 3377 ], "avg_time_to_damage_s": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "utility_on_death": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_var_samp_fields": { @@ -82407,207 +87730,207 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "avg_crosshair_angle_deg": [ - 3094 + 3377 ], "avg_flash_duration": [ - 3094 + 3377 ], "avg_time_to_damage_s": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "utility_on_death": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_variance_fields": { @@ -82807,289 +88130,289 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_match_stats_v_variance_order_by": { "assists": [ - 3094 + 3377 ], "assists_ct": [ - 3094 + 3377 ], "assists_t": [ - 3094 + 3377 ], "avg_crosshair_angle_deg": [ - 3094 + 3377 ], "avg_flash_duration": [ - 3094 + 3377 ], "avg_time_to_damage_s": [ - 3094 + 3377 ], "counter_strafe_eligible_shots": [ - 3094 + 3377 ], "counter_strafed_shots": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_ct": [ - 3094 + 3377 ], "damage_t": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "deaths_ct": [ - 3094 + 3377 ], "deaths_t": [ - 3094 + 3377 ], "decoy_throws": [ - 3094 + 3377 ], "enemies_flashed": [ - 3094 + 3377 ], "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "five_kill_rounds": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "flashes_thrown": [ - 3094 + 3377 ], "four_kill_rounds": [ - 3094 + 3377 ], "he_damage": [ - 3094 + 3377 ], "he_team_damage": [ - 3094 + 3377 ], "he_throws": [ - 3094 + 3377 ], "headshot_hits": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_at_spotted": [ - 3094 + 3377 ], "hs_kills": [ - 3094 + 3377 ], "hs_kills_ct": [ - 3094 + 3377 ], "hs_kills_t": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kills_ct": [ - 3094 + 3377 ], "kills_t": [ - 3094 + 3377 ], "knife_kills": [ - 3094 + 3377 ], "molotov_damage": [ - 3094 + 3377 ], "molotov_throws": [ - 3094 + 3377 ], "non_awp_hits": [ - 3094 + 3377 ], "on_target_frames": [ - 3094 + 3377 ], "rounds_ct": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "rounds_t": [ - 3094 + 3377 ], "shots_at_spotted": [ - 3094 + 3377 ], "shots_fired": [ - 3094 + 3377 ], "smoke_throws": [ - 3094 + 3377 ], "spotted_count": [ - 3094 + 3377 ], "spotted_with_damage_count": [ - 3094 + 3377 ], "spray_hits": [ - 3094 + 3377 ], "spray_shots": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_damage": [ - 3094 + 3377 ], "team_flashed": [ - 3094 + 3377 ], "three_kill_rounds": [ - 3094 + 3377 ], "total_engagement_frames": [ - 3094 + 3377 ], "trade_kill_attempts": [ - 3094 + 3377 ], "trade_kill_opportunities": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_attempts": [ - 3094 + 3377 ], "traded_death_opportunities": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "two_kill_rounds": [ - 3094 + 3377 ], "unused_utility_value": [ - 3094 + 3377 ], "utility_on_death": [ - 3094 + 3377 ], "wasted_magazine_shots": [ - 3094 + 3377 ], "zeus_kills": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_objectives": { "deleted_at": [ - 4670 + 4958 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4052 + 4335 ], "player_steam_id": [ - 264 + 268 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "type": [ - 1158 + 1222 ], "__typename": [ - 80 + 83 ] }, "player_objectives_aggregate": { "aggregate": [ - 3654 + 3937 ], "nodes": [ - 3650 + 3933 ], "__typename": [ - 80 + 83 ] }, "player_objectives_aggregate_bool_exp": { "count": [ - 3653 + 3936 ], "__typename": [ - 80 + 83 ] }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3671 + 3954 ], "distinct": [ 5 ], "filter": [ - 3659 + 3942 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_objectives_aggregate_fields": { "avg": [ - 3657 + 3940 ], "count": [ 40, { "columns": [ - 3671, + 3954, "[player_objectives_select_column!]" ], "distinct": [ @@ -83098,83 +88421,83 @@ export default { } ], "max": [ - 3663 + 3946 ], "min": [ - 3665 + 3948 ], "stddev": [ - 3673 + 3956 ], "stddev_pop": [ - 3675 + 3958 ], "stddev_samp": [ - 3677 + 3960 ], "sum": [ - 3681 + 3964 ], "var_pop": [ - 3685 + 3968 ], "var_samp": [ - 3687 + 3970 ], "variance": [ - 3689 + 3972 ], "__typename": [ - 80 + 83 ] }, "player_objectives_aggregate_order_by": { "avg": [ - 3658 + 3941 ], "count": [ - 3094 + 3377 ], "max": [ - 3664 + 3947 ], "min": [ - 3666 + 3949 ], "stddev": [ - 3674 + 3957 ], "stddev_pop": [ - 3676 + 3959 ], "stddev_samp": [ - 3678 + 3961 ], "sum": [ - 3682 + 3965 ], "var_pop": [ - 3686 + 3969 ], "var_samp": [ - 3688 + 3971 ], "variance": [ - 3690 + 3973 ], "__typename": [ - 80 + 83 ] }, "player_objectives_arr_rel_insert_input": { "data": [ - 3662 + 3945 ], "on_conflict": [ - 3668 + 3951 ], "__typename": [ - 80 + 83 ] }, "player_objectives_avg_fields": { @@ -83185,201 +88508,201 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_objectives_avg_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_objectives_bool_exp": { "_and": [ - 3659 + 3942 ], "_not": [ - 3659 + 3942 ], "_or": [ - 3659 + 3942 ], "deleted_at": [ - 4671 + 4959 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "player": [ - 4056 + 4339 ], "player_steam_id": [ - 266 + 270 ], "round": [ 41 ], "time": [ - 4671 + 4959 ], "type": [ - 1159 + 1223 ], "__typename": [ - 80 + 83 ] }, "player_objectives_constraint": {}, "player_objectives_inc_input": { "player_steam_id": [ - 264 + 268 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_objectives_insert_input": { "deleted_at": [ - 4670 + 4958 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4063 + 4346 ], "player_steam_id": [ - 264 + 268 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "type": [ - 1158 + 1222 ], "__typename": [ - 80 + 83 ] }, "player_objectives_max_fields": { "deleted_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_objectives_max_order_by": { "deleted_at": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_objectives_min_fields": { "deleted_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_objectives_min_order_by": { "deleted_at": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_objectives_mutation_response": { @@ -83387,100 +88710,100 @@ export default { 40 ], "returning": [ - 3650 + 3933 ], "__typename": [ - 80 + 83 ] }, "player_objectives_on_conflict": { "constraint": [ - 3660 + 3943 ], "update_columns": [ - 3683 + 3966 ], "where": [ - 3659 + 3942 ], "__typename": [ - 80 + 83 ] }, "player_objectives_order_by": { "deleted_at": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_objectives_pk_columns_input": { "match_map_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "type": [ - 1158 + 1222 ], "__typename": [ - 80 + 83 ] }, "player_objectives_stddev_fields": { @@ -83491,18 +88814,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_objectives_stddev_pop_fields": { @@ -83513,18 +88836,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_objectives_stddev_samp_fields": { @@ -83535,92 +88858,92 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3680 + 3963 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "type": [ - 1158 + 1222 ], "__typename": [ - 80 + 83 ] }, "player_objectives_sum_fields": { "player_steam_id": [ - 264 + 268 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_objectives_sum_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3661 + 3944 ], "_set": [ - 3672 + 3955 ], "where": [ - 3659 + 3942 ], "__typename": [ - 80 + 83 ] }, "player_objectives_var_pop_fields": { @@ -83631,18 +88954,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_objectives_var_samp_fields": { @@ -83653,18 +88976,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_objectives_variance_fields": { @@ -83675,62 +88998,62 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_objectives_variance_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_performance_v": { "accuracy_score": [ - 1777 + 1841 ], "aim_goal": [ - 1777 + 1841 ], "aim_rating": [ - 1777 + 1841 ], "band": [ 40 ], "band_sample": [ - 264 + 268 ], "blind_score": [ - 1777 + 1841 ], "counter_strafe_score": [ - 1777 + 1841 ], "crosshair_score": [ - 1777 + 1841 ], "flash_assists_score": [ - 1777 + 1841 ], "hs_score": [ - 1777 + 1841 ], "kast_score": [ - 1777 + 1841 ], "maps": [ 40 ], "positioning_goal": [ - 1777 + 1841 ], "positioning_rating": [ - 1777 + 1841 ], "premier_rank": [ 40 @@ -83739,53 +89062,53 @@ export default { 40 ], "spotted_score": [ - 1777 + 1841 ], "steam_id": [ - 264 + 268 ], "survival_score": [ - 1777 + 1841 ], "traded_score": [ - 1777 + 1841 ], "ttd_score": [ - 1777 + 1841 ], "util_eff_score": [ - 1777 + 1841 ], "utility_goal": [ - 1777 + 1841 ], "utility_rating": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_aggregate": { "aggregate": [ - 3693 + 3976 ], "nodes": [ - 3691 + 3974 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_aggregate_fields": { "avg": [ - 3694 + 3977 ], "count": [ 40, { "columns": [ - 3699, + 3982, "[player_performance_v_select_column!]" ], "distinct": [ @@ -83794,34 +89117,34 @@ export default { } ], "max": [ - 3696 + 3979 ], "min": [ - 3697 + 3980 ], "stddev": [ - 3700 + 3983 ], "stddev_pop": [ - 3701 + 3984 ], "stddev_samp": [ - 3702 + 3985 ], "sum": [ - 3705 + 3988 ], "var_pop": [ - 3706 + 3989 ], "var_samp": [ - 3707 + 3990 ], "variance": [ - 3708 + 3991 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_avg_fields": { @@ -83898,60 +89221,60 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_bool_exp": { "_and": [ - 3695 + 3978 ], "_not": [ - 3695 + 3978 ], "_or": [ - 3695 + 3978 ], "accuracy_score": [ - 1778 + 1842 ], "aim_goal": [ - 1778 + 1842 ], "aim_rating": [ - 1778 + 1842 ], "band": [ 41 ], "band_sample": [ - 266 + 270 ], "blind_score": [ - 1778 + 1842 ], "counter_strafe_score": [ - 1778 + 1842 ], "crosshair_score": [ - 1778 + 1842 ], "flash_assists_score": [ - 1778 + 1842 ], "hs_score": [ - 1778 + 1842 ], "kast_score": [ - 1778 + 1842 ], "maps": [ 41 ], "positioning_goal": [ - 1778 + 1842 ], "positioning_rating": [ - 1778 + 1842 ], "premier_rank": [ 41 @@ -83960,75 +89283,75 @@ export default { 41 ], "spotted_score": [ - 1778 + 1842 ], "steam_id": [ - 266 + 270 ], "survival_score": [ - 1778 + 1842 ], "traded_score": [ - 1778 + 1842 ], "ttd_score": [ - 1778 + 1842 ], "util_eff_score": [ - 1778 + 1842 ], "utility_goal": [ - 1778 + 1842 ], "utility_rating": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_max_fields": { "accuracy_score": [ - 1777 + 1841 ], "aim_goal": [ - 1777 + 1841 ], "aim_rating": [ - 1777 + 1841 ], "band": [ 40 ], "band_sample": [ - 264 + 268 ], "blind_score": [ - 1777 + 1841 ], "counter_strafe_score": [ - 1777 + 1841 ], "crosshair_score": [ - 1777 + 1841 ], "flash_assists_score": [ - 1777 + 1841 ], "hs_score": [ - 1777 + 1841 ], "kast_score": [ - 1777 + 1841 ], "maps": [ 40 ], "positioning_goal": [ - 1777 + 1841 ], "positioning_rating": [ - 1777 + 1841 ], "premier_rank": [ 40 @@ -84037,75 +89360,75 @@ export default { 40 ], "spotted_score": [ - 1777 + 1841 ], "steam_id": [ - 264 + 268 ], "survival_score": [ - 1777 + 1841 ], "traded_score": [ - 1777 + 1841 ], "ttd_score": [ - 1777 + 1841 ], "util_eff_score": [ - 1777 + 1841 ], "utility_goal": [ - 1777 + 1841 ], "utility_rating": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_min_fields": { "accuracy_score": [ - 1777 + 1841 ], "aim_goal": [ - 1777 + 1841 ], "aim_rating": [ - 1777 + 1841 ], "band": [ 40 ], "band_sample": [ - 264 + 268 ], "blind_score": [ - 1777 + 1841 ], "counter_strafe_score": [ - 1777 + 1841 ], "crosshair_score": [ - 1777 + 1841 ], "flash_assists_score": [ - 1777 + 1841 ], "hs_score": [ - 1777 + 1841 ], "kast_score": [ - 1777 + 1841 ], "maps": [ 40 ], "positioning_goal": [ - 1777 + 1841 ], "positioning_rating": [ - 1777 + 1841 ], "premier_rank": [ 40 @@ -84114,108 +89437,108 @@ export default { 40 ], "spotted_score": [ - 1777 + 1841 ], "steam_id": [ - 264 + 268 ], "survival_score": [ - 1777 + 1841 ], "traded_score": [ - 1777 + 1841 ], "ttd_score": [ - 1777 + 1841 ], "util_eff_score": [ - 1777 + 1841 ], "utility_goal": [ - 1777 + 1841 ], "utility_rating": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_order_by": { "accuracy_score": [ - 3094 + 3377 ], "aim_goal": [ - 3094 + 3377 ], "aim_rating": [ - 3094 + 3377 ], "band": [ - 3094 + 3377 ], "band_sample": [ - 3094 + 3377 ], "blind_score": [ - 3094 + 3377 ], "counter_strafe_score": [ - 3094 + 3377 ], "crosshair_score": [ - 3094 + 3377 ], "flash_assists_score": [ - 3094 + 3377 ], "hs_score": [ - 3094 + 3377 ], "kast_score": [ - 3094 + 3377 ], "maps": [ - 3094 + 3377 ], "positioning_goal": [ - 3094 + 3377 ], "positioning_rating": [ - 3094 + 3377 ], "premier_rank": [ - 3094 + 3377 ], "rounds": [ - 3094 + 3377 ], "spotted_score": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "survival_score": [ - 3094 + 3377 ], "traded_score": [ - 3094 + 3377 ], "ttd_score": [ - 3094 + 3377 ], "util_eff_score": [ - 3094 + 3377 ], "utility_goal": [ - 3094 + 3377 ], "utility_rating": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_select_column": {}, @@ -84293,7 +89616,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_stddev_pop_fields": { @@ -84370,7 +89693,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_stddev_samp_fields": { @@ -84447,62 +89770,62 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3704 + 3987 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1777 + 1841 ], "aim_goal": [ - 1777 + 1841 ], "aim_rating": [ - 1777 + 1841 ], "band": [ 40 ], "band_sample": [ - 264 + 268 ], "blind_score": [ - 1777 + 1841 ], "counter_strafe_score": [ - 1777 + 1841 ], "crosshair_score": [ - 1777 + 1841 ], "flash_assists_score": [ - 1777 + 1841 ], "hs_score": [ - 1777 + 1841 ], "kast_score": [ - 1777 + 1841 ], "maps": [ 40 ], "positioning_goal": [ - 1777 + 1841 ], "positioning_rating": [ - 1777 + 1841 ], "premier_rank": [ 40 @@ -84511,75 +89834,75 @@ export default { 40 ], "spotted_score": [ - 1777 + 1841 ], "steam_id": [ - 264 + 268 ], "survival_score": [ - 1777 + 1841 ], "traded_score": [ - 1777 + 1841 ], "ttd_score": [ - 1777 + 1841 ], "util_eff_score": [ - 1777 + 1841 ], "utility_goal": [ - 1777 + 1841 ], "utility_rating": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1777 + 1841 ], "aim_goal": [ - 1777 + 1841 ], "aim_rating": [ - 1777 + 1841 ], "band": [ 40 ], "band_sample": [ - 264 + 268 ], "blind_score": [ - 1777 + 1841 ], "counter_strafe_score": [ - 1777 + 1841 ], "crosshair_score": [ - 1777 + 1841 ], "flash_assists_score": [ - 1777 + 1841 ], "hs_score": [ - 1777 + 1841 ], "kast_score": [ - 1777 + 1841 ], "maps": [ 40 ], "positioning_goal": [ - 1777 + 1841 ], "positioning_rating": [ - 1777 + 1841 ], "premier_rank": [ 40 @@ -84588,31 +89911,31 @@ export default { 40 ], "spotted_score": [ - 1777 + 1841 ], "steam_id": [ - 264 + 268 ], "survival_score": [ - 1777 + 1841 ], "traded_score": [ - 1777 + 1841 ], "ttd_score": [ - 1777 + 1841 ], "util_eff_score": [ - 1777 + 1841 ], "utility_goal": [ - 1777 + 1841 ], "utility_rating": [ - 1777 + 1841 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_var_pop_fields": { @@ -84689,7 +90012,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_var_samp_fields": { @@ -84766,7 +90089,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_performance_v_variance_fields": { @@ -84843,30 +90166,30 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history": { "id": [ - 5170 + 5458 ], "map": [ - 2392 + 2653 ], "map_id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "observed_at": [ - 4670 + 4958 ], "player": [ - 4052 + 4335 ], "previous_rank": [ 40 @@ -84878,57 +90201,57 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3713 + 3996 ], "nodes": [ - 3709 + 3992 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3712 + 3995 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3730 + 4013 ], "distinct": [ 5 ], "filter": [ - 3718 + 4001 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3716 + 3999 ], "count": [ 40, { "columns": [ - 3730, + 4013, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -84937,83 +90260,83 @@ export default { } ], "max": [ - 3722 + 4005 ], "min": [ - 3724 + 4007 ], "stddev": [ - 3732 + 4015 ], "stddev_pop": [ - 3734 + 4017 ], "stddev_samp": [ - 3736 + 4019 ], "sum": [ - 3740 + 4023 ], "var_pop": [ - 3744 + 4027 ], "var_samp": [ - 3746 + 4029 ], "variance": [ - 3748 + 4031 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3717 + 4000 ], "count": [ - 3094 + 3377 ], "max": [ - 3723 + 4006 ], "min": [ - 3725 + 4008 ], "stddev": [ - 3733 + 4016 ], "stddev_pop": [ - 3735 + 4018 ], "stddev_samp": [ - 3737 + 4020 ], "sum": [ - 3741 + 4024 ], "var_pop": [ - 3745 + 4028 ], "var_samp": [ - 3747 + 4030 ], "variance": [ - 3749 + 4032 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3721 + 4004 ], "on_conflict": [ - 3727 + 4010 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_avg_fields": { @@ -85030,56 +90353,56 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rank_type": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_bool_exp": { "_and": [ - 3718 + 4001 ], "_not": [ - 3718 + 4001 ], "_or": [ - 3718 + 4001 ], "id": [ - 5172 + 5460 ], "map": [ - 2401 + 2662 ], "map_id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "observed_at": [ - 4671 + 4959 ], "player": [ - 4056 + 4339 ], "previous_rank": [ 41 @@ -85091,10 +90414,10 @@ export default { 41 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_constraint": {}, @@ -85109,33 +90432,33 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_insert_input": { "id": [ - 5170 + 5458 ], "map": [ - 2409 + 2670 ], "map_id": [ - 5170 + 5458 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "observed_at": [ - 4670 + 4958 ], "player": [ - 4063 + 4346 ], "previous_rank": [ 40 @@ -85147,24 +90470,24 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_max_fields": { "id": [ - 5170 + 5458 ], "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "observed_at": [ - 4670 + 4958 ], "previous_rank": [ 40 @@ -85176,53 +90499,53 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_max_order_by": { "id": [ - 3094 + 3377 ], "map_id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "observed_at": [ - 3094 + 3377 ], "previous_rank": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rank_type": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_min_fields": { "id": [ - 5170 + 5458 ], "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "observed_at": [ - 4670 + 4958 ], "previous_rank": [ 40 @@ -85234,39 +90557,39 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_min_order_by": { "id": [ - 3094 + 3377 ], "map_id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "observed_at": [ - 3094 + 3377 ], "previous_rank": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rank_type": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_mutation_response": { @@ -85274,85 +90597,85 @@ export default { 40 ], "returning": [ - 3709 + 3992 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3719 + 4002 ], "update_columns": [ - 3742 + 4025 ], "where": [ - 3718 + 4001 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_order_by": { "id": [ - 3094 + 3377 ], "map": [ - 2411 + 2672 ], "map_id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "observed_at": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "previous_rank": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rank_type": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 5170 + 5458 ], "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "observed_at": [ - 4670 + 4958 ], "previous_rank": [ 40 @@ -85364,10 +90687,10 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_stddev_fields": { @@ -85384,24 +90707,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rank_type": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_stddev_pop_fields": { @@ -85418,24 +90741,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rank_type": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_stddev_samp_fields": { @@ -85452,49 +90775,49 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rank_type": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3739 + 4022 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 5170 + 5458 ], "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "observed_at": [ - 4670 + 4958 ], "previous_rank": [ 40 @@ -85506,10 +90829,10 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_sum_fields": { @@ -85523,42 +90846,42 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rank_type": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3720 + 4003 ], "_set": [ - 3731 + 4014 ], "where": [ - 3718 + 4001 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_var_pop_fields": { @@ -85575,24 +90898,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rank_type": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_var_samp_fields": { @@ -85609,24 +90932,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rank_type": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_variance_fields": { @@ -85643,109 +90966,109 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rank_type": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_sanctions": { "created_at": [ - 4670 + 4958 ], "deleted_at": [ - 4670 + 4958 ], "e_sanction_type": [ - 1233 + 1297 ], "id": [ - 5170 + 5458 ], "player": [ - 4052 + 4335 ], "player_steam_id": [ - 264 + 268 ], "reason": [ - 80 + 83 ], "remove_sanction_date": [ - 4670 + 4958 ], "sanctioned_by": [ - 4052 + 4335 ], "sanctioned_by_steam_id": [ - 264 + 268 ], "type": [ - 1238 + 1302 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_aggregate": { "aggregate": [ - 3754 + 4037 ], "nodes": [ - 3750 + 4033 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3753 + 4036 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3771 + 4054 ], "distinct": [ 5 ], "filter": [ - 3759 + 4042 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_aggregate_fields": { "avg": [ - 3757 + 4040 ], "count": [ 40, { "columns": [ - 3771, + 4054, "[player_sanctions_select_column!]" ], "distinct": [ @@ -85754,83 +91077,83 @@ export default { } ], "max": [ - 3763 + 4046 ], "min": [ - 3765 + 4048 ], "stddev": [ - 3773 + 4056 ], "stddev_pop": [ - 3775 + 4058 ], "stddev_samp": [ - 3777 + 4060 ], "sum": [ - 3781 + 4064 ], "var_pop": [ - 3785 + 4068 ], "var_samp": [ - 3787 + 4070 ], "variance": [ - 3789 + 4072 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_aggregate_order_by": { "avg": [ - 3758 + 4041 ], "count": [ - 3094 + 3377 ], "max": [ - 3764 + 4047 ], "min": [ - 3766 + 4049 ], "stddev": [ - 3774 + 4057 ], "stddev_pop": [ - 3776 + 4059 ], "stddev_samp": [ - 3778 + 4061 ], "sum": [ - 3782 + 4065 ], "var_pop": [ - 3786 + 4069 ], "var_samp": [ - 3788 + 4071 ], "variance": [ - 3790 + 4073 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3762 + 4045 ], "on_conflict": [ - 3768 + 4051 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_avg_fields": { @@ -85841,219 +91164,219 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 3094 + 3377 ], "sanctioned_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_bool_exp": { "_and": [ - 3759 + 4042 ], "_not": [ - 3759 + 4042 ], "_or": [ - 3759 + 4042 ], "created_at": [ - 4671 + 4959 ], "deleted_at": [ - 4671 + 4959 ], "e_sanction_type": [ - 1236 + 1300 ], "id": [ - 5172 + 5460 ], "player": [ - 4056 + 4339 ], "player_steam_id": [ - 266 + 270 ], "reason": [ - 82 + 85 ], "remove_sanction_date": [ - 4671 + 4959 ], "sanctioned_by": [ - 4056 + 4339 ], "sanctioned_by_steam_id": [ - 266 + 270 ], "type": [ - 1239 + 1303 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_constraint": {}, "player_sanctions_inc_input": { "player_steam_id": [ - 264 + 268 ], "sanctioned_by_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_insert_input": { "created_at": [ - 4670 + 4958 ], "deleted_at": [ - 4670 + 4958 ], "e_sanction_type": [ - 1244 + 1308 ], "id": [ - 5170 + 5458 ], "player": [ - 4063 + 4346 ], "player_steam_id": [ - 264 + 268 ], "reason": [ - 80 + 83 ], "remove_sanction_date": [ - 4670 + 4958 ], "sanctioned_by": [ - 4063 + 4346 ], "sanctioned_by_steam_id": [ - 264 + 268 ], "type": [ - 1238 + 1302 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_max_fields": { "created_at": [ - 4670 + 4958 ], "deleted_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "reason": [ - 80 + 83 ], "remove_sanction_date": [ - 4670 + 4958 ], "sanctioned_by_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_max_order_by": { "created_at": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "reason": [ - 3094 + 3377 ], "remove_sanction_date": [ - 3094 + 3377 ], "sanctioned_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_min_fields": { "created_at": [ - 4670 + 4958 ], "deleted_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "reason": [ - 80 + 83 ], "remove_sanction_date": [ - 4670 + 4958 ], "sanctioned_by_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_min_order_by": { "created_at": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "reason": [ - 3094 + 3377 ], "remove_sanction_date": [ - 3094 + 3377 ], "sanctioned_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_mutation_response": { @@ -86061,103 +91384,103 @@ export default { 40 ], "returning": [ - 3750 + 4033 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_on_conflict": { "constraint": [ - 3760 + 4043 ], "update_columns": [ - 3783 + 4066 ], "where": [ - 3759 + 4042 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_order_by": { "created_at": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "e_sanction_type": [ - 1246 + 1310 ], "id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "player_steam_id": [ - 3094 + 3377 ], "reason": [ - 3094 + 3377 ], "remove_sanction_date": [ - 3094 + 3377 ], "sanctioned_by": [ - 4065 + 4348 ], "sanctioned_by_steam_id": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_pk_columns_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4670 + 4958 ], "deleted_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "reason": [ - 80 + 83 ], "remove_sanction_date": [ - 4670 + 4958 ], "sanctioned_by_steam_id": [ - 264 + 268 ], "type": [ - 1238 + 1302 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_stddev_fields": { @@ -86168,18 +91491,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 3094 + 3377 ], "sanctioned_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_stddev_pop_fields": { @@ -86190,18 +91513,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 3094 + 3377 ], "sanctioned_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_stddev_samp_fields": { @@ -86212,95 +91535,95 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 3094 + 3377 ], "sanctioned_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3780 + 4063 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "deleted_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "reason": [ - 80 + 83 ], "remove_sanction_date": [ - 4670 + 4958 ], "sanctioned_by_steam_id": [ - 264 + 268 ], "type": [ - 1238 + 1302 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_sum_fields": { "player_steam_id": [ - 264 + 268 ], "sanctioned_by_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 3094 + 3377 ], "sanctioned_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3761 + 4044 ], "_set": [ - 3772 + 4055 ], "where": [ - 3759 + 4042 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_var_pop_fields": { @@ -86311,18 +91634,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 3094 + 3377 ], "sanctioned_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_var_samp_fields": { @@ -86333,18 +91656,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 3094 + 3377 ], "sanctioned_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_variance_fields": { @@ -86355,279 +91678,279 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 3094 + 3377 ], "sanctioned_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_season_stats": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player": [ - 4052 + 4335 ], "player_steam_id": [ - 264 + 268 ], "season": [ - 4138 + 4421 ], "season_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate": { "aggregate": [ - 3805 + 4088 ], "nodes": [ - 3791 + 4074 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3794 + 4077 ], "corr": [ - 3795 + 4078 ], "count": [ - 3797 + 4080 ], "covar_samp": [ - 3798 + 4081 ], "max": [ - 3800 + 4083 ], "min": [ - 3801 + 4084 ], "stddev_samp": [ - 3802 + 4085 ], "sum": [ - 3803 + 4086 ], "var_samp": [ - 3804 + 4087 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3823 + 4106 ], "distinct": [ 5 ], "filter": [ - 3810 + 4093 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3796 + 4079 ], "distinct": [ 5 ], "filter": [ - 3810 + 4093 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3824 + 4107 ], "Y": [ - 3824 + 4107 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3822 + 4105 ], "distinct": [ 5 ], "filter": [ - 3810 + 4093 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3799 + 4082 ], "distinct": [ 5 ], "filter": [ - 3810 + 4093 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3825 + 4108 ], "Y": [ - 3825 + 4108 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3826 + 4109 ], "distinct": [ 5 ], "filter": [ - 3810 + 4093 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3827 + 4110 ], "distinct": [ 5 ], "filter": [ - 3810 + 4093 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3828 + 4111 ], "distinct": [ 5 ], "filter": [ - 3810 + 4093 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3829 + 4112 ], "distinct": [ 5 ], "filter": [ - 3810 + 4093 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3830 + 4113 ], "distinct": [ 5 ], "filter": [ - 3810 + 4093 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate_fields": { "avg": [ - 3808 + 4091 ], "count": [ 40, { "columns": [ - 3822, + 4105, "[player_season_stats_select_column!]" ], "distinct": [ @@ -86636,83 +91959,83 @@ export default { } ], "max": [ - 3814 + 4097 ], "min": [ - 3816 + 4099 ], "stddev": [ - 3832 + 4115 ], "stddev_pop": [ - 3834 + 4117 ], "stddev_samp": [ - 3836 + 4119 ], "sum": [ - 3840 + 4123 ], "var_pop": [ - 3844 + 4127 ], "var_samp": [ - 3846 + 4129 ], "variance": [ - 3848 + 4131 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_aggregate_order_by": { "avg": [ - 3809 + 4092 ], "count": [ - 3094 + 3377 ], "max": [ - 3815 + 4098 ], "min": [ - 3817 + 4100 ], "stddev": [ - 3833 + 4116 ], "stddev_pop": [ - 3835 + 4118 ], "stddev_samp": [ - 3837 + 4120 ], "sum": [ - 3841 + 4124 ], "var_pop": [ - 3845 + 4128 ], "var_samp": [ - 3847 + 4130 ], "variance": [ - 3849 + 4132 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3813 + 4096 ], "on_conflict": [ - 3819 + 4102 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_avg_fields": { @@ -86735,231 +92058,231 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_avg_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_bool_exp": { "_and": [ - 3810 + 4093 ], "_not": [ - 3810 + 4093 ], "_or": [ - 3810 + 4093 ], "assists": [ - 266 + 270 ], "deaths": [ - 266 + 270 ], "headshot_percentage": [ - 1778 + 1842 ], "headshots": [ - 266 + 270 ], "kills": [ - 266 + 270 ], "player": [ - 4056 + 4339 ], "player_steam_id": [ - 266 + 270 ], "season": [ - 4142 + 4425 ], "season_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_constraint": {}, "player_season_stats_inc_input": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_insert_input": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player": [ - 4063 + 4346 ], "player_steam_id": [ - 264 + 268 ], "season": [ - 4149 + 4432 ], "season_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_max_fields": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "season_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_max_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "season_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_min_fields": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "season_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_min_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "season_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_mutation_response": { @@ -86967,67 +92290,67 @@ export default { 40 ], "returning": [ - 3791 + 4074 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_on_conflict": { "constraint": [ - 3811 + 4094 ], "update_columns": [ - 3842 + 4125 ], "where": [ - 3810 + 4093 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "player_steam_id": [ - 3094 + 3377 ], "season": [ - 4151 + 4434 ], "season_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_pk_columns_input": { "player_steam_id": [ - 264 + 268 ], "season_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_select_column": {}, @@ -87041,28 +92364,28 @@ export default { "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, "player_season_stats_set_input": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "season_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_stddev_fields": { @@ -87085,30 +92408,30 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_stddev_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_stddev_pop_fields": { @@ -87131,30 +92454,30 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_stddev_samp_fields": { @@ -87177,128 +92500,128 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3839 + 4122 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_stream_cursor_value_input": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "season_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_sum_fields": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_sum_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3812 + 4095 ], "_set": [ - 3831 + 4114 ], "where": [ - 3810 + 4093 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_var_pop_fields": { @@ -87321,30 +92644,30 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_var_pop_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_var_samp_fields": { @@ -87367,30 +92690,30 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_var_samp_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_variance_fields": { @@ -87413,78 +92736,78 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_season_stats_variance_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_stats": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player": [ - 4052 + 4335 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_stats_aggregate": { "aggregate": [ - 3852 + 4135 ], "nodes": [ - 3850 + 4133 ], "__typename": [ - 80 + 83 ] }, "player_stats_aggregate_fields": { "avg": [ - 3853 + 4136 ], "count": [ 40, { "columns": [ - 3865, + 4148, "[player_stats_select_column!]" ], "distinct": [ @@ -87493,34 +92816,34 @@ export default { } ], "max": [ - 3858 + 4141 ], "min": [ - 3859 + 4142 ], "stddev": [ - 3867 + 4150 ], "stddev_pop": [ - 3868 + 4151 ], "stddev_samp": [ - 3869 + 4152 ], "sum": [ - 3872 + 4155 ], "var_pop": [ - 3875 + 4158 ], "var_samp": [ - 3876 + 4159 ], "variance": [ - 3877 + 4160 ], "__typename": [ - 80 + 83 ] }, "player_stats_avg_fields": { @@ -87543,138 +92866,138 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_stats_bool_exp": { "_and": [ - 3854 + 4137 ], "_not": [ - 3854 + 4137 ], "_or": [ - 3854 + 4137 ], "assists": [ - 266 + 270 ], "deaths": [ - 266 + 270 ], "headshot_percentage": [ - 1778 + 1842 ], "headshots": [ - 266 + 270 ], "kills": [ - 266 + 270 ], "player": [ - 4056 + 4339 ], "player_steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "player_stats_constraint": {}, "player_stats_inc_input": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_stats_insert_input": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player": [ - 4063 + 4346 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_stats_max_fields": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_stats_min_fields": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_stats_mutation_response": { @@ -87682,93 +93005,93 @@ export default { 40 ], "returning": [ - 3850 + 4133 ], "__typename": [ - 80 + 83 ] }, "player_stats_obj_rel_insert_input": { "data": [ - 3857 + 4140 ], "on_conflict": [ - 3862 + 4145 ], "__typename": [ - 80 + 83 ] }, "player_stats_on_conflict": { "constraint": [ - 3855 + 4138 ], "update_columns": [ - 3873 + 4156 ], "where": [ - 3854 + 4137 ], "__typename": [ - 80 + 83 ] }, "player_stats_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_stats_pk_columns_input": { "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_stats_select_column": {}, "player_stats_set_input": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_stats_stddev_fields": { @@ -87791,7 +93114,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_stats_stddev_pop_fields": { @@ -87814,7 +93137,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_stats_stddev_samp_fields": { @@ -87837,79 +93160,79 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_stats_stream_cursor_input": { "initial_value": [ - 3871 + 4154 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_stats_stream_cursor_value_input": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_stats_sum_fields": { "assists": [ - 264 + 268 ], "deaths": [ - 264 + 268 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3856 + 4139 ], "_set": [ - 3866 + 4149 ], "where": [ - 3854 + 4137 ], "__typename": [ - 80 + 83 ] }, "player_stats_var_pop_fields": { @@ -87932,7 +93255,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_stats_var_samp_fields": { @@ -87955,7 +93278,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_stats_variance_fields": { @@ -87978,66 +93301,66 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 5170 + 5458 ], "bot_steamid64": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "friended_at": [ - 4670 + 4958 ], "last_presence_state": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "player": [ - 4052 + 4335 ], "status": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3880 + 4163 ], "nodes": [ - 3878 + 4161 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3882 + 4165 ], "count": [ 40, { "columns": [ - 3897, + 4180, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -88046,42 +93369,42 @@ export default { } ], "max": [ - 3890 + 4173 ], "min": [ - 3891 + 4174 ], "stddev": [ - 3899 + 4182 ], "stddev_pop": [ - 3900 + 4183 ], "stddev_samp": [ - 3901 + 4184 ], "sum": [ - 3904 + 4187 ], "var_pop": [ - 3907 + 4190 ], "var_samp": [ - 3908 + 4191 ], "variance": [ - 3909 + 4192 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_avg_fields": { @@ -88092,57 +93415,57 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3883 + 4166 ], "_not": [ - 3883 + 4166 ], "_or": [ - 3883 + 4166 ], "bot_steam_account_id": [ - 5172 + 5460 ], "bot_steamid64": [ - 266 + 270 ], "created_at": [ - 4671 + 4959 ], "friended_at": [ - 4671 + 4959 ], "last_presence_state": [ - 1932 + 2193 ], "player": [ - 4056 + 4339 ], "status": [ - 82 + 85 ], "steam_id": [ - 266 + 270 ], "updated_at": [ - 4671 + 4959 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_constraint": {}, "player_steam_bot_friend_delete_at_path_input": { "last_presence_state": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_delete_elem_input": { @@ -88150,110 +93473,110 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_delete_key_input": { "last_presence_state": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_inc_input": { "bot_steamid64": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 5170 + 5458 ], "bot_steamid64": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "friended_at": [ - 4670 + 4958 ], "last_presence_state": [ - 1930 + 2191 ], "player": [ - 4063 + 4346 ], "status": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 5170 + 5458 ], "bot_steamid64": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "friended_at": [ - 4670 + 4958 ], "status": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 5170 + 5458 ], "bot_steamid64": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "friended_at": [ - 4670 + 4958 ], "status": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_mutation_response": { @@ -88261,102 +93584,102 @@ export default { 40 ], "returning": [ - 3878 + 4161 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3884 + 4167 ], "update_columns": [ - 3905 + 4188 ], "where": [ - 3883 + 4166 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 3094 + 3377 ], "bot_steamid64": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "friended_at": [ - 3094 + 3377 ], "last_presence_state": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "status": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_pk_columns_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 5170 + 5458 ], "bot_steamid64": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "friended_at": [ - 4670 + 4958 ], "last_presence_state": [ - 1930 + 2191 ], "status": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_stddev_fields": { @@ -88367,7 +93690,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_stddev_pop_fields": { @@ -88378,7 +93701,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_stddev_samp_fields": { @@ -88389,88 +93712,88 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3903 + 4186 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 5170 + 5458 ], "bot_steamid64": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "friended_at": [ - 4670 + 4958 ], "last_presence_state": [ - 1930 + 2191 ], "status": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_sum_fields": { "bot_steamid64": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3881 + 4164 ], "_delete_at_path": [ - 3885 + 4168 ], "_delete_elem": [ - 3886 + 4169 ], "_delete_key": [ - 3887 + 4170 ], "_inc": [ - 3888 + 4171 ], "_prepend": [ - 3896 + 4179 ], "_set": [ - 3898 + 4181 ], "where": [ - 3883 + 4166 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_var_pop_fields": { @@ -88481,7 +93804,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_var_samp_fields": { @@ -88492,7 +93815,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_steam_bot_friend_variance_fields": { @@ -88503,58 +93826,58 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth": { "auth_code": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "last_error": [ - 80 + 83 ], "last_known_share_code": [ - 80 + 83 ], "last_polled_at": [ - 4670 + 4958 ], "player": [ - 4052 + 4335 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3912 + 4195 ], "nodes": [ - 3910 + 4193 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3913 + 4196 ], "count": [ 40, { "columns": [ - 3924, + 4207, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -88563,34 +93886,34 @@ export default { } ], "max": [ - 3918 + 4201 ], "min": [ - 3919 + 4202 ], "stddev": [ - 3926 + 4209 ], "stddev_pop": [ - 3927 + 4210 ], "stddev_samp": [ - 3928 + 4211 ], "sum": [ - 3931 + 4214 ], "var_pop": [ - 3934 + 4217 ], "var_samp": [ - 3935 + 4218 ], "variance": [ - 3936 + 4219 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_avg_fields": { @@ -88598,135 +93921,135 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_bool_exp": { "_and": [ - 3914 + 4197 ], "_not": [ - 3914 + 4197 ], "_or": [ - 3914 + 4197 ], "auth_code": [ - 82 + 85 ], "created_at": [ - 4671 + 4959 ], "last_error": [ - 82 + 85 ], "last_known_share_code": [ - 82 + 85 ], "last_polled_at": [ - 4671 + 4959 ], "player": [ - 4056 + 4339 ], "steam_id": [ - 266 + 270 ], "updated_at": [ - 4671 + 4959 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_constraint": {}, "player_steam_match_auth_inc_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_insert_input": { "auth_code": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "last_error": [ - 80 + 83 ], "last_known_share_code": [ - 80 + 83 ], "last_polled_at": [ - 4670 + 4958 ], "player": [ - 4063 + 4346 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_max_fields": { "auth_code": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "last_error": [ - 80 + 83 ], "last_known_share_code": [ - 80 + 83 ], "last_polled_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_min_fields": { "auth_code": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "last_error": [ - 80 + 83 ], "last_known_share_code": [ - 80 + 83 ], "last_polled_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_mutation_response": { @@ -88734,88 +94057,88 @@ export default { 40 ], "returning": [ - 3910 + 4193 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3915 + 4198 ], "update_columns": [ - 3932 + 4215 ], "where": [ - 3914 + 4197 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_order_by": { "auth_code": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "last_error": [ - 3094 + 3377 ], "last_known_share_code": [ - 3094 + 3377 ], "last_polled_at": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "steam_id": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_pk_columns_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_select_column": {}, "player_steam_match_auth_set_input": { "auth_code": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "last_error": [ - 80 + 83 ], "last_known_share_code": [ - 80 + 83 ], "last_polled_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_stddev_fields": { @@ -88823,7 +94146,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_stddev_pop_fields": { @@ -88831,7 +94154,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_stddev_samp_fields": { @@ -88839,67 +94162,67 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3930 + 4213 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_stream_cursor_value_input": { "auth_code": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "last_error": [ - 80 + 83 ], "last_known_share_code": [ - 80 + 83 ], "last_polled_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3916 + 4199 ], "_set": [ - 3925 + 4208 ], "where": [ - 3914 + 4197 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_var_pop_fields": { @@ -88907,7 +94230,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_var_samp_fields": { @@ -88915,7 +94238,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_steam_match_auth_variance_fields": { @@ -88923,30 +94246,30 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility": { "deleted_at": [ - 4670 + 4958 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4052 + 4335 ], "player_steam_id": [ - 264 + 268 ], "round": [ 40 @@ -88955,54 +94278,54 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_aggregate": { "aggregate": [ - 3941 + 4224 ], "nodes": [ - 3937 + 4220 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3940 + 4223 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3958 + 4241 ], "distinct": [ 5 ], "filter": [ - 3946 + 4229 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_aggregate_fields": { "avg": [ - 3944 + 4227 ], "count": [ 40, { "columns": [ - 3958, + 4241, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -89011,83 +94334,83 @@ export default { } ], "max": [ - 3950 + 4233 ], "min": [ - 3952 + 4235 ], "stddev": [ - 3960 + 4243 ], "stddev_pop": [ - 3962 + 4245 ], "stddev_samp": [ - 3964 + 4247 ], "sum": [ - 3968 + 4251 ], "var_pop": [ - 3972 + 4255 ], "var_samp": [ - 3974 + 4257 ], "variance": [ - 3976 + 4259 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3945 + 4228 ], "count": [ - 3094 + 3377 ], "max": [ - 3951 + 4234 ], "min": [ - 3953 + 4236 ], "stddev": [ - 3961 + 4244 ], "stddev_pop": [ - 3963 + 4246 ], "stddev_samp": [ - 3965 + 4248 ], "sum": [ - 3969 + 4252 ], "var_pop": [ - 3973 + 4256 ], "var_samp": [ - 3975 + 4258 ], "variance": [ - 3977 + 4260 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3949 + 4232 ], "on_conflict": [ - 3955 + 4238 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_avg_fields": { @@ -89101,53 +94424,53 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "unused": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_bool_exp": { "_and": [ - 3946 + 4229 ], "_not": [ - 3946 + 4229 ], "_or": [ - 3946 + 4229 ], "deleted_at": [ - 4671 + 4959 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "player": [ - 4056 + 4339 ], "player_steam_id": [ - 266 + 270 ], "round": [ 41 @@ -89156,13 +94479,13 @@ export default { 41 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_constraint": {}, "player_unused_utility_inc_input": { "player_steam_id": [ - 264 + 268 ], "round": [ 40 @@ -89171,30 +94494,30 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_insert_input": { "deleted_at": [ - 4670 + 4958 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4063 + 4346 ], "player_steam_id": [ - 264 + 268 ], "round": [ 40 @@ -89203,21 +94526,21 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_max_fields": { "deleted_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "round": [ 40 @@ -89226,44 +94549,44 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_max_order_by": { "deleted_at": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "unused": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_min_fields": { "deleted_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "round": [ 40 @@ -89272,30 +94595,30 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_min_order_by": { "deleted_at": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "unused": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_mutation_response": { @@ -89303,82 +94626,82 @@ export default { 40 ], "returning": [ - 3937 + 4220 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_on_conflict": { "constraint": [ - 3947 + 4230 ], "update_columns": [ - 3970 + 4253 ], "where": [ - 3946 + 4229 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_order_by": { "deleted_at": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "unused": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "round": [ 40 @@ -89387,7 +94710,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_stddev_fields": { @@ -89401,21 +94724,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "unused": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_stddev_pop_fields": { @@ -89429,21 +94752,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "unused": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_stddev_samp_fields": { @@ -89457,46 +94780,46 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "unused": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3967 + 4250 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "player_steam_id": [ - 264 + 268 ], "round": [ 40 @@ -89505,12 +94828,12 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_sum_fields": { "player_steam_id": [ - 264 + 268 ], "round": [ 40 @@ -89519,36 +94842,36 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "unused": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3948 + 4231 ], "_set": [ - 3959 + 4242 ], "where": [ - 3946 + 4229 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_var_pop_fields": { @@ -89562,21 +94885,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "unused": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_var_samp_fields": { @@ -89590,21 +94913,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "unused": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_variance_fields": { @@ -89618,106 +94941,106 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "unused": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_utility": { "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "deleted_at": [ - 4670 + 4958 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4052 + 4335 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "type": [ - 1463 + 1527 ], "__typename": [ - 80 + 83 ] }, "player_utility_aggregate": { "aggregate": [ - 3982 + 4265 ], "nodes": [ - 3978 + 4261 ], "__typename": [ - 80 + 83 ] }, "player_utility_aggregate_bool_exp": { "count": [ - 3981 + 4264 ], "__typename": [ - 80 + 83 ] }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3999 + 4282 ], "distinct": [ 5 ], "filter": [ - 3987 + 4270 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_utility_aggregate_fields": { "avg": [ - 3985 + 4268 ], "count": [ 40, { "columns": [ - 3999, + 4282, "[player_utility_select_column!]" ], "distinct": [ @@ -89726,83 +95049,83 @@ export default { } ], "max": [ - 3991 + 4274 ], "min": [ - 3993 + 4276 ], "stddev": [ - 4001 + 4284 ], "stddev_pop": [ - 4003 + 4286 ], "stddev_samp": [ - 4005 + 4288 ], "sum": [ - 4009 + 4292 ], "var_pop": [ - 4013 + 4296 ], "var_samp": [ - 4015 + 4298 ], "variance": [ - 4017 + 4300 ], "__typename": [ - 80 + 83 ] }, "player_utility_aggregate_order_by": { "avg": [ - 3986 + 4269 ], "count": [ - 3094 + 3377 ], "max": [ - 3992 + 4275 ], "min": [ - 3994 + 4277 ], "stddev": [ - 4002 + 4285 ], "stddev_pop": [ - 4004 + 4287 ], "stddev_samp": [ - 4006 + 4289 ], "sum": [ - 4010 + 4293 ], "var_pop": [ - 4014 + 4297 ], "var_samp": [ - 4016 + 4299 ], "variance": [ - 4018 + 4301 ], "__typename": [ - 80 + 83 ] }, "player_utility_arr_rel_insert_input": { "data": [ - 3990 + 4273 ], "on_conflict": [ - 3996 + 4279 ], "__typename": [ - 80 + 83 ] }, "player_utility_avg_fields": { @@ -89813,219 +95136,219 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_utility_bool_exp": { "_and": [ - 3987 + 4270 ], "_not": [ - 3987 + 4270 ], "_or": [ - 3987 + 4270 ], "attacker_location_coordinates": [ - 82 + 85 ], "attacker_steam_id": [ - 266 + 270 ], "deleted_at": [ - 4671 + 4959 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "player": [ - 4056 + 4339 ], "round": [ 41 ], "time": [ - 4671 + 4959 ], "type": [ - 1464 + 1528 ], "__typename": [ - 80 + 83 ] }, "player_utility_constraint": {}, "player_utility_inc_input": { "attacker_steam_id": [ - 264 + 268 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_utility_insert_input": { "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "deleted_at": [ - 4670 + 4958 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4063 + 4346 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "type": [ - 1463 + 1527 ], "__typename": [ - 80 + 83 ] }, "player_utility_max_fields": { "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "deleted_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_utility_min_fields": { "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "deleted_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_utility_mutation_response": { @@ -90033,106 +95356,106 @@ export default { 40 ], "returning": [ - 3978 + 4261 ], "__typename": [ - 80 + 83 ] }, "player_utility_on_conflict": { "constraint": [ - 3988 + 4271 ], "update_columns": [ - 4011 + 4294 ], "where": [ - 3987 + 4270 ], "__typename": [ - 80 + 83 ] }, "player_utility_order_by": { "attacker_location_coordinates": [ - 3094 + 3377 ], "attacker_steam_id": [ - 3094 + 3377 ], "deleted_at": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "round": [ - 3094 + 3377 ], "time": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_utility_pk_columns_input": { "attacker_steam_id": [ - 264 + 268 ], "match_map_id": [ - 5170 + 5458 ], "time": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "player_utility_select_column": {}, "player_utility_set_input": { "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "deleted_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "type": [ - 1463 + 1527 ], "__typename": [ - 80 + 83 ] }, "player_utility_stddev_fields": { @@ -90143,18 +95466,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_utility_stddev_pop_fields": { @@ -90165,18 +95488,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_utility_stddev_samp_fields": { @@ -90187,95 +95510,95 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_utility_stream_cursor_input": { "initial_value": [ - 4008 + 4291 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_utility_stream_cursor_value_input": { "attacker_location_coordinates": [ - 80 + 83 ], "attacker_steam_id": [ - 264 + 268 ], "deleted_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "time": [ - 4670 + 4958 ], "type": [ - 1463 + 1527 ], "__typename": [ - 80 + 83 ] }, "player_utility_sum_fields": { "attacker_steam_id": [ - 264 + 268 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3989 + 4272 ], "_set": [ - 4000 + 4283 ], "where": [ - 3987 + 4270 ], "__typename": [ - 80 + 83 ] }, "player_utility_var_pop_fields": { @@ -90286,18 +95609,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_utility_var_samp_fields": { @@ -90308,18 +95631,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_utility_variance_fields": { @@ -90330,18 +95653,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v": { @@ -90358,7 +95681,7 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "shots": [ 40 @@ -90367,60 +95690,60 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "weapon_class": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 4023 + 4306 ], "nodes": [ - 4019 + 4302 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 4022 + 4305 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 4035 + 4318 ], "distinct": [ 5 ], "filter": [ - 4028 + 4311 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 4026 + 4309 ], "count": [ 40, { "columns": [ - 4035, + 4318, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -90429,80 +95752,80 @@ export default { } ], "max": [ - 4030 + 4313 ], "min": [ - 4032 + 4315 ], "stddev": [ - 4036 + 4319 ], "stddev_pop": [ - 4038 + 4321 ], "stddev_samp": [ - 4040 + 4323 ], "sum": [ - 4044 + 4327 ], "var_pop": [ - 4046 + 4329 ], "var_samp": [ - 4048 + 4331 ], "variance": [ - 4050 + 4333 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 4027 + 4310 ], "count": [ - 3094 + 3377 ], "max": [ - 4031 + 4314 ], "min": [ - 4033 + 4316 ], "stddev": [ - 4037 + 4320 ], "stddev_pop": [ - 4039 + 4322 ], "stddev_samp": [ - 4041 + 4324 ], "sum": [ - 4045 + 4328 ], "var_pop": [ - 4047 + 4330 ], "var_samp": [ - 4049 + 4332 ], "variance": [ - 4051 + 4334 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 4029 + 4312 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_avg_fields": { @@ -90528,44 +95851,44 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_bool_exp": { "_and": [ - 4028 + 4311 ], "_not": [ - 4028 + 4311 ], "_or": [ - 4028 + 4311 ], "first_bullet_hits": [ 41 @@ -90580,7 +95903,7 @@ export default { 41 ], "match_id": [ - 5172 + 5460 ], "shots": [ 41 @@ -90589,13 +95912,13 @@ export default { 41 ], "steam_id": [ - 266 + 270 ], "weapon_class": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_insert_input": { @@ -90612,7 +95935,7 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "shots": [ 40 @@ -90621,13 +95944,13 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "weapon_class": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_max_fields": { @@ -90644,7 +95967,7 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "shots": [ 40 @@ -90653,45 +95976,45 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "weapon_class": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "weapon_class": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_min_fields": { @@ -90708,7 +96031,7 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "shots": [ 40 @@ -90717,77 +96040,77 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "weapon_class": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "weapon_class": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "weapon_class": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_select_column": {}, @@ -90814,33 +96137,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_stddev_pop_fields": { @@ -90866,33 +96189,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_stddev_samp_fields": { @@ -90918,44 +96241,44 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 4043 + 4326 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_stream_cursor_value_input": { @@ -90972,7 +96295,7 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "shots": [ 40 @@ -90981,13 +96304,13 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "weapon_class": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_sum_fields": { @@ -91010,36 +96333,36 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_var_pop_fields": { @@ -91065,33 +96388,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_var_samp_fields": { @@ -91117,33 +96440,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_variance_fields": { @@ -91169,41 +96492,41 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 3094 + 3377 ], "first_bullet_shots": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "hits_spotted": [ - 3094 + 3377 ], "shots": [ - 3094 + 3377 ], "shots_spotted": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "players": { "abandoned_matches": [ - 126, + 130, { "distinct_on": [ - 147, + 151, "[abandoned_matches_select_column!]" ], "limit": [ @@ -91213,19 +96536,19 @@ export default { 40 ], "order_by": [ - 145, + 149, "[abandoned_matches_order_by!]" ], "where": [ - 135 + 139 ] } ], "abandoned_matches_aggregate": [ - 127, + 131, { "distinct_on": [ - 147, + 151, "[abandoned_matches_select_column!]" ], "limit": [ @@ -91235,19 +96558,19 @@ export default { 40 ], "order_by": [ - 145, + 149, "[abandoned_matches_order_by!]" ], "where": [ - 135 + 139 ] } ], "aim_weapon_stats": [ - 3191, + 3474, { "distinct_on": [ - 3212, + 3495, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -91257,19 +96580,19 @@ export default { 40 ], "order_by": [ - 3210, + 3493, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3200 + 3483 ] } ], "aim_weapon_stats_aggregate": [ - 3192, + 3475, { "distinct_on": [ - 3212, + 3495, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -91279,19 +96602,19 @@ export default { 40 ], "order_by": [ - 3210, + 3493, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3200 + 3483 ] } ], "assists": [ - 3232, + 3515, { "distinct_on": [ - 3255, + 3538, "[player_assists_select_column!]" ], "limit": [ @@ -91301,19 +96624,19 @@ export default { 40 ], "order_by": [ - 3253, + 3536, "[player_assists_order_by!]" ], "where": [ - 3243 + 3526 ] } ], "assists_aggregate": [ - 3233, + 3516, { "distinct_on": [ - 3255, + 3538, "[player_assists_select_column!]" ], "limit": [ @@ -91323,19 +96646,19 @@ export default { 40 ], "order_by": [ - 3253, + 3536, "[player_assists_order_by!]" ], "where": [ - 3243 + 3526 ] } ], "assited_by_players": [ - 3232, + 3515, { "distinct_on": [ - 3255, + 3538, "[player_assists_select_column!]" ], "limit": [ @@ -91345,19 +96668,19 @@ export default { 40 ], "order_by": [ - 3253, + 3536, "[player_assists_order_by!]" ], "where": [ - 3243 + 3526 ] } ], "assited_by_players_aggregate": [ - 3233, + 3516, { "distinct_on": [ - 3255, + 3538, "[player_assists_select_column!]" ], "limit": [ @@ -91367,22 +96690,22 @@ export default { 40 ], "order_by": [ - 3253, + 3536, "[player_assists_order_by!]" ], "where": [ - 3243 + 3526 ] } ], "avatar_url": [ - 80 + 83 ], "awards": [ - 195, + 199, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -91392,19 +96715,19 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "awards_aggregate": [ - 196, + 200, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -91414,22 +96737,22 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "banned_until": [ - 4670 + 4958 ], "coach_lineups": [ - 2554, + 2815, { "distinct_on": [ - 2576, + 2837, "[match_lineups_select_column!]" ], "limit": [ @@ -91439,19 +96762,19 @@ export default { 40 ], "order_by": [ - 2574, + 2835, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2824 ] } ], "coach_lineups_aggregate": [ - 2555, + 2816, { "distinct_on": [ - 2576, + 2837, "[match_lineups_select_column!]" ], "limit": [ @@ -91461,31 +96784,31 @@ export default { 40 ], "order_by": [ - 2574, + 2835, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2824 ] } ], "country": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "current_lobby_id": [ - 5170 + 5458 ], "custom_avatar_url": [ - 80 + 83 ], "damage_dealt": [ - 3295, + 3578, { "distinct_on": [ - 3316, + 3599, "[player_damages_select_column!]" ], "limit": [ @@ -91495,19 +96818,19 @@ export default { 40 ], "order_by": [ - 3314, + 3597, "[player_damages_order_by!]" ], "where": [ - 3304 + 3587 ] } ], "damage_dealt_aggregate": [ - 3296, + 3579, { "distinct_on": [ - 3316, + 3599, "[player_damages_select_column!]" ], "limit": [ @@ -91517,19 +96840,19 @@ export default { 40 ], "order_by": [ - 3314, + 3597, "[player_damages_order_by!]" ], "where": [ - 3304 + 3587 ] } ], "damage_taken": [ - 3295, + 3578, { "distinct_on": [ - 3316, + 3599, "[player_damages_select_column!]" ], "limit": [ @@ -91539,19 +96862,19 @@ export default { 40 ], "order_by": [ - 3314, + 3597, "[player_damages_order_by!]" ], "where": [ - 3304 + 3587 ] } ], "damage_taken_aggregate": [ - 3296, + 3579, { "distinct_on": [ - 3316, + 3599, "[player_damages_select_column!]" ], "limit": [ @@ -91561,11 +96884,11 @@ export default { 40 ], "order_by": [ - 3314, + 3597, "[player_damages_order_by!]" ], "where": [ - 3304 + 3587 ] } ], @@ -91573,10 +96896,10 @@ export default { 40 ], "deaths": [ - 3449, + 3732, { "distinct_on": [ - 3513, + 3796, "[player_kills_select_column!]" ], "limit": [ @@ -91586,19 +96909,19 @@ export default { 40 ], "order_by": [ - 3511, + 3794, "[player_kills_order_by!]" ], "where": [ - 3460 + 3743 ] } ], "deaths_aggregate": [ - 3450, + 3733, { "distinct_on": [ - 3513, + 3796, "[player_kills_select_column!]" ], "limit": [ @@ -91608,22 +96931,22 @@ export default { 40 ], "order_by": [ - 3511, + 3794, "[player_kills_order_by!]" ], "where": [ - 3460 + 3743 ] } ], "discord_id": [ - 80 + 83 ], "draft_game_players": [ - 506, + 510, { "distinct_on": [ - 529, + 533, "[draft_game_players_select_column!]" ], "limit": [ @@ -91633,19 +96956,19 @@ export default { 40 ], "order_by": [ - 527, + 531, "[draft_game_players_order_by!]" ], "where": [ - 517 + 521 ] } ], "draft_game_players_aggregate": [ - 507, + 511, { "distinct_on": [ - 529, + 533, "[draft_game_players_select_column!]" ], "limit": [ @@ -91655,27 +96978,27 @@ export default { 40 ], "order_by": [ - 527, + 531, "[draft_game_players_order_by!]" ], "where": [ - 517 + 521 ] } ], "elo": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "elo_history": [ - 5547, + 5835, { "distinct_on": [ - 5573, + 5861, "[v_player_elo_select_column!]" ], "limit": [ @@ -91685,19 +97008,19 @@ export default { 40 ], "order_by": [ - 5572, + 5860, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5854 ] } ], "elo_history_aggregate": [ - 5548, + 5836, { "distinct_on": [ - 5573, + 5861, "[v_player_elo_select_column!]" ], "limit": [ @@ -91707,11 +97030,11 @@ export default { 40 ], "order_by": [ - 5572, + 5860, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5854 ] } ], @@ -91719,16 +97042,16 @@ export default { 40 ], "faceit_nickname": [ - 80 + 83 ], "faceit_player_id": [ - 80 + 83 ], "faceit_rank_history": [ - 3363, + 3646, { "distinct_on": [ - 3384, + 3667, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -91738,19 +97061,19 @@ export default { 40 ], "order_by": [ - 3382, + 3665, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3372 + 3655 ] } ], "faceit_rank_history_aggregate": [ - 3364, + 3647, { "distinct_on": [ - 3384, + 3667, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -91760,11 +97083,11 @@ export default { 40 ], "order_by": [ - 3382, + 3665, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3372 + 3655 ] } ], @@ -91772,16 +97095,16 @@ export default { 40 ], "faceit_updated_at": [ - 4670 + 4958 ], "faceit_url": [ - 80 + 83 ], "flashed_by_players": [ - 3404, + 3687, { "distinct_on": [ - 3427, + 3710, "[player_flashes_select_column!]" ], "limit": [ @@ -91791,19 +97114,19 @@ export default { 40 ], "order_by": [ - 3425, + 3708, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3698 ] } ], "flashed_by_players_aggregate": [ - 3405, + 3688, { "distinct_on": [ - 3427, + 3710, "[player_flashes_select_column!]" ], "limit": [ @@ -91813,19 +97136,19 @@ export default { 40 ], "order_by": [ - 3425, + 3708, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3698 ] } ], "flashed_players": [ - 3404, + 3687, { "distinct_on": [ - 3427, + 3710, "[player_flashes_select_column!]" ], "limit": [ @@ -91835,19 +97158,19 @@ export default { 40 ], "order_by": [ - 3425, + 3708, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3698 ] } ], "flashed_players_aggregate": [ - 3405, + 3688, { "distinct_on": [ - 3427, + 3710, "[player_flashes_select_column!]" ], "limit": [ @@ -91857,19 +97180,19 @@ export default { 40 ], "order_by": [ - 3425, + 3708, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3698 ] } ], "friends": [ - 2942, + 3225, { "distinct_on": [ - 2967, + 3250, "[my_friends_select_column!]" ], "limit": [ @@ -91879,19 +97202,19 @@ export default { 40 ], "order_by": [ - 2965, + 3248, "[my_friends_order_by!]" ], "where": [ - 2954 + 3237 ] } ], "friends_aggregate": [ - 2943, + 3226, { "distinct_on": [ - 2967, + 3250, "[my_friends_select_column!]" ], "limit": [ @@ -91901,11 +97224,11 @@ export default { 40 ], "order_by": [ - 2965, + 3248, "[my_friends_order_by!]" ], "where": [ - 2954 + 3237 ] } ], @@ -91913,10 +97236,10 @@ export default { 40 ], "invited_players": [ - 4338, + 4626, { "distinct_on": [ - 4359, + 4647, "[team_invites_select_column!]" ], "limit": [ @@ -91926,19 +97249,19 @@ export default { 40 ], "order_by": [ - 4357, + 4645, "[team_invites_order_by!]" ], "where": [ - 4347 + 4635 ] } ], "invited_players_aggregate": [ - 4339, + 4627, { "distinct_on": [ - 4359, + 4647, "[team_invites_select_column!]" ], "limit": [ @@ -91948,11 +97271,11 @@ export default { 40 ], "order_by": [ - 4357, + 4645, "[team_invites_order_by!]" ], "where": [ - 4347 + 4635 ] } ], @@ -91981,10 +97304,10 @@ export default { 5 ], "kills": [ - 3449, + 3732, { "distinct_on": [ - 3513, + 3796, "[player_kills_select_column!]" ], "limit": [ @@ -91994,19 +97317,19 @@ export default { 40 ], "order_by": [ - 3511, + 3794, "[player_kills_order_by!]" ], "where": [ - 3460 + 3743 ] } ], "kills_aggregate": [ - 3450, + 3733, { "distinct_on": [ - 3513, + 3796, "[player_kills_select_column!]" ], "limit": [ @@ -92016,19 +97339,19 @@ export default { 40 ], "order_by": [ - 3511, + 3794, "[player_kills_order_by!]" ], "where": [ - 3460 + 3743 ] } ], "kills_by_weapons": [ - 3461, + 3744, { "distinct_on": [ - 3482, + 3765, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -92038,19 +97361,19 @@ export default { 40 ], "order_by": [ - 3480, + 3763, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3470 + 3753 ] } ], "kills_by_weapons_aggregate": [ - 3462, + 3745, { "distinct_on": [ - 3482, + 3765, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -92060,28 +97383,28 @@ export default { 40 ], "order_by": [ - 3480, + 3763, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3470 + 3753 ] } ], "language": [ - 80 + 83 ], "last_read_news_at": [ - 4670 + 4958 ], "last_sign_in_at": [ - 4670 + 4958 ], "lobby_players": [ - 2328, + 2589, { "distinct_on": [ - 2351, + 2612, "[lobby_players_select_column!]" ], "limit": [ @@ -92091,19 +97414,19 @@ export default { 40 ], "order_by": [ - 2349, + 2610, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2600 ] } ], "lobby_players_aggregate": [ - 2329, + 2590, { "distinct_on": [ - 2351, + 2612, "[lobby_players_select_column!]" ], "limit": [ @@ -92113,11 +97436,11 @@ export default { 40 ], "order_by": [ - 2349, + 2610, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2600 ] } ], @@ -92134,10 +97457,10 @@ export default { 40 ], "match_map_hltv": [ - 5652, + 5940, { "distinct_on": [ - 5670, + 5958, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -92147,19 +97470,19 @@ export default { 40 ], "order_by": [ - 5669, + 5957, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5661 + 5949 ] } ], "match_map_hltv_aggregate": [ - 5653, + 5941, { "distinct_on": [ - 5670, + 5958, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -92169,19 +97492,19 @@ export default { 40 ], "order_by": [ - 5669, + 5957, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5661 + 5949 ] } ], "match_map_stats": [ - 3558, + 3841, { "distinct_on": [ - 3579, + 3862, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -92191,19 +97514,19 @@ export default { 40 ], "order_by": [ - 3577, + 3860, "[player_match_map_stats_order_by!]" ], "where": [ - 3567 + 3850 ] } ], "match_map_stats_aggregate": [ - 3559, + 3842, { "distinct_on": [ - 3579, + 3862, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -92213,19 +97536,19 @@ export default { 40 ], "order_by": [ - 3577, + 3860, "[player_match_map_stats_order_by!]" ], "where": [ - 3567 + 3850 ] } ], "match_stats": [ - 3617, + 3900, { "distinct_on": [ - 3633, + 3916, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -92235,19 +97558,19 @@ export default { 40 ], "order_by": [ - 3632, + 3915, "[player_match_stats_v_order_by!]" ], "where": [ - 3626 + 3909 ] } ], "match_stats_aggregate": [ - 3618, + 3901, { "distinct_on": [ - 3633, + 3916, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -92257,19 +97580,19 @@ export default { 40 ], "order_by": [ - 3632, + 3915, "[player_match_stats_v_order_by!]" ], "where": [ - 3626 + 3909 ] } ], "matches": [ - 2882, + 3161, { "distinct_on": [ - 2904, + 3185, "[matches_select_column!]" ], "limit": [ @@ -92279,22 +97602,22 @@ export default { 40 ], "order_by": [ - 2902, + 3183, "[matches_order_by!]" ], "where": [ - 2891 + 3172 ] } ], "matchmaking_cooldown": [ - 4670 + 4958 ], "multi_kills": [ - 5743, + 6031, { "distinct_on": [ - 5759, + 6047, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -92304,19 +97627,19 @@ export default { 40 ], "order_by": [ - 5758, + 6046, "[v_player_multi_kills_order_by!]" ], "where": [ - 5752 + 6040 ] } ], "multi_kills_aggregate": [ - 5744, + 6032, { "distinct_on": [ - 5759, + 6047, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -92326,28 +97649,28 @@ export default { 40 ], "order_by": [ - 5758, + 6046, "[v_player_multi_kills_order_by!]" ], "where": [ - 5752 + 6040 ] } ], "name": [ - 80 + 83 ], "name_registered": [ 5 ], "notification_timezone": [ - 80 + 83 ], "notifications": [ - 3042, + 3325, { "distinct_on": [ - 3070, + 3353, "[notifications_select_column!]" ], "limit": [ @@ -92357,19 +97680,19 @@ export default { 40 ], "order_by": [ - 3067, + 3350, "[notifications_order_by!]" ], "where": [ - 3054 + 3337 ] } ], "notifications_aggregate": [ - 3043, + 3326, { "distinct_on": [ - 3070, + 3353, "[notifications_select_column!]" ], "limit": [ @@ -92379,19 +97702,19 @@ export default { 40 ], "order_by": [ - 3067, + 3350, "[notifications_order_by!]" ], "where": [ - 3054 + 3337 ] } ], "objectives": [ - 3650, + 3933, { "distinct_on": [ - 3671, + 3954, "[player_objectives_select_column!]" ], "limit": [ @@ -92401,19 +97724,19 @@ export default { 40 ], "order_by": [ - 3669, + 3952, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3942 ] } ], "objectives_aggregate": [ - 3651, + 3934, { "distinct_on": [ - 3671, + 3954, "[player_objectives_select_column!]" ], "limit": [ @@ -92423,19 +97746,19 @@ export default { 40 ], "order_by": [ - 3669, + 3952, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3942 ] } ], "owned_teams": [ - 4621, + 4909, { "distinct_on": [ - 4645, + 4933, "[teams_select_column!]" ], "limit": [ @@ -92445,19 +97768,19 @@ export default { 40 ], "order_by": [ - 4643, + 4931, "[teams_order_by!]" ], "where": [ - 4632 + 4920 ] } ], "owned_teams_aggregate": [ - 4622, + 4910, { "distinct_on": [ - 4645, + 4933, "[teams_select_column!]" ], "limit": [ @@ -92467,27 +97790,27 @@ export default { 40 ], "order_by": [ - 4643, + 4931, "[teams_order_by!]" ], "where": [ - 4632 + 4920 ] } ], "peak_elo": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], "pending_match_imports": [ - 3095, + 3378, { "distinct_on": [ - 3116, + 3399, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -92497,19 +97820,19 @@ export default { 40 ], "order_by": [ - 3114, + 3397, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3387 ] } ], "pending_match_imports_aggregate": [ - 3096, + 3379, { "distinct_on": [ - 3116, + 3399, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -92519,19 +97842,19 @@ export default { 40 ], "order_by": [ - 3114, + 3397, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3387 ] } ], "player_lineup": [ - 2509, + 2770, { "distinct_on": [ - 2532, + 2793, "[match_lineup_players_select_column!]" ], "limit": [ @@ -92541,19 +97864,19 @@ export default { 40 ], "order_by": [ - 2530, + 2791, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2781 ] } ], "player_lineup_aggregate": [ - 2510, + 2771, { "distinct_on": [ - 2532, + 2793, "[match_lineup_players_select_column!]" ], "limit": [ @@ -92563,19 +97886,19 @@ export default { 40 ], "order_by": [ - 2530, + 2791, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2781 ] } ], "player_unused_utilities": [ - 3937, + 4220, { "distinct_on": [ - 3958, + 4241, "[player_unused_utility_select_column!]" ], "limit": [ @@ -92585,19 +97908,19 @@ export default { 40 ], "order_by": [ - 3956, + 4239, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4229 ] } ], "player_unused_utilities_aggregate": [ - 3938, + 4221, { "distinct_on": [ - 3958, + 4241, "[player_unused_utility_select_column!]" ], "limit": [ @@ -92607,11 +97930,11 @@ export default { 40 ], "order_by": [ - 3956, + 4239, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4229 ] } ], @@ -92619,10 +97942,10 @@ export default { 40 ], "premier_rank_history": [ - 3709, + 3992, { "distinct_on": [ - 3730, + 4013, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -92632,19 +97955,19 @@ export default { 40 ], "order_by": [ - 3728, + 4011, "[player_premier_rank_history_order_by!]" ], "where": [ - 3718 + 4001 ] } ], "premier_rank_history_aggregate": [ - 3710, + 3993, { "distinct_on": [ - 3730, + 4013, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -92654,37 +97977,37 @@ export default { 40 ], "order_by": [ - 3728, + 4011, "[player_premier_rank_history_order_by!]" ], "where": [ - 3718 + 4001 ] } ], "premier_rank_updated_at": [ - 4670 + 4958 ], "profile_url": [ - 80 + 83 ], "quiet_hours_end": [ - 4667 + 4955 ], "quiet_hours_start": [ - 4667 + 4955 ], "role": [ - 1178 + 1242 ], "roster_image_url": [ - 80 + 83 ], "sanctions": [ - 3750, + 4033, { "distinct_on": [ - 3771, + 4054, "[player_sanctions_select_column!]" ], "limit": [ @@ -92694,19 +98017,19 @@ export default { 40 ], "order_by": [ - 3769, + 4052, "[player_sanctions_order_by!]" ], "where": [ - 3759 + 4042 ] } ], "sanctions_aggregate": [ - 3751, + 4034, { "distinct_on": [ - 3771, + 4054, "[player_sanctions_select_column!]" ], "limit": [ @@ -92716,19 +98039,19 @@ export default { 40 ], "order_by": [ - 3769, + 4052, "[player_sanctions_order_by!]" ], "where": [ - 3759 + 4042 ] } ], "season_stats": [ - 3791, + 4074, { "distinct_on": [ - 3822, + 4105, "[player_season_stats_select_column!]" ], "limit": [ @@ -92738,19 +98061,19 @@ export default { 40 ], "order_by": [ - 3820, + 4103, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4093 ] } ], "season_stats_aggregate": [ - 3792, + 4075, { "distinct_on": [ - 3822, + 4105, "[player_season_stats_select_column!]" ], "limit": [ @@ -92760,11 +98083,11 @@ export default { 40 ], "order_by": [ - 3820, + 4103, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4093 ] } ], @@ -92772,19 +98095,19 @@ export default { 5 ], "stats": [ - 3850 + 4133 ], "steam_bans_checked_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "team_invites": [ - 4338, + 4626, { "distinct_on": [ - 4359, + 4647, "[team_invites_select_column!]" ], "limit": [ @@ -92794,19 +98117,19 @@ export default { 40 ], "order_by": [ - 4357, + 4645, "[team_invites_order_by!]" ], "where": [ - 4347 + 4635 ] } ], "team_invites_aggregate": [ - 4339, + 4627, { "distinct_on": [ - 4359, + 4647, "[team_invites_select_column!]" ], "limit": [ @@ -92816,19 +98139,19 @@ export default { 40 ], "order_by": [ - 4357, + 4645, "[team_invites_order_by!]" ], "where": [ - 4347 + 4635 ] } ], "team_members": [ - 4379, + 4667, { "distinct_on": [ - 4402, + 4690, "[team_roster_select_column!]" ], "limit": [ @@ -92838,19 +98161,19 @@ export default { 40 ], "order_by": [ - 4400, + 4688, "[team_roster_order_by!]" ], "where": [ - 4390 + 4678 ] } ], "team_members_aggregate": [ - 4380, + 4668, { "distinct_on": [ - 4402, + 4690, "[team_roster_select_column!]" ], "limit": [ @@ -92860,19 +98183,19 @@ export default { 40 ], "order_by": [ - 4400, + 4688, "[team_roster_order_by!]" ], "where": [ - 4390 + 4678 ] } ], "teams": [ - 4621, + 4909, { "distinct_on": [ - 4645, + 4933, "[teams_select_column!]" ], "limit": [ @@ -92882,11 +98205,11 @@ export default { 40 ], "order_by": [ - 4643, + 4931, "[teams_order_by!]" ], "where": [ - 4632 + 4920 ] } ], @@ -92894,10 +98217,10 @@ export default { 40 ], "tournament_organizers": [ - 4808, + 5096, { "distinct_on": [ - 4829, + 5117, "[tournament_organizers_select_column!]" ], "limit": [ @@ -92907,19 +98230,19 @@ export default { 40 ], "order_by": [ - 4827, + 5115, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5105 ] } ], "tournament_organizers_aggregate": [ - 4809, + 5097, { "distinct_on": [ - 4829, + 5117, "[tournament_organizers_select_column!]" ], "limit": [ @@ -92929,19 +98252,19 @@ export default { 40 ], "order_by": [ - 4827, + 5115, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5105 ] } ], "tournament_rosters": [ - 5023, + 5311, { "distinct_on": [ - 5044, + 5332, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -92951,19 +98274,19 @@ export default { 40 ], "order_by": [ - 5042, + 5330, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5320 ] } ], "tournament_rosters_aggregate": [ - 5024, + 5312, { "distinct_on": [ - 5044, + 5332, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -92973,19 +98296,19 @@ export default { 40 ], "order_by": [ - 5042, + 5330, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5320 ] } ], "tournaments": [ - 5106, + 5394, { "distinct_on": [ - 5140, + 5428, "[tournaments_select_column!]" ], "limit": [ @@ -92995,19 +98318,19 @@ export default { 40 ], "order_by": [ - 5138, + 5426, "[tournaments_order_by!]" ], "where": [ - 5127 + 5415 ] } ], "tournaments_aggregate": [ - 5107, + 5395, { "distinct_on": [ - 5140, + 5428, "[tournaments_select_column!]" ], "limit": [ @@ -93017,19 +98340,19 @@ export default { 40 ], "order_by": [ - 5138, + 5426, "[tournaments_order_by!]" ], "where": [ - 5127 + 5415 ] } ], "utility_thrown": [ - 3978, + 4261, { "distinct_on": [ - 3999, + 4282, "[player_utility_select_column!]" ], "limit": [ @@ -93039,19 +98362,19 @@ export default { 40 ], "order_by": [ - 3997, + 4280, "[player_utility_order_by!]" ], "where": [ - 3987 + 4270 ] } ], "utility_thrown_aggregate": [ - 3979, + 4262, { "distinct_on": [ - 3999, + 4282, "[player_utility_select_column!]" ], "limit": [ @@ -93061,11 +98384,11 @@ export default { 40 ], "order_by": [ - 3997, + 4280, "[player_utility_order_by!]" ], "where": [ - 3987 + 4270 ] } ], @@ -93076,10 +98399,10 @@ export default { 5 ], "weapon_stats": [ - 4019, + 4302, { "distinct_on": [ - 4035, + 4318, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -93089,19 +98412,19 @@ export default { 40 ], "order_by": [ - 4034, + 4317, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4028 + 4311 ] } ], "weapon_stats_aggregate": [ - 4020, + 4303, { "distinct_on": [ - 4035, + 4318, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -93111,11 +98434,11 @@ export default { 40 ], "order_by": [ - 4034, + 4317, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4028 + 4311 ] } ], @@ -93132,29 +98455,29 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "players_aggregate": { "aggregate": [ - 4054 + 4337 ], "nodes": [ - 4052 + 4335 ], "__typename": [ - 80 + 83 ] }, "players_aggregate_fields": { "avg": [ - 4055 + 4338 ], "count": [ 40, { "columns": [ - 4067, + 4350, "[players_select_column!]" ], "distinct": [ @@ -93163,34 +98486,34 @@ export default { } ], "max": [ - 4060 + 4343 ], "min": [ - 4061 + 4344 ], "stddev": [ - 4069 + 4352 ], "stddev_pop": [ - 4070 + 4353 ], "stddev_samp": [ - 4071 + 4354 ], "sum": [ - 4074 + 4357 ], "var_pop": [ - 4077 + 4360 ], "var_samp": [ - 4078 + 4361 ], "variance": [ - 4079 + 4362 ], "__typename": [ - 80 + 83 ] }, "players_avg_fields": { @@ -93243,162 +98566,162 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "players_bool_exp": { "_and": [ - 4056 + 4339 ], "_not": [ - 4056 + 4339 ], "_or": [ - 4056 + 4339 ], "abandoned_matches": [ - 135 + 139 ], "abandoned_matches_aggregate": [ - 128 + 132 ], "aim_weapon_stats": [ - 3200 + 3483 ], "aim_weapon_stats_aggregate": [ - 3193 + 3476 ], "assists": [ - 3243 + 3526 ], "assists_aggregate": [ - 3234 + 3517 ], "assited_by_players": [ - 3243 + 3526 ], "assited_by_players_aggregate": [ - 3234 + 3517 ], "avatar_url": [ - 82 + 85 ], "awards": [ - 204 + 208 ], "awards_aggregate": [ - 197 + 201 ], "banned_until": [ - 4671 + 4959 ], "coach_lineups": [ - 2563 + 2824 ], "coach_lineups_aggregate": [ - 2556 + 2817 ], "country": [ - 82 + 85 ], "created_at": [ - 4671 + 4959 ], "current_lobby_id": [ - 5172 + 5460 ], "custom_avatar_url": [ - 82 + 85 ], "damage_dealt": [ - 3304 + 3587 ], "damage_dealt_aggregate": [ - 3297 + 3580 ], "damage_taken": [ - 3304 + 3587 ], "damage_taken_aggregate": [ - 3297 + 3580 ], "days_since_last_ban": [ 41 ], "deaths": [ - 3460 + 3743 ], "deaths_aggregate": [ - 3451 + 3734 ], "discord_id": [ - 82 + 85 ], "draft_game_players": [ - 517 + 521 ], "draft_game_players_aggregate": [ - 508 + 512 ], "elo": [ - 1932 + 2193 ], "elo_history": [ - 5566 + 5854 ], "elo_history_aggregate": [ - 5549 + 5837 ], "faceit_elo": [ 41 ], "faceit_nickname": [ - 82 + 85 ], "faceit_player_id": [ - 82 + 85 ], "faceit_rank_history": [ - 3372 + 3655 ], "faceit_rank_history_aggregate": [ - 3365 + 3648 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 4671 + 4959 ], "faceit_url": [ - 82 + 85 ], "flashed_by_players": [ - 3415 + 3698 ], "flashed_by_players_aggregate": [ - 3406 + 3689 ], "flashed_players": [ - 3415 + 3698 ], "flashed_players_aggregate": [ - 3406 + 3689 ], "friends": [ - 2954 + 3237 ], "friends_aggregate": [ - 2944 + 3227 ], "game_ban_count": [ 41 ], "invited_players": [ - 4347 + 4635 ], "invited_players_aggregate": [ - 4340 + 4628 ], "is_admin_sanctioned": [ 6 @@ -93425,31 +98748,31 @@ export default { 6 ], "kills": [ - 3460 + 3743 ], "kills_aggregate": [ - 3451 + 3734 ], "kills_by_weapons": [ - 3470 + 3753 ], "kills_by_weapons_aggregate": [ - 3463 + 3746 ], "language": [ - 82 + 85 ], "last_read_news_at": [ - 4671 + 4959 ], "last_sign_in_at": [ - 4671 + 4959 ], "lobby_players": [ - 2339 + 2600 ], "lobby_players_aggregate": [ - 2330 + 2591 ], "losses": [ 41 @@ -93464,175 +98787,175 @@ export default { 41 ], "match_map_hltv": [ - 5661 + 5949 ], "match_map_hltv_aggregate": [ - 5654 + 5942 ], "match_map_stats": [ - 3567 + 3850 ], "match_map_stats_aggregate": [ - 3560 + 3843 ], "match_stats": [ - 3626 + 3909 ], "match_stats_aggregate": [ - 3619 + 3902 ], "matches": [ - 2891 + 3172 ], "matchmaking_cooldown": [ - 4671 + 4959 ], "multi_kills": [ - 5752 + 6040 ], "multi_kills_aggregate": [ - 5745 + 6033 ], "name": [ - 82 + 85 ], "name_registered": [ 6 ], "notification_timezone": [ - 82 + 85 ], "notifications": [ - 3054 + 3337 ], "notifications_aggregate": [ - 3044 + 3327 ], "objectives": [ - 3659 + 3942 ], "objectives_aggregate": [ - 3652 + 3935 ], "owned_teams": [ - 4632 + 4920 ], "owned_teams_aggregate": [ - 4623 + 4911 ], "peak_elo": [ - 1932 + 2193 ], "pending_match_imports": [ - 3104 + 3387 ], "pending_match_imports_aggregate": [ - 3097 + 3380 ], "player_lineup": [ - 2520 + 2781 ], "player_lineup_aggregate": [ - 2511 + 2772 ], "player_unused_utilities": [ - 3946 + 4229 ], "player_unused_utilities_aggregate": [ - 3939 + 4222 ], "premier_rank": [ 41 ], "premier_rank_history": [ - 3718 + 4001 ], "premier_rank_history_aggregate": [ - 3711 + 3994 ], "premier_rank_updated_at": [ - 4671 + 4959 ], "profile_url": [ - 82 + 85 ], "quiet_hours_end": [ - 4668 + 4956 ], "quiet_hours_start": [ - 4668 + 4956 ], "role": [ - 1179 + 1243 ], "roster_image_url": [ - 82 + 85 ], "sanctions": [ - 3759 + 4042 ], "sanctions_aggregate": [ - 3752 + 4035 ], "season_stats": [ - 3810 + 4093 ], "season_stats_aggregate": [ - 3793 + 4076 ], "show_match_ready_modal": [ 6 ], "stats": [ - 3854 + 4137 ], "steam_bans_checked_at": [ - 4671 + 4959 ], "steam_id": [ - 266 + 270 ], "team_invites": [ - 4347 + 4635 ], "team_invites_aggregate": [ - 4340 + 4628 ], "team_members": [ - 4390 + 4678 ], "team_members_aggregate": [ - 4381 + 4669 ], "teams": [ - 4632 + 4920 ], "total_matches": [ 41 ], "tournament_organizers": [ - 4817 + 5105 ], "tournament_organizers_aggregate": [ - 4810 + 5098 ], "tournament_rosters": [ - 5032 + 5320 ], "tournament_rosters_aggregate": [ - 5025 + 5313 ], "tournaments": [ - 5127 + 5415 ], "tournaments_aggregate": [ - 5108 + 5396 ], "utility_thrown": [ - 3987 + 4270 ], "utility_thrown_aggregate": [ - 3980 + 4263 ], "vac_ban_count": [ 41 @@ -93641,10 +98964,10 @@ export default { 6 ], "weapon_stats": [ - 4028 + 4311 ], "weapon_stats_aggregate": [ - 4021 + 4304 ], "wins": [ 41 @@ -93659,7 +98982,7 @@ export default { 41 ], "__typename": [ - 80 + 83 ] }, "players_constraint": {}, @@ -93680,219 +99003,219 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "vac_ban_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "players_insert_input": { "abandoned_matches": [ - 132 + 136 ], "aim_weapon_stats": [ - 3197 + 3480 ], "assists": [ - 3240 + 3523 ], "assited_by_players": [ - 3240 + 3523 ], "avatar_url": [ - 80 + 83 ], "awards": [ - 201 + 205 ], "coach_lineups": [ - 2560 + 2821 ], "country": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "custom_avatar_url": [ - 80 + 83 ], "damage_dealt": [ - 3301 + 3584 ], "damage_taken": [ - 3301 + 3584 ], "days_since_last_ban": [ 40 ], "deaths": [ - 3457 + 3740 ], "discord_id": [ - 80 + 83 ], "draft_game_players": [ - 514 + 518 ], "elo_history": [ - 5563 + 5851 ], "faceit_elo": [ 40 ], "faceit_nickname": [ - 80 + 83 ], "faceit_player_id": [ - 80 + 83 ], "faceit_rank_history": [ - 3369 + 3652 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4670 + 4958 ], "faceit_url": [ - 80 + 83 ], "flashed_by_players": [ - 3412 + 3695 ], "flashed_players": [ - 3412 + 3695 ], "friends": [ - 2951 + 3234 ], "game_ban_count": [ 40 ], "invited_players": [ - 4344 + 4632 ], "kills": [ - 3457 + 3740 ], "kills_by_weapons": [ - 3467 + 3750 ], "language": [ - 80 + 83 ], "last_read_news_at": [ - 4670 + 4958 ], "last_sign_in_at": [ - 4670 + 4958 ], "lobby_players": [ - 2336 + 2597 ], "match_map_hltv": [ - 5658 + 5946 ], "match_map_stats": [ - 3564 + 3847 ], "match_stats": [ - 3623 + 3906 ], "multi_kills": [ - 5749 + 6037 ], "name": [ - 80 + 83 ], "name_registered": [ 5 ], "notification_timezone": [ - 80 + 83 ], "notifications": [ - 3051 + 3334 ], "objectives": [ - 3656 + 3939 ], "owned_teams": [ - 4629 + 4917 ], "pending_match_imports": [ - 3101 + 3384 ], "player_lineup": [ - 2517 + 2778 ], "player_unused_utilities": [ - 3943 + 4226 ], "premier_rank": [ 40 ], "premier_rank_history": [ - 3715 + 3998 ], "premier_rank_updated_at": [ - 4670 + 4958 ], "profile_url": [ - 80 + 83 ], "quiet_hours_end": [ - 4667 + 4955 ], "quiet_hours_start": [ - 4667 + 4955 ], "role": [ - 1178 + 1242 ], "roster_image_url": [ - 80 + 83 ], "sanctions": [ - 3756 + 4039 ], "season_stats": [ - 3807 + 4090 ], "show_match_ready_modal": [ 5 ], "stats": [ - 3861 + 4144 ], "steam_bans_checked_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "team_invites": [ - 4344 + 4632 ], "team_members": [ - 4387 + 4675 ], "tournament_organizers": [ - 4814 + 5102 ], "tournament_rosters": [ - 5029 + 5317 ], "tournaments": [ - 5124 + 5412 ], "utility_thrown": [ - 3984 + 4267 ], "vac_ban_count": [ 40 @@ -93901,66 +99224,66 @@ export default { 5 ], "weapon_stats": [ - 4025 + 4308 ], "__typename": [ - 80 + 83 ] }, "players_max_fields": { "avatar_url": [ - 80 + 83 ], "banned_until": [ - 4670 + 4958 ], "country": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "current_lobby_id": [ - 5170 + 5458 ], "custom_avatar_url": [ - 80 + 83 ], "days_since_last_ban": [ 40 ], "discord_id": [ - 80 + 83 ], "faceit_elo": [ 40 ], "faceit_nickname": [ - 80 + 83 ], "faceit_player_id": [ - 80 + 83 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4670 + 4958 ], "faceit_url": [ - 80 + 83 ], "game_ban_count": [ 40 ], "language": [ - 80 + 83 ], "last_read_news_at": [ - 4670 + 4958 ], "last_sign_in_at": [ - 4670 + 4958 ], "losses": [ 40 @@ -93975,31 +99298,31 @@ export default { 40 ], "matchmaking_cooldown": [ - 4670 + 4958 ], "name": [ - 80 + 83 ], "notification_timezone": [ - 80 + 83 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4670 + 4958 ], "profile_url": [ - 80 + 83 ], "roster_image_url": [ - 80 + 83 ], "steam_bans_checked_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "total_matches": [ 40 @@ -94020,63 +99343,63 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "players_min_fields": { "avatar_url": [ - 80 + 83 ], "banned_until": [ - 4670 + 4958 ], "country": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "current_lobby_id": [ - 5170 + 5458 ], "custom_avatar_url": [ - 80 + 83 ], "days_since_last_ban": [ 40 ], "discord_id": [ - 80 + 83 ], "faceit_elo": [ 40 ], "faceit_nickname": [ - 80 + 83 ], "faceit_player_id": [ - 80 + 83 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4670 + 4958 ], "faceit_url": [ - 80 + 83 ], "game_ban_count": [ 40 ], "language": [ - 80 + 83 ], "last_read_news_at": [ - 4670 + 4958 ], "last_sign_in_at": [ - 4670 + 4958 ], "losses": [ 40 @@ -94091,31 +99414,31 @@ export default { 40 ], "matchmaking_cooldown": [ - 4670 + 4958 ], "name": [ - 80 + 83 ], "notification_timezone": [ - 80 + 83 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4670 + 4958 ], "profile_url": [ - 80 + 83 ], "roster_image_url": [ - 80 + 83 ], "steam_bans_checked_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "total_matches": [ 40 @@ -94136,7 +99459,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "players_mutation_response": { @@ -94144,423 +99467,423 @@ export default { 40 ], "returning": [ - 4052 + 4335 ], "__typename": [ - 80 + 83 ] }, "players_obj_rel_insert_input": { "data": [ - 4059 + 4342 ], "on_conflict": [ - 4064 + 4347 ], "__typename": [ - 80 + 83 ] }, "players_on_conflict": { "constraint": [ - 4057 + 4340 ], "update_columns": [ - 4075 + 4358 ], "where": [ - 4056 + 4339 ], "__typename": [ - 80 + 83 ] }, "players_order_by": { "abandoned_matches_aggregate": [ - 131 + 135 ], "aim_weapon_stats_aggregate": [ - 3196 + 3479 ], "assists_aggregate": [ - 3239 + 3522 ], "assited_by_players_aggregate": [ - 3239 + 3522 ], "avatar_url": [ - 3094 + 3377 ], "awards_aggregate": [ - 200 + 204 ], "banned_until": [ - 3094 + 3377 ], "coach_lineups_aggregate": [ - 2559 + 2820 ], "country": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "current_lobby_id": [ - 3094 + 3377 ], "custom_avatar_url": [ - 3094 + 3377 ], "damage_dealt_aggregate": [ - 3300 + 3583 ], "damage_taken_aggregate": [ - 3300 + 3583 ], "days_since_last_ban": [ - 3094 + 3377 ], "deaths_aggregate": [ - 3456 + 3739 ], "discord_id": [ - 3094 + 3377 ], "draft_game_players_aggregate": [ - 513 + 517 ], "elo": [ - 3094 + 3377 ], "elo_history_aggregate": [ - 5562 + 5850 ], "faceit_elo": [ - 3094 + 3377 ], "faceit_nickname": [ - 3094 + 3377 ], "faceit_player_id": [ - 3094 + 3377 ], "faceit_rank_history_aggregate": [ - 3368 + 3651 ], "faceit_skill_level": [ - 3094 + 3377 ], "faceit_updated_at": [ - 3094 + 3377 ], "faceit_url": [ - 3094 + 3377 ], "flashed_by_players_aggregate": [ - 3411 + 3694 ], "flashed_players_aggregate": [ - 3411 + 3694 ], "friends_aggregate": [ - 2949 + 3232 ], "game_ban_count": [ - 3094 + 3377 ], "invited_players_aggregate": [ - 4343 + 4631 ], "is_admin_sanctioned": [ - 3094 + 3377 ], "is_banned": [ - 3094 + 3377 ], "is_gagged": [ - 3094 + 3377 ], "is_in_another_match": [ - 3094 + 3377 ], "is_in_draft": [ - 3094 + 3377 ], "is_in_lobby": [ - 3094 + 3377 ], "is_muted": [ - 3094 + 3377 ], "is_registered": [ - 3094 + 3377 ], "kills_aggregate": [ - 3456 + 3739 ], "kills_by_weapons_aggregate": [ - 3466 + 3749 ], "language": [ - 3094 + 3377 ], "last_read_news_at": [ - 3094 + 3377 ], "last_sign_in_at": [ - 3094 + 3377 ], "lobby_players_aggregate": [ - 2335 + 2596 ], "losses": [ - 3094 + 3377 ], "losses_competitive": [ - 3094 + 3377 ], "losses_duel": [ - 3094 + 3377 ], "losses_wingman": [ - 3094 + 3377 ], "match_map_hltv_aggregate": [ - 5657 + 5945 ], "match_map_stats_aggregate": [ - 3563 + 3846 ], "match_stats_aggregate": [ - 3622 + 3905 ], "matches_aggregate": [ - 2887 + 3168 ], "matchmaking_cooldown": [ - 3094 + 3377 ], "multi_kills_aggregate": [ - 5748 + 6036 ], "name": [ - 3094 + 3377 ], "name_registered": [ - 3094 + 3377 ], "notification_timezone": [ - 3094 + 3377 ], "notifications_aggregate": [ - 3049 + 3332 ], "objectives_aggregate": [ - 3655 + 3938 ], "owned_teams_aggregate": [ - 4628 + 4916 ], "peak_elo": [ - 3094 + 3377 ], "pending_match_imports_aggregate": [ - 3100 + 3383 ], "player_lineup_aggregate": [ - 2516 + 2777 ], "player_unused_utilities_aggregate": [ - 3942 + 4225 ], "premier_rank": [ - 3094 + 3377 ], "premier_rank_history_aggregate": [ - 3714 + 3997 ], "premier_rank_updated_at": [ - 3094 + 3377 ], "profile_url": [ - 3094 + 3377 ], "quiet_hours_end": [ - 3094 + 3377 ], "quiet_hours_start": [ - 3094 + 3377 ], "role": [ - 3094 + 3377 ], "roster_image_url": [ - 3094 + 3377 ], "sanctions_aggregate": [ - 3755 + 4038 ], "season_stats_aggregate": [ - 3806 + 4089 ], "show_match_ready_modal": [ - 3094 + 3377 ], "stats": [ - 3863 + 4146 ], "steam_bans_checked_at": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_invites_aggregate": [ - 4343 + 4631 ], "team_members_aggregate": [ - 4386 + 4674 ], "teams_aggregate": [ - 4628 + 4916 ], "total_matches": [ - 3094 + 3377 ], "tournament_organizers_aggregate": [ - 4813 + 5101 ], "tournament_rosters_aggregate": [ - 5028 + 5316 ], "tournaments_aggregate": [ - 5123 + 5411 ], "utility_thrown_aggregate": [ - 3983 + 4266 ], "vac_ban_count": [ - 3094 + 3377 ], "vac_banned": [ - 3094 + 3377 ], "weapon_stats_aggregate": [ - 4024 + 4307 ], "wins": [ - 3094 + 3377 ], "wins_competitive": [ - 3094 + 3377 ], "wins_duel": [ - 3094 + 3377 ], "wins_wingman": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "players_pk_columns_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "players_select_column": {}, "players_set_input": { "avatar_url": [ - 80 + 83 ], "country": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "custom_avatar_url": [ - 80 + 83 ], "days_since_last_ban": [ 40 ], "discord_id": [ - 80 + 83 ], "faceit_elo": [ 40 ], "faceit_nickname": [ - 80 + 83 ], "faceit_player_id": [ - 80 + 83 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4670 + 4958 ], "faceit_url": [ - 80 + 83 ], "game_ban_count": [ 40 ], "language": [ - 80 + 83 ], "last_read_news_at": [ - 4670 + 4958 ], "last_sign_in_at": [ - 4670 + 4958 ], "name": [ - 80 + 83 ], "name_registered": [ 5 ], "notification_timezone": [ - 80 + 83 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4670 + 4958 ], "profile_url": [ - 80 + 83 ], "quiet_hours_end": [ - 4667 + 4955 ], "quiet_hours_start": [ - 4667 + 4955 ], "role": [ - 1178 + 1242 ], "roster_image_url": [ - 80 + 83 ], "show_match_ready_modal": [ 5 ], "steam_bans_checked_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "vac_ban_count": [ 40 @@ -94569,7 +99892,7 @@ export default { 5 ], "__typename": [ - 80 + 83 ] }, "players_stddev_fields": { @@ -94622,7 +99945,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "players_stddev_pop_fields": { @@ -94675,7 +99998,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "players_stddev_samp_fields": { @@ -94728,107 +100051,107 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "players_stream_cursor_input": { "initial_value": [ - 4073 + 4356 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "players_stream_cursor_value_input": { "avatar_url": [ - 80 + 83 ], "country": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "custom_avatar_url": [ - 80 + 83 ], "days_since_last_ban": [ 40 ], "discord_id": [ - 80 + 83 ], "faceit_elo": [ 40 ], "faceit_nickname": [ - 80 + 83 ], "faceit_player_id": [ - 80 + 83 ], "faceit_skill_level": [ 40 ], "faceit_updated_at": [ - 4670 + 4958 ], "faceit_url": [ - 80 + 83 ], "game_ban_count": [ 40 ], "language": [ - 80 + 83 ], "last_read_news_at": [ - 4670 + 4958 ], "last_sign_in_at": [ - 4670 + 4958 ], "name": [ - 80 + 83 ], "name_registered": [ 5 ], "notification_timezone": [ - 80 + 83 ], "premier_rank": [ 40 ], "premier_rank_updated_at": [ - 4670 + 4958 ], "profile_url": [ - 80 + 83 ], "quiet_hours_end": [ - 4667 + 4955 ], "quiet_hours_start": [ - 4667 + 4955 ], "role": [ - 1178 + 1242 ], "roster_image_url": [ - 80 + 83 ], "show_match_ready_modal": [ 5 ], "steam_bans_checked_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "vac_ban_count": [ 40 @@ -94837,7 +100160,7 @@ export default { 5 ], "__typename": [ - 80 + 83 ] }, "players_sum_fields": { @@ -94869,7 +100192,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "total_matches": [ 40 @@ -94890,22 +100213,22 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "players_update_column": {}, "players_updates": { "_inc": [ - 4058 + 4341 ], "_set": [ - 4068 + 4351 ], "where": [ - 4056 + 4339 ], "__typename": [ - 80 + 83 ] }, "players_var_pop_fields": { @@ -94958,7 +100281,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "players_var_samp_fields": { @@ -95011,7 +100334,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "players_variance_fields": { @@ -95064,7 +100387,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "plugin_versions": { @@ -95072,38 +100395,38 @@ export default { 40 ], "published_at": [ - 4670 + 4958 ], "runtime": [ - 1198 + 1262 ], "version": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_aggregate": { "aggregate": [ - 4082 + 4365 ], "nodes": [ - 4080 + 4363 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_aggregate_fields": { "avg": [ - 4083 + 4366 ], "count": [ 40, { "columns": [ - 4094, + 4377, "[plugin_versions_select_column!]" ], "distinct": [ @@ -95112,34 +100435,34 @@ export default { } ], "max": [ - 4088 + 4371 ], "min": [ - 4089 + 4372 ], "stddev": [ - 4096 + 4379 ], "stddev_pop": [ - 4097 + 4380 ], "stddev_samp": [ - 4098 + 4381 ], "sum": [ - 4101 + 4384 ], "var_pop": [ - 4104 + 4387 ], "var_samp": [ - 4105 + 4388 ], "variance": [ - 4106 + 4389 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_avg_fields": { @@ -95147,33 +100470,33 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_bool_exp": { "_and": [ - 4084 + 4367 ], "_not": [ - 4084 + 4367 ], "_or": [ - 4084 + 4367 ], "min_game_build_id": [ 41 ], "published_at": [ - 4671 + 4959 ], "runtime": [ - 1199 + 1263 ], "version": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_constraint": {}, @@ -95182,7 +100505,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_insert_input": { @@ -95190,16 +100513,16 @@ export default { 40 ], "published_at": [ - 4670 + 4958 ], "runtime": [ - 1198 + 1262 ], "version": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_max_fields": { @@ -95207,13 +100530,13 @@ export default { 40 ], "published_at": [ - 4670 + 4958 ], "version": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_min_fields": { @@ -95221,13 +100544,13 @@ export default { 40 ], "published_at": [ - 4670 + 4958 ], "version": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_mutation_response": { @@ -95235,52 +100558,52 @@ export default { 40 ], "returning": [ - 4080 + 4363 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_on_conflict": { "constraint": [ - 4085 + 4368 ], "update_columns": [ - 4102 + 4385 ], "where": [ - 4084 + 4367 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_order_by": { "min_game_build_id": [ - 3094 + 3377 ], "published_at": [ - 3094 + 3377 ], "runtime": [ - 3094 + 3377 ], "version": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_pk_columns_input": { "runtime": [ - 1198 + 1262 ], "version": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_select_column": {}, @@ -95289,16 +100612,16 @@ export default { 40 ], "published_at": [ - 4670 + 4958 ], "runtime": [ - 1198 + 1262 ], "version": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_stddev_fields": { @@ -95306,7 +100629,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_stddev_pop_fields": { @@ -95314,7 +100637,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_stddev_samp_fields": { @@ -95322,18 +100645,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 4100 + 4383 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_stream_cursor_value_input": { @@ -95341,16 +100664,16 @@ export default { 40 ], "published_at": [ - 4670 + 4958 ], "runtime": [ - 1198 + 1262 ], "version": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_sum_fields": { @@ -95358,22 +100681,22 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 4086 + 4369 ], "_set": [ - 4095 + 4378 ], "where": [ - 4084 + 4367 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_var_pop_fields": { @@ -95381,7 +100704,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_var_samp_fields": { @@ -95389,7 +100712,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "plugin_versions_variance_fields": { @@ -95397,58 +100720,58 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions": { "auth": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "endpoint": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "last_used_at": [ - 4670 + 4958 ], "p256dh": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "user_agent": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_aggregate": { "aggregate": [ - 4109 + 4392 ], "nodes": [ - 4107 + 4390 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_aggregate_fields": { "avg": [ - 4110 + 4393 ], "count": [ 40, { "columns": [ - 4121, + 4404, "[push_subscriptions_select_column!]" ], "distinct": [ @@ -95457,34 +100780,34 @@ export default { } ], "max": [ - 4115 + 4398 ], "min": [ - 4116 + 4399 ], "stddev": [ - 4123 + 4406 ], "stddev_pop": [ - 4124 + 4407 ], "stddev_samp": [ - 4125 + 4408 ], "sum": [ - 4128 + 4411 ], "var_pop": [ - 4131 + 4414 ], "var_samp": [ - 4132 + 4415 ], "variance": [ - 4133 + 4416 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_avg_fields": { @@ -95492,141 +100815,141 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_bool_exp": { "_and": [ - 4111 + 4394 ], "_not": [ - 4111 + 4394 ], "_or": [ - 4111 + 4394 ], "auth": [ - 82 + 85 ], "created_at": [ - 4671 + 4959 ], "endpoint": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "last_used_at": [ - 4671 + 4959 ], "p256dh": [ - 82 + 85 ], "steam_id": [ - 266 + 270 ], "user_agent": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_constraint": {}, "push_subscriptions_inc_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_insert_input": { "auth": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "endpoint": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "last_used_at": [ - 4670 + 4958 ], "p256dh": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "user_agent": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_max_fields": { "auth": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "endpoint": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "last_used_at": [ - 4670 + 4958 ], "p256dh": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "user_agent": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_min_fields": { "auth": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "endpoint": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "last_used_at": [ - 4670 + 4958 ], "p256dh": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "user_agent": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_mutation_response": { @@ -95634,91 +100957,91 @@ export default { 40 ], "returning": [ - 4107 + 4390 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_on_conflict": { "constraint": [ - 4112 + 4395 ], "update_columns": [ - 4129 + 4412 ], "where": [ - 4111 + 4394 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_order_by": { "auth": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "endpoint": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "last_used_at": [ - 3094 + 3377 ], "p256dh": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "user_agent": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_select_column": {}, "push_subscriptions_set_input": { "auth": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "endpoint": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "last_used_at": [ - 4670 + 4958 ], "p256dh": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "user_agent": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_stddev_fields": { @@ -95726,7 +101049,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_stddev_pop_fields": { @@ -95734,7 +101057,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_stddev_samp_fields": { @@ -95742,70 +101065,70 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_stream_cursor_input": { "initial_value": [ - 4127 + 4410 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_stream_cursor_value_input": { "auth": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "endpoint": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "last_used_at": [ - 4670 + 4958 ], "p256dh": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "user_agent": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_update_column": {}, "push_subscriptions_updates": { "_inc": [ - 4113 + 4396 ], "_set": [ - 4122 + 4405 ], "where": [ - 4111 + 4394 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_var_pop_fields": { @@ -95813,7 +101136,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_var_samp_fields": { @@ -95821,7 +101144,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "push_subscriptions_variance_fields": { @@ -95829,47 +101152,47 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "recalculate_tournament_awards_args": { "_tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "reorder_league_divisions_args": { "_division_ids": [ - 125 + 129 ], "__typename": [ - 80 + 83 ] }, "restart_league_season_args": { "_league_season_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "seasons": { "awards": [ - 195, + 199, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -95879,19 +101202,19 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "awards_aggregate": [ - 196, + 200, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -95901,25 +101224,25 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "ends_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "needs_rebuild": [ 5 @@ -95928,10 +101251,10 @@ export default { 40 ], "player_season_stats": [ - 3791, + 4074, { "distinct_on": [ - 3822, + 4105, "[player_season_stats_select_column!]" ], "limit": [ @@ -95941,19 +101264,19 @@ export default { 40 ], "order_by": [ - 3820, + 4103, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4093 ] } ], "player_season_stats_aggregate": [ - 3792, + 4075, { "distinct_on": [ - 3822, + 4105, "[player_season_stats_select_column!]" ], "limit": [ @@ -95963,41 +101286,41 @@ export default { 40 ], "order_by": [ - 3820, + 4103, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4093 ] } ], "starts_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "seasons_aggregate": { "aggregate": [ - 4140 + 4423 ], "nodes": [ - 4138 + 4421 ], "__typename": [ - 80 + 83 ] }, "seasons_aggregate_fields": { "avg": [ - 4141 + 4424 ], "count": [ 40, { "columns": [ - 4153, + 4436, "[seasons_select_column!]" ], "distinct": [ @@ -96006,34 +101329,34 @@ export default { } ], "max": [ - 4146 + 4429 ], "min": [ - 4147 + 4430 ], "stddev": [ - 4155 + 4438 ], "stddev_pop": [ - 4156 + 4439 ], "stddev_samp": [ - 4157 + 4440 ], "sum": [ - 4160 + 4443 ], "var_pop": [ - 4163 + 4446 ], "var_samp": [ - 4164 + 4447 ], "variance": [ - 4165 + 4448 ], "__typename": [ - 80 + 83 ] }, "seasons_avg_fields": { @@ -96041,36 +101364,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "seasons_bool_exp": { "_and": [ - 4142 + 4425 ], "_not": [ - 4142 + 4425 ], "_or": [ - 4142 + 4425 ], "awards": [ - 204 + 208 ], "awards_aggregate": [ - 197 + 201 ], "created_at": [ - 4671 + 4959 ], "description": [ - 82 + 85 ], "ends_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "needs_rebuild": [ 6 @@ -96079,16 +101402,16 @@ export default { 41 ], "player_season_stats": [ - 3810 + 4093 ], "player_season_stats_aggregate": [ - 3793 + 4076 ], "starts_at": [ - 4671 + 4959 ], "__typename": [ - 80 + 83 ] }, "seasons_constraint": {}, @@ -96097,24 +101420,24 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "seasons_insert_input": { "awards": [ - 201 + 205 ], "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "ends_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "needs_rebuild": [ 5 @@ -96123,59 +101446,59 @@ export default { 40 ], "player_season_stats": [ - 3807 + 4090 ], "starts_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "seasons_max_fields": { "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "ends_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "number": [ 40 ], "starts_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "seasons_min_fields": { "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "ends_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "number": [ 40 ], "starts_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "seasons_mutation_response": { @@ -96183,90 +101506,90 @@ export default { 40 ], "returning": [ - 4138 + 4421 ], "__typename": [ - 80 + 83 ] }, "seasons_obj_rel_insert_input": { "data": [ - 4145 + 4428 ], "on_conflict": [ - 4150 + 4433 ], "__typename": [ - 80 + 83 ] }, "seasons_on_conflict": { "constraint": [ - 4143 + 4426 ], "update_columns": [ - 4161 + 4444 ], "where": [ - 4142 + 4425 ], "__typename": [ - 80 + 83 ] }, "seasons_order_by": { "awards_aggregate": [ - 200 + 204 ], "created_at": [ - 3094 + 3377 ], "description": [ - 3094 + 3377 ], "ends_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "needs_rebuild": [ - 3094 + 3377 ], "number": [ - 3094 + 3377 ], "player_season_stats_aggregate": [ - 3806 + 4089 ], "starts_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "seasons_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "ends_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "needs_rebuild": [ 5 @@ -96275,10 +101598,10 @@ export default { 40 ], "starts_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "seasons_stddev_fields": { @@ -96286,7 +101609,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "seasons_stddev_pop_fields": { @@ -96294,7 +101617,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "seasons_stddev_samp_fields": { @@ -96302,32 +101625,32 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "seasons_stream_cursor_input": { "initial_value": [ - 4159 + 4442 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "seasons_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "ends_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "needs_rebuild": [ 5 @@ -96336,10 +101659,10 @@ export default { 40 ], "starts_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "seasons_sum_fields": { @@ -96347,22 +101670,22 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 4144 + 4427 ], "_set": [ - 4154 + 4437 ], "where": [ - 4142 + 4425 ], "__typename": [ - 80 + 83 ] }, "seasons_var_pop_fields": { @@ -96370,7 +101693,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "seasons_var_samp_fields": { @@ -96378,7 +101701,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "seasons_variance_fields": { @@ -96386,7 +101709,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "server_regions": { @@ -96394,13 +101717,13 @@ export default { 40 ], "description": [ - 80 + 83 ], "game_server_nodes": [ - 1806, + 2067, { "distinct_on": [ - 1835, + 2096, "[game_server_nodes_select_column!]" ], "limit": [ @@ -96410,19 +101733,19 @@ export default { 40 ], "order_by": [ - 1832, + 2093, "[game_server_nodes_order_by!]" ], "where": [ - 1818 + 2079 ] } ], "game_server_nodes_aggregate": [ - 1807, + 2068, { "distinct_on": [ - 1835, + 2096, "[game_server_nodes_select_column!]" ], "limit": [ @@ -96432,11 +101755,11 @@ export default { 40 ], "order_by": [ - 1832, + 2093, "[game_server_nodes_order_by!]" ], "where": [ - 1818 + 2079 ] } ], @@ -96447,7 +101770,7 @@ export default { 5 ], "status": [ - 80 + 83 ], "steam_relay": [ 5 @@ -96456,32 +101779,32 @@ export default { 40 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "server_regions_aggregate": { "aggregate": [ - 4168 + 4451 ], "nodes": [ - 4166 + 4449 ], "__typename": [ - 80 + 83 ] }, "server_regions_aggregate_fields": { "avg": [ - 4169 + 4452 ], "count": [ 40, { "columns": [ - 4180, + 4463, "[server_regions_select_column!]" ], "distinct": [ @@ -96490,34 +101813,34 @@ export default { } ], "max": [ - 4173 + 4456 ], "min": [ - 4174 + 4457 ], "stddev": [ - 4182 + 4465 ], "stddev_pop": [ - 4183 + 4466 ], "stddev_samp": [ - 4184 + 4467 ], "sum": [ - 4187 + 4470 ], "var_pop": [ - 4190 + 4473 ], "var_samp": [ - 4191 + 4474 ], "variance": [ - 4192 + 4475 ], "__typename": [ - 80 + 83 ] }, "server_regions_avg_fields": { @@ -96528,30 +101851,30 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "server_regions_bool_exp": { "_and": [ - 4170 + 4453 ], "_not": [ - 4170 + 4453 ], "_or": [ - 4170 + 4453 ], "available_server_count": [ 41 ], "description": [ - 82 + 85 ], "game_server_nodes": [ - 1818 + 2079 ], "game_server_nodes_aggregate": [ - 1808 + 2069 ], "has_node": [ 6 @@ -96560,7 +101883,7 @@ export default { 6 ], "status": [ - 82 + 85 ], "steam_relay": [ 6 @@ -96569,19 +101892,19 @@ export default { 41 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "server_regions_constraint": {}, "server_regions_insert_input": { "description": [ - 80 + 83 ], "game_server_nodes": [ - 1815 + 2076 ], "is_lan": [ 5 @@ -96590,10 +101913,10 @@ export default { 5 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "server_regions_max_fields": { @@ -96601,19 +101924,19 @@ export default { 40 ], "description": [ - 80 + 83 ], "status": [ - 80 + 83 ], "total_server_count": [ 40 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "server_regions_min_fields": { @@ -96621,19 +101944,19 @@ export default { 40 ], "description": [ - 80 + 83 ], "status": [ - 80 + 83 ], "total_server_count": [ 40 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "server_regions_mutation_response": { @@ -96641,81 +101964,81 @@ export default { 40 ], "returning": [ - 4166 + 4449 ], "__typename": [ - 80 + 83 ] }, "server_regions_obj_rel_insert_input": { "data": [ - 4172 + 4455 ], "on_conflict": [ - 4177 + 4460 ], "__typename": [ - 80 + 83 ] }, "server_regions_on_conflict": { "constraint": [ - 4171 + 4454 ], "update_columns": [ - 4188 + 4471 ], "where": [ - 4170 + 4453 ], "__typename": [ - 80 + 83 ] }, "server_regions_order_by": { "available_server_count": [ - 3094 + 3377 ], "description": [ - 3094 + 3377 ], "game_server_nodes_aggregate": [ - 1813 + 2074 ], "has_node": [ - 3094 + 3377 ], "is_lan": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "steam_relay": [ - 3094 + 3377 ], "total_server_count": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "server_regions_pk_columns_input": { "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "server_regions_select_column": {}, "server_regions_set_input": { "description": [ - 80 + 83 ], "is_lan": [ 5 @@ -96724,10 +102047,10 @@ export default { 5 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "server_regions_stddev_fields": { @@ -96738,7 +102061,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "server_regions_stddev_pop_fields": { @@ -96749,7 +102072,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "server_regions_stddev_samp_fields": { @@ -96760,23 +102083,23 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "server_regions_stream_cursor_input": { "initial_value": [ - 4186 + 4469 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "server_regions_stream_cursor_value_input": { "description": [ - 80 + 83 ], "is_lan": [ 5 @@ -96785,10 +102108,10 @@ export default { 5 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "server_regions_sum_fields": { @@ -96799,19 +102122,19 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 4181 + 4464 ], "where": [ - 4170 + 4453 ], "__typename": [ - 80 + 83 ] }, "server_regions_var_pop_fields": { @@ -96822,7 +102145,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "server_regions_var_samp_fields": { @@ -96833,7 +102156,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "server_regions_variance_fields": { @@ -96844,63 +102167,77 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "servers": { "api_password": [ - 5170 + 5458 ], "boot_status": [ - 80 + 83 ], "boot_status_detail": [ - 80 + 83 ], "connect_password": [ - 80 + 83 ], "connected": [ 5 ], "connection_link": [ - 80 + 83 ], "connection_string": [ - 80 + 83 ], "current_match": [ - 2882 + 3161 ], "enabled": [ 5 ], "game": [ - 80 + 83 + ], + "game_mode": [ + 1920 + ], + "game_mode_id": [ + 5458 ], "game_server_node": [ - 1806 + 2067 ], "game_server_node_id": [ - 80 + 83 ], "host": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_dedicated": [ 5 ], "label": [ - 80 + 83 + ], + "loaded_plugins": [ + 2191, + { + "path": [ + 83 + ] + } ], "matches": [ - 2882, + 3161, { "distinct_on": [ - 2904, + 3185, "[matches_select_column!]" ], "limit": [ @@ -96910,19 +102247,19 @@ export default { 40 ], "order_by": [ - 2902, + 3183, "[matches_order_by!]" ], "where": [ - 2891 + 3172 ] } ], "matches_aggregate": [ - 2883, + 3162, { "distinct_on": [ - 2904, + 3185, "[matches_select_column!]" ], "limit": [ @@ -96932,11 +102269,11 @@ export default { 40 ], "order_by": [ - 2902, + 3183, "[matches_order_by!]" ], "where": [ - 2891 + 3172 ] } ], @@ -96944,133 +102281,136 @@ export default { 40 ], "offline_at": [ - 4670 + 4958 ], "plugin_runtime": [ - 1198 + 1262 ], "plugin_version": [ - 80 + 83 + ], + "plugins_checked_at": [ + 4958 ], "port": [ 40 ], "rcon_password": [ - 267 + 271 ], "rcon_status": [ 5 ], "region": [ - 80 + 83 ], "reserved_by_match_id": [ - 5170 + 5458 ], "server_region": [ - 4166 + 4449 ], "steam_relay": [ - 80 + 83 ], "tv_port": [ 40 ], "type": [ - 1279 + 1343 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "servers_aggregate": { "aggregate": [ - 4199 + 4482 ], "nodes": [ - 4193 + 4476 ], "__typename": [ - 80 + 83 ] }, "servers_aggregate_bool_exp": { "bool_and": [ - 4196 + 4479 ], "bool_or": [ - 4197 + 4480 ], "count": [ - 4198 + 4481 ], "__typename": [ - 80 + 83 ] }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 4218 + 4506 ], "distinct": [ 5 ], "filter": [ - 4204 + 4488 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 4219 + 4507 ], "distinct": [ 5 ], "filter": [ - 4204 + 4488 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "servers_aggregate_bool_exp_count": { "arguments": [ - 4217 + 4505 ], "distinct": [ 5 ], "filter": [ - 4204 + 4488 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "servers_aggregate_fields": { "avg": [ - 4202 + 4486 ], "count": [ 40, { "columns": [ - 4217, + 4505, "[servers_select_column!]" ], "distinct": [ @@ -97079,83 +102419,91 @@ export default { } ], "max": [ - 4208 + 4495 ], "min": [ - 4210 + 4497 ], "stddev": [ - 4221 + 4509 ], "stddev_pop": [ - 4223 + 4511 ], "stddev_samp": [ - 4225 + 4513 ], "sum": [ - 4229 + 4517 ], "var_pop": [ - 4233 + 4521 ], "var_samp": [ - 4235 + 4523 ], "variance": [ - 4237 + 4525 ], "__typename": [ - 80 + 83 ] }, "servers_aggregate_order_by": { "avg": [ - 4203 + 4487 ], "count": [ - 3094 + 3377 ], "max": [ - 4209 + 4496 ], "min": [ - 4211 + 4498 ], "stddev": [ - 4222 + 4510 ], "stddev_pop": [ - 4224 + 4512 ], "stddev_samp": [ - 4226 + 4514 ], "sum": [ - 4230 + 4518 ], "var_pop": [ - 4234 + 4522 ], "var_samp": [ - 4236 + 4524 ], "variance": [ - 4238 + 4526 ], "__typename": [ - 80 + 83 + ] + }, + "servers_append_input": { + "loaded_plugins": [ + 2191 + ], + "__typename": [ + 83 ] }, "servers_arr_rel_insert_input": { "data": [ - 4207 + 4494 ], "on_conflict": [ - 4214 + 4501 ], "__typename": [ - 80 + 83 ] }, "servers_avg_fields": { @@ -97169,134 +102517,170 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "servers_avg_order_by": { "max_players": [ - 3094 + 3377 ], "port": [ - 3094 + 3377 ], "tv_port": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "servers_bool_exp": { "_and": [ - 4204 + 4488 ], "_not": [ - 4204 + 4488 ], "_or": [ - 4204 + 4488 ], "api_password": [ - 5172 + 5460 ], "boot_status": [ - 82 + 85 ], "boot_status_detail": [ - 82 + 85 ], "connect_password": [ - 82 + 85 ], "connected": [ 6 ], "connection_link": [ - 82 + 85 ], "connection_string": [ - 82 + 85 ], "current_match": [ - 2891 + 3172 ], "enabled": [ 6 ], "game": [ - 82 + 85 + ], + "game_mode": [ + 1924 + ], + "game_mode_id": [ + 5460 ], "game_server_node": [ - 1818 + 2079 ], "game_server_node_id": [ - 82 + 85 ], "host": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "is_dedicated": [ 6 ], "label": [ - 82 + 85 + ], + "loaded_plugins": [ + 2193 ], "matches": [ - 2891 + 3172 ], "matches_aggregate": [ - 2884 + 3163 ], "max_players": [ 41 ], "offline_at": [ - 4671 + 4959 ], "plugin_runtime": [ - 1199 + 1263 ], "plugin_version": [ - 82 + 85 + ], + "plugins_checked_at": [ + 4959 ], "port": [ 41 ], "rcon_password": [ - 268 + 272 ], "rcon_status": [ 6 ], "region": [ - 82 + 85 ], "reserved_by_match_id": [ - 5172 + 5460 ], "server_region": [ - 4170 + 4453 ], "steam_relay": [ - 82 + 85 ], "tv_port": [ 41 ], "type": [ - 1280 + 1344 ], "updated_at": [ - 4671 + 4959 ], "__typename": [ - 80 + 83 ] }, "servers_constraint": {}, + "servers_delete_at_path_input": { + "loaded_plugins": [ + 83 + ], + "__typename": [ + 83 + ] + }, + "servers_delete_elem_input": { + "loaded_plugins": [ + 40 + ], + "__typename": [ + 83 + ] + }, + "servers_delete_key_input": { + "loaded_plugins": [ + 83 + ], + "__typename": [ + 83 + ] + }, "servers_inc_input": { "max_players": [ 40 @@ -97308,347 +102692,383 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "servers_insert_input": { "api_password": [ - 5170 + 5458 ], "boot_status": [ - 80 + 83 ], "boot_status_detail": [ - 80 + 83 ], "connect_password": [ - 80 + 83 ], "connected": [ 5 ], "current_match": [ - 2900 + 3181 ], "enabled": [ 5 ], "game": [ - 80 + 83 + ], + "game_mode": [ + 1933 + ], + "game_mode_id": [ + 5458 ], "game_server_node": [ - 1830 + 2091 ], "game_server_node_id": [ - 80 + 83 ], "host": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_dedicated": [ 5 ], "label": [ - 80 + 83 + ], + "loaded_plugins": [ + 2191 ], "matches": [ - 2888 + 3169 ], "max_players": [ 40 ], "offline_at": [ - 4670 + 4958 ], "plugin_runtime": [ - 1198 + 1262 ], "plugin_version": [ - 80 + 83 + ], + "plugins_checked_at": [ + 4958 ], "port": [ 40 ], "rcon_password": [ - 267 + 271 ], "rcon_status": [ 5 ], "region": [ - 80 + 83 ], "reserved_by_match_id": [ - 5170 + 5458 ], "server_region": [ - 4176 + 4459 ], "steam_relay": [ - 80 + 83 ], "tv_port": [ 40 ], "type": [ - 1279 + 1343 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "servers_max_fields": { "api_password": [ - 5170 + 5458 ], "boot_status": [ - 80 + 83 ], "boot_status_detail": [ - 80 + 83 ], "connect_password": [ - 80 + 83 ], "connection_link": [ - 80 + 83 ], "connection_string": [ - 80 + 83 ], "game": [ - 80 + 83 + ], + "game_mode_id": [ + 5458 ], "game_server_node_id": [ - 80 + 83 ], "host": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "max_players": [ 40 ], "offline_at": [ - 4670 + 4958 ], "plugin_version": [ - 80 + 83 + ], + "plugins_checked_at": [ + 4958 ], "port": [ 40 ], "region": [ - 80 + 83 ], "reserved_by_match_id": [ - 5170 + 5458 ], "steam_relay": [ - 80 + 83 ], "tv_port": [ 40 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "servers_max_order_by": { "api_password": [ - 3094 + 3377 ], "boot_status": [ - 3094 + 3377 ], "boot_status_detail": [ - 3094 + 3377 ], "connect_password": [ - 3094 + 3377 ], "game": [ - 3094 + 3377 + ], + "game_mode_id": [ + 3377 ], "game_server_node_id": [ - 3094 + 3377 ], "host": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "max_players": [ - 3094 + 3377 ], "offline_at": [ - 3094 + 3377 ], "plugin_version": [ - 3094 + 3377 + ], + "plugins_checked_at": [ + 3377 ], "port": [ - 3094 + 3377 ], "region": [ - 3094 + 3377 ], "reserved_by_match_id": [ - 3094 + 3377 ], "steam_relay": [ - 3094 + 3377 ], "tv_port": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "servers_min_fields": { "api_password": [ - 5170 + 5458 ], "boot_status": [ - 80 + 83 ], "boot_status_detail": [ - 80 + 83 ], "connect_password": [ - 80 + 83 ], "connection_link": [ - 80 + 83 ], "connection_string": [ - 80 + 83 ], "game": [ - 80 + 83 + ], + "game_mode_id": [ + 5458 ], "game_server_node_id": [ - 80 + 83 ], "host": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "max_players": [ 40 ], "offline_at": [ - 4670 + 4958 ], "plugin_version": [ - 80 + 83 + ], + "plugins_checked_at": [ + 4958 ], "port": [ 40 ], "region": [ - 80 + 83 ], "reserved_by_match_id": [ - 5170 + 5458 ], "steam_relay": [ - 80 + 83 ], "tv_port": [ 40 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "servers_min_order_by": { "api_password": [ - 3094 + 3377 ], "boot_status": [ - 3094 + 3377 ], "boot_status_detail": [ - 3094 + 3377 ], "connect_password": [ - 3094 + 3377 ], "game": [ - 3094 + 3377 + ], + "game_mode_id": [ + 3377 ], "game_server_node_id": [ - 3094 + 3377 ], "host": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "max_players": [ - 3094 + 3377 ], "offline_at": [ - 3094 + 3377 ], "plugin_version": [ - 3094 + 3377 + ], + "plugins_checked_at": [ + 3377 ], "port": [ - 3094 + 3377 ], "region": [ - 3094 + 3377 ], "reserved_by_match_id": [ - 3094 + 3377 ], "steam_relay": [ - 3094 + 3377 ], "tv_port": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "servers_mutation_response": { @@ -97656,141 +103076,161 @@ export default { 40 ], "returning": [ - 4193 + 4476 ], "__typename": [ - 80 + 83 ] }, "servers_obj_rel_insert_input": { "data": [ - 4207 + 4494 ], "on_conflict": [ - 4214 + 4501 ], "__typename": [ - 80 + 83 ] }, "servers_on_conflict": { "constraint": [ - 4205 + 4489 ], "update_columns": [ - 4231 + 4519 ], "where": [ - 4204 + 4488 ], "__typename": [ - 80 + 83 ] }, "servers_order_by": { "api_password": [ - 3094 + 3377 ], "boot_status": [ - 3094 + 3377 ], "boot_status_detail": [ - 3094 + 3377 ], "connect_password": [ - 3094 + 3377 ], "connected": [ - 3094 + 3377 ], "connection_link": [ - 3094 + 3377 ], "connection_string": [ - 3094 + 3377 ], "current_match": [ - 2902 + 3183 ], "enabled": [ - 3094 + 3377 ], "game": [ - 3094 + 3377 + ], + "game_mode": [ + 1935 + ], + "game_mode_id": [ + 3377 ], "game_server_node": [ - 1832 + 2093 ], "game_server_node_id": [ - 3094 + 3377 ], "host": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "is_dedicated": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 + ], + "loaded_plugins": [ + 3377 ], "matches_aggregate": [ - 2887 + 3168 ], "max_players": [ - 3094 + 3377 ], "offline_at": [ - 3094 + 3377 ], "plugin_runtime": [ - 3094 + 3377 ], "plugin_version": [ - 3094 + 3377 + ], + "plugins_checked_at": [ + 3377 ], "port": [ - 3094 + 3377 ], "rcon_password": [ - 3094 + 3377 ], "rcon_status": [ - 3094 + 3377 ], "region": [ - 3094 + 3377 ], "reserved_by_match_id": [ - 3094 + 3377 ], "server_region": [ - 4178 + 4461 ], "steam_relay": [ - 3094 + 3377 ], "tv_port": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "servers_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 + ] + }, + "servers_prepend_input": { + "loaded_plugins": [ + 2191 + ], + "__typename": [ + 83 ] }, "servers_select_column": {}, @@ -97798,16 +103238,16 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 5170 + 5458 ], "boot_status": [ - 80 + 83 ], "boot_status_detail": [ - 80 + 83 ], "connect_password": [ - 80 + 83 ], "connected": [ 5 @@ -97816,64 +103256,73 @@ export default { 5 ], "game": [ - 80 + 83 + ], + "game_mode_id": [ + 5458 ], "game_server_node_id": [ - 80 + 83 ], "host": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_dedicated": [ 5 ], "label": [ - 80 + 83 + ], + "loaded_plugins": [ + 2191 ], "max_players": [ 40 ], "offline_at": [ - 4670 + 4958 ], "plugin_runtime": [ - 1198 + 1262 ], "plugin_version": [ - 80 + 83 + ], + "plugins_checked_at": [ + 4958 ], "port": [ 40 ], "rcon_password": [ - 267 + 271 ], "rcon_status": [ 5 ], "region": [ - 80 + 83 ], "reserved_by_match_id": [ - 5170 + 5458 ], "steam_relay": [ - 80 + 83 ], "tv_port": [ 40 ], "type": [ - 1279 + 1343 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "servers_stddev_fields": { @@ -97887,21 +103336,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "servers_stddev_order_by": { "max_players": [ - 3094 + 3377 ], "port": [ - 3094 + 3377 ], "tv_port": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "servers_stddev_pop_fields": { @@ -97915,21 +103364,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "servers_stddev_pop_order_by": { "max_players": [ - 3094 + 3377 ], "port": [ - 3094 + 3377 ], "tv_port": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "servers_stddev_samp_fields": { @@ -97943,46 +103392,46 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "servers_stddev_samp_order_by": { "max_players": [ - 3094 + 3377 ], "port": [ - 3094 + 3377 ], "tv_port": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "servers_stream_cursor_input": { "initial_value": [ - 4228 + 4516 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "servers_stream_cursor_value_input": { "api_password": [ - 5170 + 5458 ], "boot_status": [ - 80 + 83 ], "boot_status_detail": [ - 80 + 83 ], "connect_password": [ - 80 + 83 ], "connected": [ 5 @@ -97991,64 +103440,73 @@ export default { 5 ], "game": [ - 80 + 83 + ], + "game_mode_id": [ + 5458 ], "game_server_node_id": [ - 80 + 83 ], "host": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_dedicated": [ 5 ], "label": [ - 80 + 83 + ], + "loaded_plugins": [ + 2191 ], "max_players": [ 40 ], "offline_at": [ - 4670 + 4958 ], "plugin_runtime": [ - 1198 + 1262 ], "plugin_version": [ - 80 + 83 + ], + "plugins_checked_at": [ + 4958 ], "port": [ 40 ], "rcon_password": [ - 267 + 271 ], "rcon_status": [ 5 ], "region": [ - 80 + 83 ], "reserved_by_match_id": [ - 5170 + 5458 ], "steam_relay": [ - 80 + 83 ], "tv_port": [ 40 ], "type": [ - 1279 + 1343 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "servers_sum_fields": { @@ -98062,36 +103520,51 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "servers_sum_order_by": { "max_players": [ - 3094 + 3377 ], "port": [ - 3094 + 3377 ], "tv_port": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "servers_update_column": {}, "servers_updates": { + "_append": [ + 4484 + ], + "_delete_at_path": [ + 4490 + ], + "_delete_elem": [ + 4491 + ], + "_delete_key": [ + 4492 + ], "_inc": [ - 4206 + 4493 + ], + "_prepend": [ + 4504 ], "_set": [ - 4220 + 4508 ], "where": [ - 4204 + 4488 ], "__typename": [ - 80 + 83 ] }, "servers_var_pop_fields": { @@ -98105,21 +103578,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "servers_var_pop_order_by": { "max_players": [ - 3094 + 3377 ], "port": [ - 3094 + 3377 ], "tv_port": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "servers_var_samp_fields": { @@ -98133,21 +103606,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "servers_var_samp_order_by": { "max_players": [ - 3094 + 3377 ], "port": [ - 3094 + 3377 ], "tv_port": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "servers_variance_fields": { @@ -98161,43 +103634,43 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "servers_variance_order_by": { "max_players": [ - 3094 + 3377 ], "port": [ - 3094 + 3377 ], "tv_port": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "settings": { "name": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "settings_aggregate": { "aggregate": [ - 4241 + 4529 ], "nodes": [ - 4239 + 4527 ], "__typename": [ - 80 + 83 ] }, "settings_aggregate_fields": { @@ -98205,7 +103678,7 @@ export default { 40, { "columns": [ - 4251, + 4539, "[settings_select_column!]" ], "distinct": [ @@ -98214,67 +103687,67 @@ export default { } ], "max": [ - 4245 + 4533 ], "min": [ - 4246 + 4534 ], "__typename": [ - 80 + 83 ] }, "settings_bool_exp": { "_and": [ - 4242 + 4530 ], "_not": [ - 4242 + 4530 ], "_or": [ - 4242 + 4530 ], "name": [ - 82 + 85 ], "value": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "settings_constraint": {}, "settings_insert_input": { "name": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "settings_max_fields": { "name": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "settings_min_fields": { "name": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "settings_mutation_response": { @@ -98282,187 +103755,187 @@ export default { 40 ], "returning": [ - 4239 + 4527 ], "__typename": [ - 80 + 83 ] }, "settings_on_conflict": { "constraint": [ - 4243 + 4531 ], "update_columns": [ - 4255 + 4543 ], "where": [ - 4242 + 4530 ], "__typename": [ - 80 + 83 ] }, "settings_order_by": { "name": [ - 3094 + 3377 ], "value": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "settings_pk_columns_input": { "name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "settings_select_column": {}, "settings_set_input": { "name": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "settings_stream_cursor_input": { "initial_value": [ - 4254 + 4542 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "settings_stream_cursor_value_input": { "name": [ - 80 + 83 ], "value": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "settings_update_column": {}, "settings_updates": { "_set": [ - 4252 + 4540 ], "where": [ - 4242 + 4530 ], "__typename": [ - 80 + 83 ] }, "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 4257 + 4545 ], "_gt": [ - 4257 + 4545 ], "_gte": [ - 4257 + 4545 ], "_in": [ - 4257 + 4545 ], "_is_null": [ 5 ], "_lt": [ - 4257 + 4545 ], "_lte": [ - 4257 + 4545 ], "_neq": [ - 4257 + 4545 ], "_nin": [ - 4257 + 4545 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "node": [ - 1806 + 2067 ], "node_id": [ - 80 + 83 ], "purpose": [ - 80 + 83 ], "steam_account": [ - 4283 + 4571 ], "steam_account_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_aggregate": { "aggregate": [ - 4263 + 4551 ], "nodes": [ - 4259 + 4547 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 4262 + 4550 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 4277 + 4565 ], "distinct": [ 5 ], "filter": [ - 4266 + 4554 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_aggregate_fields": { @@ -98470,7 +103943,7 @@ export default { 40, { "columns": [ - 4277, + 4565, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -98479,198 +103952,198 @@ export default { } ], "max": [ - 4269 + 4557 ], "min": [ - 4271 + 4559 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_aggregate_order_by": { "count": [ - 3094 + 3377 ], "max": [ - 4270 + 4558 ], "min": [ - 4272 + 4560 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 4268 + 4556 ], "on_conflict": [ - 4274 + 4562 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_bool_exp": { "_and": [ - 4266 + 4554 ], "_not": [ - 4266 + 4554 ], "_or": [ - 4266 + 4554 ], "created_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "k8s_job_name": [ - 82 + 85 ], "node": [ - 1818 + 2079 ], "node_id": [ - 82 + 85 ], "purpose": [ - 82 + 85 ], "steam_account": [ - 4287 + 4575 ], "steam_account_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "node": [ - 1830 + 2091 ], "node_id": [ - 80 + 83 ], "purpose": [ - 80 + 83 ], "steam_account": [ - 4294 + 4582 ], "steam_account_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_max_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "node_id": [ - 80 + 83 ], "purpose": [ - 80 + 83 ], "steam_account_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_max_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "k8s_job_name": [ - 3094 + 3377 ], "node_id": [ - 3094 + 3377 ], "purpose": [ - 3094 + 3377 ], "steam_account_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_min_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "node_id": [ - 80 + 83 ], "purpose": [ - 80 + 83 ], "steam_account_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_min_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "k8s_job_name": [ - 3094 + 3377 ], "node_id": [ - 3094 + 3377 ], "purpose": [ - 3094 + 3377 ], "steam_account_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_mutation_response": { @@ -98678,139 +104151,139 @@ export default { 40 ], "returning": [ - 4259 + 4547 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_on_conflict": { "constraint": [ - 4267 + 4555 ], "update_columns": [ - 4281 + 4569 ], "where": [ - 4266 + 4554 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "k8s_job_name": [ - 3094 + 3377 ], "node": [ - 1832 + 2093 ], "node_id": [ - 3094 + 3377 ], "purpose": [ - 3094 + 3377 ], "steam_account": [ - 4296 + 4584 ], "steam_account_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "node_id": [ - 80 + 83 ], "purpose": [ - 80 + 83 ], "steam_account_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 4280 + 4568 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "k8s_job_name": [ - 80 + 83 ], "node_id": [ - 80 + 83 ], "purpose": [ - 80 + 83 ], "steam_account_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 4278 + 4566 ], "where": [ - 4266 + 4554 ], "__typename": [ - 80 + 83 ] }, "steam_accounts": { "claims": [ - 4259, + 4547, { "distinct_on": [ - 4277, + 4565, "[steam_account_claims_select_column!]" ], "limit": [ @@ -98820,19 +104293,19 @@ export default { 40 ], "order_by": [ - 4275, + 4563, "[steam_account_claims_order_by!]" ], "where": [ - 4266 + 4554 ] } ], "claims_aggregate": [ - 4260, + 4548, { "distinct_on": [ - 4277, + 4565, "[steam_account_claims_select_column!]" ], "limit": [ @@ -98842,71 +104315,71 @@ export default { 40 ], "order_by": [ - 4275, + 4563, "[steam_account_claims_order_by!]" ], "where": [ - 4266 + 4554 ] } ], "created_at": [ - 4670 + 4958 ], "friend_capacity": [ 40 ], "id": [ - 5170 + 5458 ], "last_node": [ - 1806 + 2067 ], "last_node_id": [ - 80 + 83 ], "password": [ - 80 + 83 ], "role": [ - 80 + 83 ], "steam_level": [ 40 ], "steamid64": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "username": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_aggregate": { "aggregate": [ - 4285 + 4573 ], "nodes": [ - 4283 + 4571 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_aggregate_fields": { "avg": [ - 4286 + 4574 ], "count": [ 40, { "columns": [ - 4298, + 4586, "[steam_accounts_select_column!]" ], "distinct": [ @@ -98915,34 +104388,34 @@ export default { } ], "max": [ - 4291 + 4579 ], "min": [ - 4292 + 4580 ], "stddev": [ - 4300 + 4588 ], "stddev_pop": [ - 4301 + 4589 ], "stddev_samp": [ - 4302 + 4590 ], "sum": [ - 4305 + 4593 ], "var_pop": [ - 4308 + 4596 ], "var_samp": [ - 4309 + 4597 ], "variance": [ - 4310 + 4598 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_avg_fields": { @@ -98956,60 +104429,60 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_bool_exp": { "_and": [ - 4287 + 4575 ], "_not": [ - 4287 + 4575 ], "_or": [ - 4287 + 4575 ], "claims": [ - 4266 + 4554 ], "claims_aggregate": [ - 4261 + 4549 ], "created_at": [ - 4671 + 4959 ], "friend_capacity": [ 41 ], "id": [ - 5172 + 5460 ], "last_node": [ - 1818 + 2079 ], "last_node_id": [ - 82 + 85 ], "password": [ - 82 + 85 ], "role": [ - 82 + 85 ], "steam_level": [ 41 ], "steamid64": [ - 266 + 270 ], "updated_at": [ - 4671 + 4959 ], "username": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_constraint": {}, @@ -99021,121 +104494,121 @@ export default { 40 ], "steamid64": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_insert_input": { "claims": [ - 4265 + 4553 ], "created_at": [ - 4670 + 4958 ], "friend_capacity": [ 40 ], "id": [ - 5170 + 5458 ], "last_node": [ - 1830 + 2091 ], "last_node_id": [ - 80 + 83 ], "password": [ - 80 + 83 ], "role": [ - 80 + 83 ], "steam_level": [ 40 ], "steamid64": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "username": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_max_fields": { "created_at": [ - 4670 + 4958 ], "friend_capacity": [ 40 ], "id": [ - 5170 + 5458 ], "last_node_id": [ - 80 + 83 ], "password": [ - 80 + 83 ], "role": [ - 80 + 83 ], "steam_level": [ 40 ], "steamid64": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "username": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_min_fields": { "created_at": [ - 4670 + 4958 ], "friend_capacity": [ 40 ], "id": [ - 5170 + 5458 ], "last_node_id": [ - 80 + 83 ], "password": [ - 80 + 83 ], "role": [ - 80 + 83 ], "steam_level": [ 40 ], "steamid64": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "username": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_mutation_response": { @@ -99143,120 +104616,120 @@ export default { 40 ], "returning": [ - 4283 + 4571 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_obj_rel_insert_input": { "data": [ - 4290 + 4578 ], "on_conflict": [ - 4295 + 4583 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_on_conflict": { "constraint": [ - 4288 + 4576 ], "update_columns": [ - 4306 + 4594 ], "where": [ - 4287 + 4575 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_order_by": { "claims_aggregate": [ - 4264 + 4552 ], "created_at": [ - 3094 + 3377 ], "friend_capacity": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "last_node": [ - 1832 + 2093 ], "last_node_id": [ - 3094 + 3377 ], "password": [ - 3094 + 3377 ], "role": [ - 3094 + 3377 ], "steam_level": [ - 3094 + 3377 ], "steamid64": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "username": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4670 + 4958 ], "friend_capacity": [ 40 ], "id": [ - 5170 + 5458 ], "last_node_id": [ - 80 + 83 ], "password": [ - 80 + 83 ], "role": [ - 80 + 83 ], "steam_level": [ 40 ], "steamid64": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "username": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_stddev_fields": { @@ -99270,7 +104743,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_stddev_pop_fields": { @@ -99284,7 +104757,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_stddev_samp_fields": { @@ -99298,53 +104771,53 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 4304 + 4592 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "friend_capacity": [ 40 ], "id": [ - 5170 + 5458 ], "last_node_id": [ - 80 + 83 ], "password": [ - 80 + 83 ], "role": [ - 80 + 83 ], "steam_level": [ 40 ], "steamid64": [ - 264 + 268 ], "updated_at": [ - 4670 + 4958 ], "username": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_sum_fields": { @@ -99355,25 +104828,25 @@ export default { 40 ], "steamid64": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 4289 + 4577 ], "_set": [ - 4299 + 4587 ], "where": [ - 4287 + 4575 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_var_pop_fields": { @@ -99387,7 +104860,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_var_samp_fields": { @@ -99401,7 +104874,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "steam_accounts_variance_fields": { @@ -99415,64 +104888,64 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "system_alerts": { "created_at": [ - 4670 + 4958 ], "created_by": [ - 264 + 268 ], "dismissible": [ 5 ], "expires_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "is_active": [ 5 ], "message": [ - 80 + 83 ], "title": [ - 80 + 83 ], "type": [ - 1319 + 1383 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "system_alerts_aggregate": { "aggregate": [ - 4313 + 4601 ], "nodes": [ - 4311 + 4599 ], "__typename": [ - 80 + 83 ] }, "system_alerts_aggregate_fields": { "avg": [ - 4314 + 4602 ], "count": [ 40, { "columns": [ - 4325, + 4613, "[system_alerts_select_column!]" ], "distinct": [ @@ -99481,34 +104954,34 @@ export default { } ], "max": [ - 4319 + 4607 ], "min": [ - 4320 + 4608 ], "stddev": [ - 4327 + 4615 ], "stddev_pop": [ - 4328 + 4616 ], "stddev_samp": [ - 4329 + 4617 ], "sum": [ - 4332 + 4620 ], "var_pop": [ - 4335 + 4623 ], "var_samp": [ - 4336 + 4624 ], "variance": [ - 4337 + 4625 ], "__typename": [ - 80 + 83 ] }, "system_alerts_avg_fields": { @@ -99516,147 +104989,147 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "system_alerts_bool_exp": { "_and": [ - 4315 + 4603 ], "_not": [ - 4315 + 4603 ], "_or": [ - 4315 + 4603 ], "created_at": [ - 4671 + 4959 ], "created_by": [ - 266 + 270 ], "dismissible": [ 6 ], "expires_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "is_active": [ 6 ], "message": [ - 82 + 85 ], "title": [ - 82 + 85 ], "type": [ - 1320 + 1384 ], "updated_at": [ - 4671 + 4959 ], "__typename": [ - 80 + 83 ] }, "system_alerts_constraint": {}, "system_alerts_inc_input": { "created_by": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "system_alerts_insert_input": { "created_at": [ - 4670 + 4958 ], "created_by": [ - 264 + 268 ], "dismissible": [ 5 ], "expires_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "is_active": [ 5 ], "message": [ - 80 + 83 ], "title": [ - 80 + 83 ], "type": [ - 1319 + 1383 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "system_alerts_max_fields": { "created_at": [ - 4670 + 4958 ], "created_by": [ - 264 + 268 ], "expires_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "system_alerts_min_fields": { "created_at": [ - 4670 + 4958 ], "created_by": [ - 264 + 268 ], "expires_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "message": [ - 80 + 83 ], "title": [ - 80 + 83 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "system_alerts_mutation_response": { @@ -99664,103 +105137,103 @@ export default { 40 ], "returning": [ - 4311 + 4599 ], "__typename": [ - 80 + 83 ] }, "system_alerts_on_conflict": { "constraint": [ - 4316 + 4604 ], "update_columns": [ - 4333 + 4621 ], "where": [ - 4315 + 4603 ], "__typename": [ - 80 + 83 ] }, "system_alerts_order_by": { "created_at": [ - 3094 + 3377 ], "created_by": [ - 3094 + 3377 ], "dismissible": [ - 3094 + 3377 ], "expires_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "is_active": [ - 3094 + 3377 ], "message": [ - 3094 + 3377 ], "title": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "system_alerts_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4670 + 4958 ], "created_by": [ - 264 + 268 ], "dismissible": [ 5 ], "expires_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "is_active": [ 5 ], "message": [ - 80 + 83 ], "title": [ - 80 + 83 ], "type": [ - 1319 + 1383 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "system_alerts_stddev_fields": { @@ -99768,7 +105241,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "system_alerts_stddev_pop_fields": { @@ -99776,7 +105249,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "system_alerts_stddev_samp_fields": { @@ -99784,76 +105257,76 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "system_alerts_stream_cursor_input": { "initial_value": [ - 4331 + 4619 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "created_by": [ - 264 + 268 ], "dismissible": [ 5 ], "expires_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "is_active": [ 5 ], "message": [ - 80 + 83 ], "title": [ - 80 + 83 ], "type": [ - 1319 + 1383 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "system_alerts_sum_fields": { "created_by": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 4317 + 4605 ], "_set": [ - 4326 + 4614 ], "where": [ - 4315 + 4603 ], "__typename": [ - 80 + 83 ] }, "system_alerts_var_pop_fields": { @@ -99861,7 +105334,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "system_alerts_var_samp_fields": { @@ -99869,7 +105342,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "system_alerts_variance_fields": { @@ -99877,83 +105350,83 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_invites": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "invited_by": [ - 4052 + 4335 ], "invited_by_player_steam_id": [ - 264 + 268 ], "player": [ - 4052 + 4335 ], "steam_id": [ - 264 + 268 ], "team": [ - 4621 + 4909 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_invites_aggregate": { "aggregate": [ - 4342 + 4630 ], "nodes": [ - 4338 + 4626 ], "__typename": [ - 80 + 83 ] }, "team_invites_aggregate_bool_exp": { "count": [ - 4341 + 4629 ], "__typename": [ - 80 + 83 ] }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 4359 + 4647 ], "distinct": [ 5 ], "filter": [ - 4347 + 4635 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "team_invites_aggregate_fields": { "avg": [ - 4345 + 4633 ], "count": [ 40, { "columns": [ - 4359, + 4647, "[team_invites_select_column!]" ], "distinct": [ @@ -99962,83 +105435,83 @@ export default { } ], "max": [ - 4351 + 4639 ], "min": [ - 4353 + 4641 ], "stddev": [ - 4361 + 4649 ], "stddev_pop": [ - 4363 + 4651 ], "stddev_samp": [ - 4365 + 4653 ], "sum": [ - 4369 + 4657 ], "var_pop": [ - 4373 + 4661 ], "var_samp": [ - 4375 + 4663 ], "variance": [ - 4377 + 4665 ], "__typename": [ - 80 + 83 ] }, "team_invites_aggregate_order_by": { "avg": [ - 4346 + 4634 ], "count": [ - 3094 + 3377 ], "max": [ - 4352 + 4640 ], "min": [ - 4354 + 4642 ], "stddev": [ - 4362 + 4650 ], "stddev_pop": [ - 4364 + 4652 ], "stddev_samp": [ - 4366 + 4654 ], "sum": [ - 4370 + 4658 ], "var_pop": [ - 4374 + 4662 ], "var_samp": [ - 4376 + 4664 ], "variance": [ - 4378 + 4666 ], "__typename": [ - 80 + 83 ] }, "team_invites_arr_rel_insert_input": { "data": [ - 4350 + 4638 ], "on_conflict": [ - 4356 + 4644 ], "__typename": [ - 80 + 83 ] }, "team_invites_avg_fields": { @@ -100049,177 +105522,177 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_invites_bool_exp": { "_and": [ - 4347 + 4635 ], "_not": [ - 4347 + 4635 ], "_or": [ - 4347 + 4635 ], "created_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "invited_by": [ - 4056 + 4339 ], "invited_by_player_steam_id": [ - 266 + 270 ], "player": [ - 4056 + 4339 ], "steam_id": [ - 266 + 270 ], "team": [ - 4632 + 4920 ], "team_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "team_invites_constraint": {}, "team_invites_inc_input": { "invited_by_player_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "team_invites_insert_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "invited_by": [ - 4063 + 4346 ], "invited_by_player_steam_id": [ - 264 + 268 ], "player": [ - 4063 + 4346 ], "steam_id": [ - 264 + 268 ], "team": [ - 4641 + 4929 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_invites_max_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "invited_by_player_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_invites_max_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_invites_min_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "invited_by_player_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_invites_min_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_invites_mutation_response": { @@ -100227,82 +105700,82 @@ export default { 40 ], "returning": [ - 4338 + 4626 ], "__typename": [ - 80 + 83 ] }, "team_invites_on_conflict": { "constraint": [ - 4348 + 4636 ], "update_columns": [ - 4371 + 4659 ], "where": [ - 4347 + 4635 ], "__typename": [ - 80 + 83 ] }, "team_invites_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "invited_by": [ - 4065 + 4348 ], "invited_by_player_steam_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "steam_id": [ - 3094 + 3377 ], "team": [ - 4643 + 4931 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_invites_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "invited_by_player_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_invites_stddev_fields": { @@ -100313,18 +105786,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_invites_stddev_pop_fields": { @@ -100335,18 +105808,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_invites_stddev_samp_fields": { @@ -100357,86 +105830,86 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_invites_stream_cursor_input": { "initial_value": [ - 4368 + 4656 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "invited_by_player_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_invites_sum_fields": { "invited_by_player_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 4349 + 4637 ], "_set": [ - 4360 + 4648 ], "where": [ - 4347 + 4635 ], "__typename": [ - 80 + 83 ] }, "team_invites_var_pop_fields": { @@ -100447,18 +105920,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_invites_var_samp_fields": { @@ -100469,18 +105942,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_invites_variance_fields": { @@ -100491,18 +105964,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_roster": { @@ -100510,115 +105983,115 @@ export default { 5 ], "player": [ - 4052 + 4335 ], "player_steam_id": [ - 264 + 268 ], "role": [ - 1339 + 1403 ], "roster_image_url": [ - 80 + 83 ], "status": [ - 1360 + 1424 ], "team": [ - 4621 + 4909 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_roster_aggregate": { "aggregate": [ - 4385 + 4673 ], "nodes": [ - 4379 + 4667 ], "__typename": [ - 80 + 83 ] }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 4382 + 4670 ], "bool_or": [ - 4383 + 4671 ], "count": [ - 4384 + 4672 ], "__typename": [ - 80 + 83 ] }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 4403 + 4691 ], "distinct": [ 5 ], "filter": [ - 4390 + 4678 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 4404 + 4692 ], "distinct": [ 5 ], "filter": [ - 4390 + 4678 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 4402 + 4690 ], "distinct": [ 5 ], "filter": [ - 4390 + 4678 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "team_roster_aggregate_fields": { "avg": [ - 4388 + 4676 ], "count": [ 40, { "columns": [ - 4402, + 4690, "[team_roster_select_column!]" ], "distinct": [ @@ -100627,83 +106100,83 @@ export default { } ], "max": [ - 4394 + 4682 ], "min": [ - 4396 + 4684 ], "stddev": [ - 4406 + 4694 ], "stddev_pop": [ - 4408 + 4696 ], "stddev_samp": [ - 4410 + 4698 ], "sum": [ - 4414 + 4702 ], "var_pop": [ - 4418 + 4706 ], "var_samp": [ - 4420 + 4708 ], "variance": [ - 4422 + 4710 ], "__typename": [ - 80 + 83 ] }, "team_roster_aggregate_order_by": { "avg": [ - 4389 + 4677 ], "count": [ - 3094 + 3377 ], "max": [ - 4395 + 4683 ], "min": [ - 4397 + 4685 ], "stddev": [ - 4407 + 4695 ], "stddev_pop": [ - 4409 + 4697 ], "stddev_samp": [ - 4411 + 4699 ], "sum": [ - 4415 + 4703 ], "var_pop": [ - 4419 + 4707 ], "var_samp": [ - 4421 + 4709 ], "variance": [ - 4423 + 4711 ], "__typename": [ - 80 + 83 ] }, "team_roster_arr_rel_insert_input": { "data": [ - 4393 + 4681 ], "on_conflict": [ - 4399 + 4687 ], "__typename": [ - 80 + 83 ] }, "team_roster_avg_fields": { @@ -100711,62 +106184,62 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_roster_avg_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_roster_bool_exp": { "_and": [ - 4390 + 4678 ], "_not": [ - 4390 + 4678 ], "_or": [ - 4390 + 4678 ], "coach": [ 6 ], "player": [ - 4056 + 4339 ], "player_steam_id": [ - 266 + 270 ], "role": [ - 1340 + 1404 ], "roster_image_url": [ - 82 + 85 ], "status": [ - 1361 + 1425 ], "team": [ - 4632 + 4920 ], "team_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "team_roster_constraint": {}, "team_roster_inc_input": { "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "team_roster_insert_input": { @@ -100774,84 +106247,84 @@ export default { 5 ], "player": [ - 4063 + 4346 ], "player_steam_id": [ - 264 + 268 ], "role": [ - 1339 + 1403 ], "roster_image_url": [ - 80 + 83 ], "status": [ - 1360 + 1424 ], "team": [ - 4641 + 4929 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_roster_max_fields": { "player_steam_id": [ - 264 + 268 ], "roster_image_url": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_roster_max_order_by": { "player_steam_id": [ - 3094 + 3377 ], "roster_image_url": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_roster_min_fields": { "player_steam_id": [ - 264 + 268 ], "roster_image_url": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_roster_min_order_by": { "player_steam_id": [ - 3094 + 3377 ], "roster_image_url": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_roster_mutation_response": { @@ -100859,64 +106332,64 @@ export default { 40 ], "returning": [ - 4379 + 4667 ], "__typename": [ - 80 + 83 ] }, "team_roster_on_conflict": { "constraint": [ - 4391 + 4679 ], "update_columns": [ - 4416 + 4704 ], "where": [ - 4390 + 4678 ], "__typename": [ - 80 + 83 ] }, "team_roster_order_by": { "coach": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "player_steam_id": [ - 3094 + 3377 ], "role": [ - 3094 + 3377 ], "roster_image_url": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "team": [ - 4643 + 4931 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_roster_pk_columns_input": { "player_steam_id": [ - 264 + 268 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_roster_select_column": {}, @@ -100927,22 +106400,22 @@ export default { 5 ], "player_steam_id": [ - 264 + 268 ], "role": [ - 1339 + 1403 ], "roster_image_url": [ - 80 + 83 ], "status": [ - 1360 + 1424 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_roster_stddev_fields": { @@ -100950,15 +106423,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_roster_stddev_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_roster_stddev_pop_fields": { @@ -100966,15 +106439,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_roster_stddev_samp_fields": { @@ -100982,26 +106455,26 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_roster_stream_cursor_input": { "initial_value": [ - 4413 + 4701 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "team_roster_stream_cursor_value_input": { @@ -101009,53 +106482,53 @@ export default { 5 ], "player_steam_id": [ - 264 + 268 ], "role": [ - 1339 + 1403 ], "roster_image_url": [ - 80 + 83 ], "status": [ - 1360 + 1424 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_roster_sum_fields": { "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "team_roster_sum_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 4392 + 4680 ], "_set": [ - 4405 + 4693 ], "where": [ - 4390 + 4678 ], "__typename": [ - 80 + 83 ] }, "team_roster_var_pop_fields": { @@ -101063,15 +106536,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_roster_var_samp_fields": { @@ -101079,15 +106552,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_roster_variance_fields": { @@ -101095,20 +106568,20 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_roster_variance_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts": { "created_at": [ - 4670 + 4958 ], "elo_max": [ 40 @@ -101120,44 +106593,44 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "last_notified_at": [ - 4670 + 4958 ], "regions": [ - 80 + 83 ], "team": [ - 4621 + 4909 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_aggregate": { "aggregate": [ - 4426 + 4714 ], "nodes": [ - 4424 + 4712 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 4427 + 4715 ], "count": [ 40, { "columns": [ - 4438, + 4726, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -101166,34 +106639,34 @@ export default { } ], "max": [ - 4432 + 4720 ], "min": [ - 4433 + 4721 ], "stddev": [ - 4440 + 4728 ], "stddev_pop": [ - 4441 + 4729 ], "stddev_samp": [ - 4442 + 4730 ], "sum": [ - 4445 + 4733 ], "var_pop": [ - 4448 + 4736 ], "var_samp": [ - 4449 + 4737 ], "variance": [ - 4450 + 4738 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_avg_fields": { @@ -101204,21 +106677,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_bool_exp": { "_and": [ - 4428 + 4716 ], "_not": [ - 4428 + 4716 ], "_or": [ - 4428 + 4716 ], "created_at": [ - 4671 + 4959 ], "elo_max": [ 41 @@ -101230,22 +106703,22 @@ export default { 6 ], "id": [ - 5172 + 5460 ], "last_notified_at": [ - 4671 + 4959 ], "regions": [ - 81 + 84 ], "team": [ - 4632 + 4920 ], "team_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_constraint": {}, @@ -101257,12 +106730,12 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_insert_input": { "created_at": [ - 4670 + 4958 ], "elo_max": [ 40 @@ -101274,27 +106747,27 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "last_notified_at": [ - 4670 + 4958 ], "regions": [ - 80 + 83 ], "team": [ - 4641 + 4929 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_max_fields": { "created_at": [ - 4670 + 4958 ], "elo_max": [ 40 @@ -101303,24 +106776,24 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "last_notified_at": [ - 4670 + 4958 ], "regions": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_min_fields": { "created_at": [ - 4670 + 4958 ], "elo_max": [ 40 @@ -101329,19 +106802,19 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "last_notified_at": [ - 4670 + 4958 ], "regions": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_mutation_response": { @@ -101349,70 +106822,70 @@ export default { 40 ], "returning": [ - 4424 + 4712 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_on_conflict": { "constraint": [ - 4429 + 4717 ], "update_columns": [ - 4446 + 4734 ], "where": [ - 4428 + 4716 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_order_by": { "created_at": [ - 3094 + 3377 ], "elo_max": [ - 3094 + 3377 ], "elo_min": [ - 3094 + 3377 ], "enabled": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "last_notified_at": [ - 3094 + 3377 ], "regions": [ - 3094 + 3377 ], "team": [ - 4643 + 4931 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4670 + 4958 ], "elo_max": [ 40 @@ -101424,19 +106897,19 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "last_notified_at": [ - 4670 + 4958 ], "regions": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_stddev_fields": { @@ -101447,7 +106920,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_stddev_pop_fields": { @@ -101458,7 +106931,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_stddev_samp_fields": { @@ -101469,23 +106942,23 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 4444 + 4732 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "elo_max": [ 40 @@ -101497,19 +106970,19 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "last_notified_at": [ - 4670 + 4958 ], "regions": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_sum_fields": { @@ -101520,22 +106993,22 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 4430 + 4718 ], "_set": [ - 4439 + 4727 ], "where": [ - 4428 + 4716 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_var_pop_fields": { @@ -101546,7 +107019,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_var_samp_fields": { @@ -101557,7 +107030,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_alerts_variance_fields": { @@ -101568,109 +107041,109 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability": { "created_at": [ - 4670 + 4958 ], "ends_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4670 + 4958 ], "team": [ - 4621 + 4909 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_aggregate": { "aggregate": [ - 4457 + 4745 ], "nodes": [ - 4451 + 4739 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 4454 + 4742 ], "bool_or": [ - 4455 + 4743 ], "count": [ - 4456 + 4744 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 4472 + 4760 ], "distinct": [ 5 ], "filter": [ - 4460 + 4748 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 4473 + 4761 ], "distinct": [ 5 ], "filter": [ - 4460 + 4748 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 4471 + 4759 ], "distinct": [ 5 ], "filter": [ - 4460 + 4748 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_aggregate_fields": { @@ -101678,7 +107151,7 @@ export default { 40, { "columns": [ - 4471, + 4759, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -101687,180 +107160,180 @@ export default { } ], "max": [ - 4463 + 4751 ], "min": [ - 4465 + 4753 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_aggregate_order_by": { "count": [ - 3094 + 3377 ], "max": [ - 4464 + 4752 ], "min": [ - 4466 + 4754 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 4462 + 4750 ], "on_conflict": [ - 4468 + 4756 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_bool_exp": { "_and": [ - 4460 + 4748 ], "_not": [ - 4460 + 4748 ], "_or": [ - 4460 + 4748 ], "created_at": [ - 4671 + 4959 ], "ends_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "recurring_weekly": [ 6 ], "starts_at": [ - 4671 + 4959 ], "team": [ - 4632 + 4920 ], "team_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4670 + 4958 ], "ends_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4670 + 4958 ], "team": [ - 4641 + 4929 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_max_fields": { "created_at": [ - 4670 + 4958 ], "ends_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "starts_at": [ - 4670 + 4958 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_max_order_by": { "created_at": [ - 3094 + 3377 ], "ends_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "starts_at": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_min_fields": { "created_at": [ - 4670 + 4958 ], "ends_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "starts_at": [ - 4670 + 4958 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_min_order_by": { "created_at": [ - 3094 + 3377 ], "ends_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "starts_at": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_mutation_response": { @@ -101868,58 +107341,58 @@ export default { 40 ], "returning": [ - 4451 + 4739 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_on_conflict": { "constraint": [ - 4461 + 4749 ], "update_columns": [ - 4477 + 4765 ], "where": [ - 4460 + 4748 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_order_by": { "created_at": [ - 3094 + 3377 ], "ends_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "recurring_weekly": [ - 3094 + 3377 ], "starts_at": [ - 3094 + 3377 ], "team": [ - 4643 + 4931 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_select_column": {}, @@ -101927,150 +107400,150 @@ 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 + 4958 ], "ends_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4670 + 4958 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 4476 + 4764 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "ends_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "recurring_weekly": [ 5 ], "starts_at": [ - 4670 + 4958 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 4474 + 4762 ], "where": [ - 4460 + 4748 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "proposed_by": [ - 4052 + 4335 ], "proposed_by_steam_id": [ - 264 + 268 ], "proposed_by_team": [ - 4621 + 4909 ], "proposed_by_team_id": [ - 5170 + 5458 ], "proposed_scheduled_at": [ - 4670 + 4958 ], "request": [ - 4520 + 4808 ], "request_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 4483 + 4771 ], "nodes": [ - 4479 + 4767 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 4482 + 4770 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 4500 + 4788 ], "distinct": [ 5 ], "filter": [ - 4488 + 4776 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 4486 + 4774 ], "count": [ 40, { "columns": [ - 4500, + 4788, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -102079,83 +107552,83 @@ export default { } ], "max": [ - 4492 + 4780 ], "min": [ - 4494 + 4782 ], "stddev": [ - 4502 + 4790 ], "stddev_pop": [ - 4504 + 4792 ], "stddev_samp": [ - 4506 + 4794 ], "sum": [ - 4510 + 4798 ], "var_pop": [ - 4514 + 4802 ], "var_samp": [ - 4516 + 4804 ], "variance": [ - 4518 + 4806 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 4487 + 4775 ], "count": [ - 3094 + 3377 ], "max": [ - 4493 + 4781 ], "min": [ - 4495 + 4783 ], "stddev": [ - 4503 + 4791 ], "stddev_pop": [ - 4505 + 4793 ], "stddev_samp": [ - 4507 + 4795 ], "sum": [ - 4511 + 4799 ], "var_pop": [ - 4515 + 4803 ], "var_samp": [ - 4517 + 4805 ], "variance": [ - 4519 + 4807 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 4491 + 4779 ], "on_conflict": [ - 4497 + 4785 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_avg_fields": { @@ -102163,189 +107636,189 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 4488 + 4776 ], "_not": [ - 4488 + 4776 ], "_or": [ - 4488 + 4776 ], "created_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "proposed_by": [ - 4056 + 4339 ], "proposed_by_steam_id": [ - 266 + 270 ], "proposed_by_team": [ - 4632 + 4920 ], "proposed_by_team_id": [ - 5172 + 5460 ], "proposed_scheduled_at": [ - 4671 + 4959 ], "request": [ - 4531 + 4819 ], "request_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_constraint": {}, "team_scrim_request_proposals_inc_input": { "proposed_by_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "proposed_by": [ - 4063 + 4346 ], "proposed_by_steam_id": [ - 264 + 268 ], "proposed_by_team": [ - 4641 + 4929 ], "proposed_by_team_id": [ - 5170 + 5458 ], "proposed_scheduled_at": [ - 4670 + 4958 ], "request": [ - 4540 + 4828 ], "request_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "proposed_by_steam_id": [ - 264 + 268 ], "proposed_by_team_id": [ - 5170 + 5458 ], "proposed_scheduled_at": [ - 4670 + 4958 ], "request_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "proposed_by_steam_id": [ - 3094 + 3377 ], "proposed_by_team_id": [ - 3094 + 3377 ], "proposed_scheduled_at": [ - 3094 + 3377 ], "request_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "proposed_by_steam_id": [ - 264 + 268 ], "proposed_by_team_id": [ - 5170 + 5458 ], "proposed_scheduled_at": [ - 4670 + 4958 ], "request_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "proposed_by_steam_id": [ - 3094 + 3377 ], "proposed_by_team_id": [ - 3094 + 3377 ], "proposed_scheduled_at": [ - 3094 + 3377 ], "request_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_mutation_response": { @@ -102353,88 +107826,88 @@ export default { 40 ], "returning": [ - 4479 + 4767 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 4489 + 4777 ], "update_columns": [ - 4512 + 4800 ], "where": [ - 4488 + 4776 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "proposed_by": [ - 4065 + 4348 ], "proposed_by_steam_id": [ - 3094 + 3377 ], "proposed_by_team": [ - 4643 + 4931 ], "proposed_by_team_id": [ - 3094 + 3377 ], "proposed_scheduled_at": [ - 3094 + 3377 ], "request": [ - 4542 + 4830 ], "request_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "proposed_by_steam_id": [ - 264 + 268 ], "proposed_by_team_id": [ - 5170 + 5458 ], "proposed_scheduled_at": [ - 4670 + 4958 ], "request_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_stddev_fields": { @@ -102442,15 +107915,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_stddev_pop_fields": { @@ -102458,15 +107931,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_stddev_samp_fields": { @@ -102474,80 +107947,80 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 4509 + 4797 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "proposed_by_steam_id": [ - 264 + 268 ], "proposed_by_team_id": [ - 5170 + 5458 ], "proposed_scheduled_at": [ - 4670 + 4958 ], "request_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_sum_fields": { "proposed_by_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 4490 + 4778 ], "_set": [ - 4501 + 4789 ], "where": [ - 4488 + 4776 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_var_pop_fields": { @@ -102555,15 +108028,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_var_samp_fields": { @@ -102571,15 +108044,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_variance_fields": { @@ -102587,15 +108060,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests": { @@ -102603,55 +108076,55 @@ export default { 5 ], "awaiting_team": [ - 4621 + 4909 ], "awaiting_team_id": [ - 5170 + 5458 ], "canceled_by_team_id": [ - 5170 + 5458 ], "canceled_late": [ 5 ], "created_at": [ - 4670 + 4958 ], "expires_at": [ - 4670 + 4958 ], "from_team": [ - 4621 + 4909 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_options": [ - 2758 + 3019 ], "match_options_id": [ - 5170 + 5458 ], "match_outcome": [ - 80 + 83 ], "proposals": [ - 4479, + 4767, { "distinct_on": [ - 4500, + 4788, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -102661,19 +108134,19 @@ export default { 40 ], "order_by": [ - 4498, + 4786, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4488 + 4776 ] } ], "proposals_aggregate": [ - 4480, + 4768, { "distinct_on": [ - 4500, + 4788, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -102683,130 +108156,130 @@ export default { 40 ], "order_by": [ - 4498, + 4786, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4488 + 4776 ] } ], "proposed_scheduled_at": [ - 4670 + 4958 ], "region": [ - 80 + 83 ], "requested_by": [ - 4052 + 4335 ], "requested_by_steam_id": [ - 264 + 268 ], "responded_at": [ - 4670 + 4958 ], "status": [ - 1259 + 1323 ], "to_team": [ - 4621 + 4909 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_aggregate": { "aggregate": [ - 4526 + 4814 ], "nodes": [ - 4520 + 4808 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 4523 + 4811 ], "bool_or": [ - 4524 + 4812 ], "count": [ - 4525 + 4813 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 4545 + 4833 ], "distinct": [ 5 ], "filter": [ - 4531 + 4819 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 4546 + 4834 ], "distinct": [ 5 ], "filter": [ - 4531 + 4819 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 4544 + 4832 ], "distinct": [ 5 ], "filter": [ - 4531 + 4819 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_aggregate_fields": { "avg": [ - 4529 + 4817 ], "count": [ 40, { "columns": [ - 4544, + 4832, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -102815,83 +108288,83 @@ export default { } ], "max": [ - 4535 + 4823 ], "min": [ - 4537 + 4825 ], "stddev": [ - 4548 + 4836 ], "stddev_pop": [ - 4550 + 4838 ], "stddev_samp": [ - 4552 + 4840 ], "sum": [ - 4556 + 4844 ], "var_pop": [ - 4560 + 4848 ], "var_samp": [ - 4562 + 4850 ], "variance": [ - 4564 + 4852 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 4530 + 4818 ], "count": [ - 3094 + 3377 ], "max": [ - 4536 + 4824 ], "min": [ - 4538 + 4826 ], "stddev": [ - 4549 + 4837 ], "stddev_pop": [ - 4551 + 4839 ], "stddev_samp": [ - 4553 + 4841 ], "sum": [ - 4557 + 4845 ], "var_pop": [ - 4561 + 4849 ], "var_samp": [ - 4563 + 4851 ], "variance": [ - 4565 + 4853 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 4534 + 4822 ], "on_conflict": [ - 4541 + 4829 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_avg_fields": { @@ -102899,119 +108372,119 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_bool_exp": { "_and": [ - 4531 + 4819 ], "_not": [ - 4531 + 4819 ], "_or": [ - 4531 + 4819 ], "auto_generated": [ 6 ], "awaiting_team": [ - 4632 + 4920 ], "awaiting_team_id": [ - 5172 + 5460 ], "canceled_by_team_id": [ - 5172 + 5460 ], "canceled_late": [ 6 ], "created_at": [ - 4671 + 4959 ], "expires_at": [ - 4671 + 4959 ], "from_team": [ - 4632 + 4920 ], "from_team_checked_in": [ 6 ], "from_team_id": [ - 5172 + 5460 ], "id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_options": [ - 2762 + 3030 ], "match_options_id": [ - 5172 + 5460 ], "match_outcome": [ - 82 + 85 ], "proposals": [ - 4488 + 4776 ], "proposals_aggregate": [ - 4481 + 4769 ], "proposed_scheduled_at": [ - 4671 + 4959 ], "region": [ - 82 + 85 ], "requested_by": [ - 4056 + 4339 ], "requested_by_steam_id": [ - 266 + 270 ], "responded_at": [ - 4671 + 4959 ], "status": [ - 1260 + 1324 ], "to_team": [ - 4632 + 4920 ], "to_team_checked_in": [ 6 ], "to_team_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_constraint": {}, "team_scrim_requests_inc_input": { "requested_by_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_insert_input": { @@ -103019,270 +108492,270 @@ export default { 5 ], "awaiting_team": [ - 4641 + 4929 ], "awaiting_team_id": [ - 5170 + 5458 ], "canceled_by_team_id": [ - 5170 + 5458 ], "canceled_late": [ 5 ], "created_at": [ - 4670 + 4958 ], "expires_at": [ - 4670 + 4958 ], "from_team": [ - 4641 + 4929 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_options": [ - 2769 + 3039 ], "match_options_id": [ - 5170 + 5458 ], "match_outcome": [ - 80 + 83 ], "proposals": [ - 4485 + 4773 ], "proposed_scheduled_at": [ - 4670 + 4958 ], "region": [ - 80 + 83 ], "requested_by": [ - 4063 + 4346 ], "requested_by_steam_id": [ - 264 + 268 ], "responded_at": [ - 4670 + 4958 ], "status": [ - 1259 + 1323 ], "to_team": [ - 4641 + 4929 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 5170 + 5458 ], "canceled_by_team_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "expires_at": [ - 4670 + 4958 ], "from_team_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "match_outcome": [ - 80 + 83 ], "proposed_scheduled_at": [ - 4670 + 4958 ], "region": [ - 80 + 83 ], "requested_by_steam_id": [ - 264 + 268 ], "responded_at": [ - 4670 + 4958 ], "to_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 3094 + 3377 ], "canceled_by_team_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "expires_at": [ - 3094 + 3377 ], "from_team_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "match_outcome": [ - 3094 + 3377 ], "proposed_scheduled_at": [ - 3094 + 3377 ], "region": [ - 3094 + 3377 ], "requested_by_steam_id": [ - 3094 + 3377 ], "responded_at": [ - 3094 + 3377 ], "to_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 5170 + 5458 ], "canceled_by_team_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "expires_at": [ - 4670 + 4958 ], "from_team_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "match_outcome": [ - 80 + 83 ], "proposed_scheduled_at": [ - 4670 + 4958 ], "region": [ - 80 + 83 ], "requested_by_steam_id": [ - 264 + 268 ], "responded_at": [ - 4670 + 4958 ], "to_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 3094 + 3377 ], "canceled_by_team_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "expires_at": [ - 3094 + 3377 ], "from_team_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "match_outcome": [ - 3094 + 3377 ], "proposed_scheduled_at": [ - 3094 + 3377 ], "region": [ - 3094 + 3377 ], "requested_by_steam_id": [ - 3094 + 3377 ], "responded_at": [ - 3094 + 3377 ], "to_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_mutation_response": { @@ -103290,126 +108763,126 @@ export default { 40 ], "returning": [ - 4520 + 4808 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 4534 + 4822 ], "on_conflict": [ - 4541 + 4829 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_on_conflict": { "constraint": [ - 4532 + 4820 ], "update_columns": [ - 4558 + 4846 ], "where": [ - 4531 + 4819 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_order_by": { "auto_generated": [ - 3094 + 3377 ], "awaiting_team": [ - 4643 + 4931 ], "awaiting_team_id": [ - 3094 + 3377 ], "canceled_by_team_id": [ - 3094 + 3377 ], "canceled_late": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "expires_at": [ - 3094 + 3377 ], "from_team": [ - 4643 + 4931 ], "from_team_checked_in": [ - 3094 + 3377 ], "from_team_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_options": [ - 2771 + 3041 ], "match_options_id": [ - 3094 + 3377 ], "match_outcome": [ - 3094 + 3377 ], "proposals_aggregate": [ - 4484 + 4772 ], "proposed_scheduled_at": [ - 3094 + 3377 ], "region": [ - 3094 + 3377 ], "requested_by": [ - 4065 + 4348 ], "requested_by_steam_id": [ - 3094 + 3377 ], "responded_at": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "to_team": [ - 4643 + 4931 ], "to_team_checked_in": [ - 3094 + 3377 ], "to_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_select_column": {}, @@ -103420,61 +108893,61 @@ export default { 5 ], "awaiting_team_id": [ - 5170 + 5458 ], "canceled_by_team_id": [ - 5170 + 5458 ], "canceled_late": [ 5 ], "created_at": [ - 4670 + 4958 ], "expires_at": [ - 4670 + 4958 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "match_outcome": [ - 80 + 83 ], "proposed_scheduled_at": [ - 4670 + 4958 ], "region": [ - 80 + 83 ], "requested_by_steam_id": [ - 264 + 268 ], "responded_at": [ - 4670 + 4958 ], "status": [ - 1259 + 1323 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_stddev_fields": { @@ -103482,15 +108955,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_stddev_pop_fields": { @@ -103498,15 +108971,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_stddev_samp_fields": { @@ -103514,26 +108987,26 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 4555 + 4843 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_stream_cursor_value_input": { @@ -103541,92 +109014,92 @@ export default { 5 ], "awaiting_team_id": [ - 5170 + 5458 ], "canceled_by_team_id": [ - 5170 + 5458 ], "canceled_late": [ 5 ], "created_at": [ - 4670 + 4958 ], "expires_at": [ - 4670 + 4958 ], "from_team_checked_in": [ 5 ], "from_team_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "match_outcome": [ - 80 + 83 ], "proposed_scheduled_at": [ - 4670 + 4958 ], "region": [ - 80 + 83 ], "requested_by_steam_id": [ - 264 + 268 ], "responded_at": [ - 4670 + 4958 ], "status": [ - 1259 + 1323 ], "to_team_checked_in": [ 5 ], "to_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_sum_fields": { "requested_by_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 4533 + 4821 ], "_set": [ - 4547 + 4835 ], "where": [ - 4531 + 4819 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_var_pop_fields": { @@ -103634,15 +109107,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_var_samp_fields": { @@ -103650,15 +109123,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_variance_fields": { @@ -103666,15 +109139,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings": { @@ -103682,7 +109155,7 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "elo_max": [ 40 @@ -103694,50 +109167,50 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "map_ids": [ - 5170 + 5458 ], "notes": [ - 80 + 83 ], "regions": [ - 80 + 83 ], "team": [ - 4621 + 4909 ], "team_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_aggregate": { "aggregate": [ - 4568 + 4856 ], "nodes": [ - 4566 + 4854 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_aggregate_fields": { "avg": [ - 4569 + 4857 ], "count": [ 40, { "columns": [ - 4581, + 4869, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -103746,34 +109219,34 @@ export default { } ], "max": [ - 4574 + 4862 ], "min": [ - 4575 + 4863 ], "stddev": [ - 4583 + 4871 ], "stddev_pop": [ - 4584 + 4872 ], "stddev_samp": [ - 4585 + 4873 ], "sum": [ - 4588 + 4876 ], "var_pop": [ - 4591 + 4879 ], "var_samp": [ - 4592 + 4880 ], "variance": [ - 4593 + 4881 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_avg_fields": { @@ -103784,24 +109257,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_bool_exp": { "_and": [ - 4570 + 4858 ], "_not": [ - 4570 + 4858 ], "_or": [ - 4570 + 4858 ], "allow_outside_availability": [ 6 ], "created_at": [ - 4671 + 4959 ], "elo_max": [ 41 @@ -103813,28 +109286,28 @@ export default { 6 ], "id": [ - 5172 + 5460 ], "map_ids": [ - 5171 + 5459 ], "notes": [ - 82 + 85 ], "regions": [ - 81 + 84 ], "team": [ - 4632 + 4920 ], "team_id": [ - 5172 + 5460 ], "updated_at": [ - 4671 + 4959 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_constraint": {}, @@ -103846,7 +109319,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_insert_input": { @@ -103854,7 +109327,7 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "elo_max": [ 40 @@ -103866,33 +109339,33 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "map_ids": [ - 5170 + 5458 ], "notes": [ - 80 + 83 ], "regions": [ - 80 + 83 ], "team": [ - 4641 + 4929 ], "team_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_max_fields": { "created_at": [ - 4670 + 4958 ], "elo_max": [ 40 @@ -103901,30 +109374,30 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "map_ids": [ - 5170 + 5458 ], "notes": [ - 80 + 83 ], "regions": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_min_fields": { "created_at": [ - 4670 + 4958 ], "elo_max": [ 40 @@ -103933,25 +109406,25 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "map_ids": [ - 5170 + 5458 ], "notes": [ - 80 + 83 ], "regions": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_mutation_response": { @@ -103959,84 +109432,84 @@ export default { 40 ], "returning": [ - 4566 + 4854 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 4573 + 4861 ], "on_conflict": [ - 4578 + 4866 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_on_conflict": { "constraint": [ - 4571 + 4859 ], "update_columns": [ - 4589 + 4877 ], "where": [ - 4570 + 4858 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "elo_max": [ - 3094 + 3377 ], "elo_min": [ - 3094 + 3377 ], "enabled": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "map_ids": [ - 3094 + 3377 ], "notes": [ - 3094 + 3377 ], "regions": [ - 3094 + 3377 ], "team": [ - 4643 + 4931 ], "team_id": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_select_column": {}, @@ -104045,7 +109518,7 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "elo_max": [ 40 @@ -104057,25 +109530,25 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "map_ids": [ - 5170 + 5458 ], "notes": [ - 80 + 83 ], "regions": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_stddev_fields": { @@ -104086,7 +109559,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_stddev_pop_fields": { @@ -104097,7 +109570,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_stddev_samp_fields": { @@ -104108,18 +109581,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 4587 + 4875 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_stream_cursor_value_input": { @@ -104127,7 +109600,7 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "elo_max": [ 40 @@ -104139,25 +109612,25 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "map_ids": [ - 5170 + 5458 ], "notes": [ - 80 + 83 ], "regions": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_sum_fields": { @@ -104168,22 +109641,22 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 4572 + 4860 ], "_set": [ - 4582 + 4870 ], "where": [ - 4570 + 4858 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_var_pop_fields": { @@ -104194,7 +109667,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_var_samp_fields": { @@ -104205,7 +109678,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_scrim_settings_variance_fields": { @@ -104216,55 +109689,55 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_suggestions": { "created_at": [ - 4670 + 4958 ], "group_hash": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "last_notified_at": [ - 4670 + 4958 ], "member_steam_ids": [ - 264 + 268 ], "status": [ - 80 + 83 ], "together_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_aggregate": { "aggregate": [ - 4596 + 4884 ], "nodes": [ - 4594 + 4882 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_aggregate_fields": { "avg": [ - 4597 + 4885 ], "count": [ 40, { "columns": [ - 4608, + 4896, "[team_suggestions_select_column!]" ], "distinct": [ @@ -104273,34 +109746,34 @@ export default { } ], "max": [ - 4602 + 4890 ], "min": [ - 4603 + 4891 ], "stddev": [ - 4610 + 4898 ], "stddev_pop": [ - 4611 + 4899 ], "stddev_samp": [ - 4612 + 4900 ], "sum": [ - 4615 + 4903 ], "var_pop": [ - 4618 + 4906 ], "var_samp": [ - 4619 + 4907 ], "variance": [ - 4620 + 4908 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_avg_fields": { @@ -104308,42 +109781,42 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_bool_exp": { "_and": [ - 4598 + 4886 ], "_not": [ - 4598 + 4886 ], "_or": [ - 4598 + 4886 ], "created_at": [ - 4671 + 4959 ], "group_hash": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "last_notified_at": [ - 4671 + 4959 ], "member_steam_ids": [ - 265 + 269 ], "status": [ - 82 + 85 ], "together_count": [ 41 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_constraint": {}, @@ -104352,85 +109825,85 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_insert_input": { "created_at": [ - 4670 + 4958 ], "group_hash": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "last_notified_at": [ - 4670 + 4958 ], "member_steam_ids": [ - 264 + 268 ], "status": [ - 80 + 83 ], "together_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_max_fields": { "created_at": [ - 4670 + 4958 ], "group_hash": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "last_notified_at": [ - 4670 + 4958 ], "member_steam_ids": [ - 264 + 268 ], "status": [ - 80 + 83 ], "together_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_min_fields": { "created_at": [ - 4670 + 4958 ], "group_hash": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "last_notified_at": [ - 4670 + 4958 ], "member_steam_ids": [ - 264 + 268 ], "status": [ - 80 + 83 ], "together_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_mutation_response": { @@ -104438,85 +109911,85 @@ export default { 40 ], "returning": [ - 4594 + 4882 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_on_conflict": { "constraint": [ - 4599 + 4887 ], "update_columns": [ - 4616 + 4904 ], "where": [ - 4598 + 4886 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_order_by": { "created_at": [ - 3094 + 3377 ], "group_hash": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "last_notified_at": [ - 3094 + 3377 ], "member_steam_ids": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "together_count": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4670 + 4958 ], "group_hash": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "last_notified_at": [ - 4670 + 4958 ], "member_steam_ids": [ - 264 + 268 ], "status": [ - 80 + 83 ], "together_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_stddev_fields": { @@ -104524,7 +109997,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_stddev_pop_fields": { @@ -104532,7 +110005,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_stddev_samp_fields": { @@ -104540,44 +110013,44 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 4614 + 4902 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "group_hash": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "last_notified_at": [ - 4670 + 4958 ], "member_steam_ids": [ - 264 + 268 ], "status": [ - 80 + 83 ], "together_count": [ 40 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_sum_fields": { @@ -104585,22 +110058,22 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 4600 + 4888 ], "_set": [ - 4609 + 4897 ], "where": [ - 4598 + 4886 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_var_pop_fields": { @@ -104608,7 +110081,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_var_samp_fields": { @@ -104616,7 +110089,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "team_suggestions_variance_fields": { @@ -104624,18 +110097,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "teams": { "avatar_url": [ - 80 + 83 ], "awards": [ - 195, + 199, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -104645,19 +110118,19 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "awards_aggregate": [ - 196, + 200, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -104667,11 +110140,11 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], @@ -104688,19 +110161,19 @@ export default { 5 ], "captain": [ - 4052 + 4335 ], "captain_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "invites": [ - 4338, + 4626, { "distinct_on": [ - 4359, + 4647, "[team_invites_select_column!]" ], "limit": [ @@ -104710,19 +110183,19 @@ export default { 40 ], "order_by": [ - 4357, + 4645, "[team_invites_order_by!]" ], "where": [ - 4347 + 4635 ] } ], "invites_aggregate": [ - 4339, + 4627, { "distinct_on": [ - 4359, + 4647, "[team_invites_select_column!]" ], "limit": [ @@ -104732,11 +110205,11 @@ export default { 40 ], "order_by": [ - 4357, + 4645, "[team_invites_order_by!]" ], "where": [ - 4347 + 4635 ] } ], @@ -104744,10 +110217,10 @@ export default { 5 ], "match_lineups": [ - 2554, + 2815, { "distinct_on": [ - 2576, + 2837, "[match_lineups_select_column!]" ], "limit": [ @@ -104757,19 +110230,19 @@ export default { 40 ], "order_by": [ - 2574, + 2835, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2824 ] } ], "match_lineups_aggregate": [ - 2555, + 2816, { "distinct_on": [ - 2576, + 2837, "[match_lineups_select_column!]" ], "limit": [ @@ -104779,19 +110252,19 @@ export default { 40 ], "order_by": [ - 2574, + 2835, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2824 ] } ], "matches": [ - 2882, + 3161, { "distinct_on": [ - 2904, + 3185, "[matches_select_column!]" ], "limit": [ @@ -104801,37 +110274,37 @@ export default { 40 ], "order_by": [ - 2902, + 3183, "[matches_order_by!]" ], "where": [ - 2891 + 3172 ] } ], "name": [ - 80 + 83 ], "owner": [ - 4052 + 4335 ], "owner_steam_id": [ - 264 + 268 ], "ranks": [ - 5872 + 6160 ], "reputation": [ - 5892 + 6180 ], "role": [ - 80 + 83 ], "roster": [ - 4379, + 4667, { "distinct_on": [ - 4402, + 4690, "[team_roster_select_column!]" ], "limit": [ @@ -104841,19 +110314,19 @@ export default { 40 ], "order_by": [ - 4400, + 4688, "[team_roster_order_by!]" ], "where": [ - 4390 + 4678 ] } ], "roster_aggregate": [ - 4380, + 4668, { "distinct_on": [ - 4402, + 4690, "[team_roster_select_column!]" ], "limit": [ @@ -104863,19 +110336,19 @@ export default { 40 ], "order_by": [ - 4400, + 4688, "[team_roster_order_by!]" ], "where": [ - 4390 + 4678 ] } ], "scrim_availability": [ - 4451, + 4739, { "distinct_on": [ - 4471, + 4759, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -104885,19 +110358,19 @@ export default { 40 ], "order_by": [ - 4469, + 4757, "[team_scrim_availability_order_by!]" ], "where": [ - 4460 + 4748 ] } ], "scrim_availability_aggregate": [ - 4452, + 4740, { "distinct_on": [ - 4471, + 4759, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -104907,25 +110380,25 @@ export default { 40 ], "order_by": [ - 4469, + 4757, "[team_scrim_availability_order_by!]" ], "where": [ - 4460 + 4748 ] } ], "scrim_settings": [ - 4566 + 4854 ], "short_name": [ - 80 + 83 ], "tournament_teams": [ - 5064, + 5352, { "distinct_on": [ - 5086, + 5374, "[tournament_teams_select_column!]" ], "limit": [ @@ -104935,19 +110408,19 @@ export default { 40 ], "order_by": [ - 5084, + 5372, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5361 ] } ], "tournament_teams_aggregate": [ - 5065, + 5353, { "distinct_on": [ - 5086, + 5374, "[tournament_teams_select_column!]" ], "limit": [ @@ -104957,103 +110430,103 @@ export default { 40 ], "order_by": [ - 5084, + 5372, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5361 ] } ], "__typename": [ - 80 + 83 ] }, "teams_aggregate": { "aggregate": [ - 4627 + 4915 ], "nodes": [ - 4621 + 4909 ], "__typename": [ - 80 + 83 ] }, "teams_aggregate_bool_exp": { "bool_and": [ - 4624 + 4912 ], "bool_or": [ - 4625 + 4913 ], "count": [ - 4626 + 4914 ], "__typename": [ - 80 + 83 ] }, "teams_aggregate_bool_exp_bool_and": { "arguments": [ - 4646 + 4934 ], "distinct": [ 5 ], "filter": [ - 4632 + 4920 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "teams_aggregate_bool_exp_bool_or": { "arguments": [ - 4647 + 4935 ], "distinct": [ 5 ], "filter": [ - 4632 + 4920 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4645 + 4933 ], "distinct": [ 5 ], "filter": [ - 4632 + 4920 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "teams_aggregate_fields": { "avg": [ - 4630 + 4918 ], "count": [ 40, { "columns": [ - 4645, + 4933, "[teams_select_column!]" ], "distinct": [ @@ -105062,83 +110535,83 @@ export default { } ], "max": [ - 4636 + 4924 ], "min": [ - 4638 + 4926 ], "stddev": [ - 4649 + 4937 ], "stddev_pop": [ - 4651 + 4939 ], "stddev_samp": [ - 4653 + 4941 ], "sum": [ - 4657 + 4945 ], "var_pop": [ - 4661 + 4949 ], "var_samp": [ - 4663 + 4951 ], "variance": [ - 4665 + 4953 ], "__typename": [ - 80 + 83 ] }, "teams_aggregate_order_by": { "avg": [ - 4631 + 4919 ], "count": [ - 3094 + 3377 ], "max": [ - 4637 + 4925 ], "min": [ - 4639 + 4927 ], "stddev": [ - 4650 + 4938 ], "stddev_pop": [ - 4652 + 4940 ], "stddev_samp": [ - 4654 + 4942 ], "sum": [ - 4658 + 4946 ], "var_pop": [ - 4662 + 4950 ], "var_samp": [ - 4664 + 4952 ], "variance": [ - 4666 + 4954 ], "__typename": [ - 80 + 83 ] }, "teams_arr_rel_insert_input": { "data": [ - 4635 + 4923 ], "on_conflict": [ - 4642 + 4930 ], "__typename": [ - 80 + 83 ] }, "teams_avg_fields": { @@ -105149,38 +110622,38 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "teams_avg_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "teams_bool_exp": { "_and": [ - 4632 + 4920 ], "_not": [ - 4632 + 4920 ], "_or": [ - 4632 + 4920 ], "avatar_url": [ - 82 + 85 ], "awards": [ - 204 + 208 ], "awards_aggregate": [ - 197 + 201 ], "can_change_role": [ 6 @@ -105195,245 +110668,245 @@ export default { 6 ], "captain": [ - 4056 + 4339 ], "captain_steam_id": [ - 266 + 270 ], "id": [ - 5172 + 5460 ], "invites": [ - 4347 + 4635 ], "invites_aggregate": [ - 4340 + 4628 ], "is_organization": [ 6 ], "match_lineups": [ - 2563 + 2824 ], "match_lineups_aggregate": [ - 2556 + 2817 ], "matches": [ - 2891 + 3172 ], "name": [ - 82 + 85 ], "owner": [ - 4056 + 4339 ], "owner_steam_id": [ - 266 + 270 ], "ranks": [ - 5876 + 6164 ], "reputation": [ - 5896 + 6184 ], "role": [ - 82 + 85 ], "roster": [ - 4390 + 4678 ], "roster_aggregate": [ - 4381 + 4669 ], "scrim_availability": [ - 4460 + 4748 ], "scrim_availability_aggregate": [ - 4453 + 4741 ], "scrim_settings": [ - 4570 + 4858 ], "short_name": [ - 82 + 85 ], "tournament_teams": [ - 5073 + 5361 ], "tournament_teams_aggregate": [ - 5066 + 5354 ], "__typename": [ - 80 + 83 ] }, "teams_constraint": {}, "teams_inc_input": { "captain_steam_id": [ - 264 + 268 ], "owner_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "teams_insert_input": { "avatar_url": [ - 80 + 83 ], "awards": [ - 201 + 205 ], "captain": [ - 4063 + 4346 ], "captain_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "invites": [ - 4344 + 4632 ], "is_organization": [ 5 ], "match_lineups": [ - 2560 + 2821 ], "name": [ - 80 + 83 ], "owner": [ - 4063 + 4346 ], "owner_steam_id": [ - 264 + 268 ], "ranks": [ - 5880 + 6168 ], "reputation": [ - 5900 + 6188 ], "roster": [ - 4387 + 4675 ], "scrim_availability": [ - 4459 + 4747 ], "scrim_settings": [ - 4577 + 4865 ], "short_name": [ - 80 + 83 ], "tournament_teams": [ - 5070 + 5358 ], "__typename": [ - 80 + 83 ] }, "teams_max_fields": { "avatar_url": [ - 80 + 83 ], "captain_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "owner_steam_id": [ - 264 + 268 ], "role": [ - 80 + 83 ], "short_name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "teams_max_order_by": { "avatar_url": [ - 3094 + 3377 ], "captain_steam_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "short_name": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "teams_min_fields": { "avatar_url": [ - 80 + 83 ], "captain_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "owner_steam_id": [ - 264 + 268 ], "role": [ - 80 + 83 ], "short_name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "teams_min_order_by": { "avatar_url": [ - 3094 + 3377 ], "captain_steam_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "short_name": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "teams_mutation_response": { @@ -105441,120 +110914,120 @@ export default { 40 ], "returning": [ - 4621 + 4909 ], "__typename": [ - 80 + 83 ] }, "teams_obj_rel_insert_input": { "data": [ - 4635 + 4923 ], "on_conflict": [ - 4642 + 4930 ], "__typename": [ - 80 + 83 ] }, "teams_on_conflict": { "constraint": [ - 4633 + 4921 ], "update_columns": [ - 4659 + 4947 ], "where": [ - 4632 + 4920 ], "__typename": [ - 80 + 83 ] }, "teams_order_by": { "avatar_url": [ - 3094 + 3377 ], "awards_aggregate": [ - 200 + 204 ], "can_change_role": [ - 3094 + 3377 ], "can_invite": [ - 3094 + 3377 ], "can_manage_scrims": [ - 3094 + 3377 ], "can_remove": [ - 3094 + 3377 ], "captain": [ - 4065 + 4348 ], "captain_steam_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "invites_aggregate": [ - 4343 + 4631 ], "is_organization": [ - 3094 + 3377 ], "match_lineups_aggregate": [ - 2559 + 2820 ], "matches_aggregate": [ - 2887 + 3168 ], "name": [ - 3094 + 3377 ], "owner": [ - 4065 + 4348 ], "owner_steam_id": [ - 3094 + 3377 ], "ranks": [ - 5881 + 6169 ], "reputation": [ - 5901 + 6189 ], "role": [ - 3094 + 3377 ], "roster_aggregate": [ - 4386 + 4674 ], "scrim_availability_aggregate": [ - 4458 + 4746 ], "scrim_settings": [ - 4579 + 4867 ], "short_name": [ - 3094 + 3377 ], "tournament_teams_aggregate": [ - 5069 + 5357 ], "__typename": [ - 80 + 83 ] }, "teams_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "teams_select_column": {}, @@ -105562,28 +111035,28 @@ export default { "teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns": {}, "teams_set_input": { "avatar_url": [ - 80 + 83 ], "captain_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "is_organization": [ 5 ], "name": [ - 80 + 83 ], "owner_steam_id": [ - 264 + 268 ], "short_name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "teams_stddev_fields": { @@ -105594,18 +111067,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "teams_stddev_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "teams_stddev_pop_fields": { @@ -105616,18 +111089,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "teams_stddev_samp_fields": { @@ -105638,92 +111111,92 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "teams_stream_cursor_input": { "initial_value": [ - 4656 + 4944 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "teams_stream_cursor_value_input": { "avatar_url": [ - 80 + 83 ], "captain_steam_id": [ - 264 + 268 ], "id": [ - 5170 + 5458 ], "is_organization": [ 5 ], "name": [ - 80 + 83 ], "owner_steam_id": [ - 264 + 268 ], "short_name": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "teams_sum_fields": { "captain_steam_id": [ - 264 + 268 ], "owner_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "teams_sum_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "teams_update_column": {}, "teams_updates": { "_inc": [ - 4634 + 4922 ], "_set": [ - 4648 + 4936 ], "where": [ - 4632 + 4920 ], "__typename": [ - 80 + 83 ] }, "teams_var_pop_fields": { @@ -105734,18 +111207,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "teams_var_pop_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "teams_var_samp_fields": { @@ -105756,18 +111229,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "teams_var_samp_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "teams_variance_fields": { @@ -105778,105 +111251,105 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "teams_variance_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "time": {}, "time_comparison_exp": { "_eq": [ - 4667 + 4955 ], "_gt": [ - 4667 + 4955 ], "_gte": [ - 4667 + 4955 ], "_in": [ - 4667 + 4955 ], "_is_null": [ 5 ], "_lt": [ - 4667 + 4955 ], "_lte": [ - 4667 + 4955 ], "_neq": [ - 4667 + 4955 ], "_nin": [ - 4667 + 4955 ], "__typename": [ - 80 + 83 ] }, "timestamp": {}, "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4670 + 4958 ], "_gt": [ - 4670 + 4958 ], "_gte": [ - 4670 + 4958 ], "_in": [ - 4670 + 4958 ], "_is_null": [ 5 ], "_lt": [ - 4670 + 4958 ], "_lte": [ - 4670 + 4958 ], "_neq": [ - 4670 + 4958 ], "_nin": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "tournament_awards": { "award": [ - 236 + 240 ], "award_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "custom_name": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "image_url": [ - 80 + 83 ], "placement": [ 40 @@ -105885,63 +111358,63 @@ export default { 40 ], "tournament": [ - 5106 + 5394 ], "tournament_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_aggregate": { "aggregate": [ - 4676 + 4964 ], "nodes": [ - 4672 + 4960 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_aggregate_bool_exp": { "count": [ - 4675 + 4963 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_aggregate_bool_exp_count": { "arguments": [ - 4694 + 4982 ], "distinct": [ 5 ], "filter": [ - 4681 + 4969 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_aggregate_fields": { "avg": [ - 4679 + 4967 ], "count": [ 40, { "columns": [ - 4694, + 4982, "[tournament_awards_select_column!]" ], "distinct": [ @@ -105950,83 +111423,83 @@ export default { } ], "max": [ - 4685 + 4973 ], "min": [ - 4687 + 4975 ], "stddev": [ - 4696 + 4984 ], "stddev_pop": [ - 4698 + 4986 ], "stddev_samp": [ - 4700 + 4988 ], "sum": [ - 4704 + 4992 ], "var_pop": [ - 4708 + 4996 ], "var_samp": [ - 4710 + 4998 ], "variance": [ - 4712 + 5000 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_aggregate_order_by": { "avg": [ - 4680 + 4968 ], "count": [ - 3094 + 3377 ], "max": [ - 4686 + 4974 ], "min": [ - 4688 + 4976 ], "stddev": [ - 4697 + 4985 ], "stddev_pop": [ - 4699 + 4987 ], "stddev_samp": [ - 4701 + 4989 ], "sum": [ - 4705 + 4993 ], "var_pop": [ - 4709 + 4997 ], "var_samp": [ - 4711 + 4999 ], "variance": [ - 4713 + 5001 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_arr_rel_insert_input": { "data": [ - 4684 + 4972 ], "on_conflict": [ - 4691 + 4979 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_avg_fields": { @@ -106037,47 +111510,47 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_avg_order_by": { "placement": [ - 3094 + 3377 ], "silhouette": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_bool_exp": { "_and": [ - 4681 + 4969 ], "_not": [ - 4681 + 4969 ], "_or": [ - 4681 + 4969 ], "award": [ - 240 + 244 ], "award_id": [ - 5172 + 5460 ], "created_at": [ - 4671 + 4959 ], "custom_name": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "image_url": [ - 82 + 85 ], "placement": [ 41 @@ -106086,16 +111559,16 @@ export default { 41 ], "tournament": [ - 5127 + 5415 ], "tournament_id": [ - 5172 + 5460 ], "updated_at": [ - 4671 + 4959 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_constraint": {}, @@ -106107,27 +111580,27 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_insert_input": { "award": [ - 247 + 251 ], "award_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "custom_name": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "image_url": [ - 80 + 83 ], "placement": [ 40 @@ -106136,33 +111609,33 @@ export default { 40 ], "tournament": [ - 5136 + 5424 ], "tournament_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_max_fields": { "award_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "custom_name": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "image_url": [ - 80 + 83 ], "placement": [ 40 @@ -106171,62 +111644,62 @@ export default { 40 ], "tournament_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_max_order_by": { "award_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "custom_name": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "image_url": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "silhouette": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_min_fields": { "award_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "custom_name": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "image_url": [ - 80 + 83 ], "placement": [ 40 @@ -106235,45 +111708,45 @@ export default { 40 ], "tournament_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_min_order_by": { "award_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "custom_name": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "image_url": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "silhouette": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_mutation_response": { @@ -106281,99 +111754,99 @@ export default { 40 ], "returning": [ - 4672 + 4960 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_obj_rel_insert_input": { "data": [ - 4684 + 4972 ], "on_conflict": [ - 4691 + 4979 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_on_conflict": { "constraint": [ - 4682 + 4970 ], "update_columns": [ - 4706 + 4994 ], "where": [ - 4681 + 4969 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_order_by": { "award": [ - 249 + 253 ], "award_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "custom_name": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "image_url": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "silhouette": [ - 3094 + 3377 ], "tournament": [ - 5138 + 5426 ], "tournament_id": [ - 3094 + 3377 ], "updated_at": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_select_column": {}, "tournament_awards_set_input": { "award_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "custom_name": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "image_url": [ - 80 + 83 ], "placement": [ 40 @@ -106382,13 +111855,13 @@ export default { 40 ], "tournament_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_stddev_fields": { @@ -106399,18 +111872,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_stddev_order_by": { "placement": [ - 3094 + 3377 ], "silhouette": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_stddev_pop_fields": { @@ -106421,18 +111894,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_stddev_pop_order_by": { "placement": [ - 3094 + 3377 ], "silhouette": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_stddev_samp_fields": { @@ -106443,46 +111916,46 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_stddev_samp_order_by": { "placement": [ - 3094 + 3377 ], "silhouette": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_stream_cursor_input": { "initial_value": [ - 4703 + 4991 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_stream_cursor_value_input": { "award_id": [ - 5170 + 5458 ], "created_at": [ - 4670 + 4958 ], "custom_name": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "image_url": [ - 80 + 83 ], "placement": [ 40 @@ -106491,13 +111964,13 @@ export default { 40 ], "tournament_id": [ - 5170 + 5458 ], "updated_at": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_sum_fields": { @@ -106508,33 +111981,33 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_sum_order_by": { "placement": [ - 3094 + 3377 ], "silhouette": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_update_column": {}, "tournament_awards_updates": { "_inc": [ - 4683 + 4971 ], "_set": [ - 4695 + 4983 ], "where": [ - 4681 + 4969 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_var_pop_fields": { @@ -106545,18 +112018,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_var_pop_order_by": { "placement": [ - 3094 + 3377 ], "silhouette": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_var_samp_fields": { @@ -106567,18 +112040,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_var_samp_order_by": { "placement": [ - 3094 + 3377 ], "silhouette": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_variance_fields": { @@ -106589,18 +112062,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_awards_variance_order_by": { "placement": [ - 3094 + 3377 ], "silhouette": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets": { @@ -106608,13 +112081,13 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "feeding_brackets": [ - 4714, + 5002, { "distinct_on": [ - 4738, + 5026, "[tournament_brackets_select_column!]" ], "limit": [ @@ -106624,11 +112097,11 @@ export default { 40 ], "order_by": [ - 4736, + 5024, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5013 ] } ], @@ -106636,55 +112109,55 @@ export default { 5 ], "group": [ - 3092 + 3375 ], "id": [ - 5170 + 5458 ], "loser_bracket": [ - 4714 + 5002 ], "loser_parent_bracket_id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_number": [ 40 ], "match_options_id": [ - 5170 + 5458 ], "options": [ - 2758 + 3019 ], "parent_bracket": [ - 4714 + 5002 ], "parent_bracket_id": [ - 5170 + 5458 ], "path": [ - 80 + 83 ], "round": [ 40 ], "scheduled_at": [ - 4670 + 4958 ], "scheduled_eta": [ - 4670 + 4958 ], "scheduling_proposals": [ - 2067, + 2328, { "distinct_on": [ - 2088, + 2349, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -106694,19 +112167,19 @@ export default { 40 ], "order_by": [ - 2086, + 2347, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2076 + 2337 ] } ], "scheduling_proposals_aggregate": [ - 2068, + 2329, { "distinct_on": [ - 2088, + 2349, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -106716,127 +112189,127 @@ export default { 40 ], "order_by": [ - 2086, + 2347, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2076 + 2337 ] } ], "stage": [ - 4931 + 5219 ], "team_1": [ - 5064 + 5352 ], "team_1_seed": [ 40 ], "team_2": [ - 5064 + 5352 ], "team_2_seed": [ 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "tournament_team_id_1": [ - 5170 + 5458 ], "tournament_team_id_2": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_aggregate": { "aggregate": [ - 4720 + 5008 ], "nodes": [ - 4714 + 5002 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4717 + 5005 ], "bool_or": [ - 4718 + 5006 ], "count": [ - 4719 + 5007 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4739 + 5027 ], "distinct": [ 5 ], "filter": [ - 4725 + 5013 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4740 + 5028 ], "distinct": [ 5 ], "filter": [ - 4725 + 5013 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4738 + 5026 ], "distinct": [ 5 ], "filter": [ - 4725 + 5013 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_aggregate_fields": { "avg": [ - 4723 + 5011 ], "count": [ 40, { "columns": [ - 4738, + 5026, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -106845,83 +112318,83 @@ export default { } ], "max": [ - 4729 + 5017 ], "min": [ - 4731 + 5019 ], "stddev": [ - 4742 + 5030 ], "stddev_pop": [ - 4744 + 5032 ], "stddev_samp": [ - 4746 + 5034 ], "sum": [ - 4750 + 5038 ], "var_pop": [ - 4754 + 5042 ], "var_samp": [ - 4756 + 5044 ], "variance": [ - 4758 + 5046 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4724 + 5012 ], "count": [ - 3094 + 3377 ], "max": [ - 4730 + 5018 ], "min": [ - 4732 + 5020 ], "stddev": [ - 4743 + 5031 ], "stddev_pop": [ - 4745 + 5033 ], "stddev_samp": [ - 4747 + 5035 ], "sum": [ - 4751 + 5039 ], "var_pop": [ - 4755 + 5043 ], "var_samp": [ - 4757 + 5045 ], "variance": [ - 4759 + 5047 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4728 + 5016 ], "on_conflict": [ - 4735 + 5023 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_avg_fields": { @@ -106941,134 +112414,134 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_avg_order_by": { "group": [ - 3094 + 3377 ], "match_number": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "team_1_seed": [ - 3094 + 3377 ], "team_2_seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_bool_exp": { "_and": [ - 4725 + 5013 ], "_not": [ - 4725 + 5013 ], "_or": [ - 4725 + 5013 ], "bye": [ 6 ], "created_at": [ - 4671 + 4959 ], "feeding_brackets": [ - 4725 + 5013 ], "finished": [ 6 ], "group": [ - 3093 + 3376 ], "id": [ - 5172 + 5460 ], "loser_bracket": [ - 4725 + 5013 ], "loser_parent_bracket_id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_number": [ 41 ], "match_options_id": [ - 5172 + 5460 ], "options": [ - 2762 + 3030 ], "parent_bracket": [ - 4725 + 5013 ], "parent_bracket_id": [ - 5172 + 5460 ], "path": [ - 82 + 85 ], "round": [ 41 ], "scheduled_at": [ - 4671 + 4959 ], "scheduled_eta": [ - 4671 + 4959 ], "scheduling_proposals": [ - 2076 + 2337 ], "scheduling_proposals_aggregate": [ - 2069 + 2330 ], "stage": [ - 4943 + 5231 ], "team_1": [ - 5073 + 5361 ], "team_1_seed": [ 41 ], "team_2": [ - 5073 + 5361 ], "team_2_seed": [ 41 ], "tournament_stage_id": [ - 5172 + 5460 ], "tournament_team_id_1": [ - 5172 + 5460 ], "tournament_team_id_2": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 3092 + 3375 ], "match_number": [ 40 @@ -107083,7 +112556,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_insert_input": { @@ -107091,123 +112564,123 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "finished": [ 5 ], "group": [ - 3092 + 3375 ], "id": [ - 5170 + 5458 ], "loser_bracket": [ - 4734 + 5022 ], "loser_parent_bracket_id": [ - 5170 + 5458 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_number": [ 40 ], "match_options_id": [ - 5170 + 5458 ], "options": [ - 2769 + 3039 ], "parent_bracket": [ - 4734 + 5022 ], "parent_bracket_id": [ - 5170 + 5458 ], "path": [ - 80 + 83 ], "round": [ 40 ], "scheduled_at": [ - 4670 + 4958 ], "scheduled_eta": [ - 4670 + 4958 ], "scheduling_proposals": [ - 2073 + 2334 ], "stage": [ - 4955 + 5243 ], "team_1": [ - 5082 + 5370 ], "team_1_seed": [ 40 ], "team_2": [ - 5082 + 5370 ], "team_2_seed": [ 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "tournament_team_id_1": [ - 5170 + 5458 ], "tournament_team_id_2": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_max_fields": { "created_at": [ - 4670 + 4958 ], "group": [ - 3092 + 3375 ], "id": [ - 5170 + 5458 ], "loser_parent_bracket_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_number": [ 40 ], "match_options_id": [ - 5170 + 5458 ], "parent_bracket_id": [ - 5170 + 5458 ], "path": [ - 80 + 83 ], "round": [ 40 ], "scheduled_at": [ - 4670 + 4958 ], "scheduled_eta": [ - 4670 + 4958 ], "team_1_seed": [ 40 @@ -107216,110 +112689,110 @@ export default { 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "tournament_team_id_1": [ - 5170 + 5458 ], "tournament_team_id_2": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_max_order_by": { "created_at": [ - 3094 + 3377 ], "group": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "loser_parent_bracket_id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_number": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "parent_bracket_id": [ - 3094 + 3377 ], "path": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "scheduled_at": [ - 3094 + 3377 ], "scheduled_eta": [ - 3094 + 3377 ], "team_1_seed": [ - 3094 + 3377 ], "team_2_seed": [ - 3094 + 3377 ], "tournament_stage_id": [ - 3094 + 3377 ], "tournament_team_id_1": [ - 3094 + 3377 ], "tournament_team_id_2": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_min_fields": { "created_at": [ - 4670 + 4958 ], "group": [ - 3092 + 3375 ], "id": [ - 5170 + 5458 ], "loser_parent_bracket_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_number": [ 40 ], "match_options_id": [ - 5170 + 5458 ], "parent_bracket_id": [ - 5170 + 5458 ], "path": [ - 80 + 83 ], "round": [ 40 ], "scheduled_at": [ - 4670 + 4958 ], "scheduled_eta": [ - 4670 + 4958 ], "team_1_seed": [ 40 @@ -107328,72 +112801,72 @@ export default { 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "tournament_team_id_1": [ - 5170 + 5458 ], "tournament_team_id_2": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_min_order_by": { "created_at": [ - 3094 + 3377 ], "group": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "loser_parent_bracket_id": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_number": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "parent_bracket_id": [ - 3094 + 3377 ], "path": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "scheduled_at": [ - 3094 + 3377 ], "scheduled_eta": [ - 3094 + 3377 ], "team_1_seed": [ - 3094 + 3377 ], "team_2_seed": [ - 3094 + 3377 ], "tournament_stage_id": [ - 3094 + 3377 ], "tournament_team_id_1": [ - 3094 + 3377 ], "tournament_team_id_2": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_mutation_response": { @@ -107401,132 +112874,132 @@ export default { 40 ], "returning": [ - 4714 + 5002 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4728 + 5016 ], "on_conflict": [ - 4735 + 5023 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_on_conflict": { "constraint": [ - 4726 + 5014 ], "update_columns": [ - 4752 + 5040 ], "where": [ - 4725 + 5013 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_order_by": { "bye": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "feeding_brackets_aggregate": [ - 4721 + 5009 ], "finished": [ - 3094 + 3377 ], "group": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "loser_bracket": [ - 4736 + 5024 ], "loser_parent_bracket_id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_number": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "options": [ - 2771 + 3041 ], "parent_bracket": [ - 4736 + 5024 ], "parent_bracket_id": [ - 3094 + 3377 ], "path": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "scheduled_at": [ - 3094 + 3377 ], "scheduled_eta": [ - 3094 + 3377 ], "scheduling_proposals_aggregate": [ - 2072 + 2333 ], "stage": [ - 4957 + 5245 ], "team_1": [ - 5084 + 5372 ], "team_1_seed": [ - 3094 + 3377 ], "team_2": [ - 5084 + 5372 ], "team_2_seed": [ - 3094 + 3377 ], "tournament_stage_id": [ - 3094 + 3377 ], "tournament_team_id_1": [ - 3094 + 3377 ], "tournament_team_id_2": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_select_column": {}, @@ -107537,43 +113010,43 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "finished": [ 5 ], "group": [ - 3092 + 3375 ], "id": [ - 5170 + 5458 ], "loser_parent_bracket_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_number": [ 40 ], "match_options_id": [ - 5170 + 5458 ], "parent_bracket_id": [ - 5170 + 5458 ], "path": [ - 80 + 83 ], "round": [ 40 ], "scheduled_at": [ - 4670 + 4958 ], "scheduled_eta": [ - 4670 + 4958 ], "team_1_seed": [ 40 @@ -107582,16 +113055,16 @@ export default { 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "tournament_team_id_1": [ - 5170 + 5458 ], "tournament_team_id_2": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_stddev_fields": { @@ -107611,27 +113084,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_stddev_order_by": { "group": [ - 3094 + 3377 ], "match_number": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "team_1_seed": [ - 3094 + 3377 ], "team_2_seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_stddev_pop_fields": { @@ -107651,27 +113124,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 3094 + 3377 ], "match_number": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "team_1_seed": [ - 3094 + 3377 ], "team_2_seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_stddev_samp_fields": { @@ -107691,38 +113164,38 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 3094 + 3377 ], "match_number": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "team_1_seed": [ - 3094 + 3377 ], "team_2_seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4749 + 5037 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_stream_cursor_value_input": { @@ -107730,43 +113203,43 @@ export default { 5 ], "created_at": [ - 4670 + 4958 ], "finished": [ 5 ], "group": [ - 3092 + 3375 ], "id": [ - 5170 + 5458 ], "loser_parent_bracket_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_number": [ 40 ], "match_options_id": [ - 5170 + 5458 ], "parent_bracket_id": [ - 5170 + 5458 ], "path": [ - 80 + 83 ], "round": [ 40 ], "scheduled_at": [ - 4670 + 4958 ], "scheduled_eta": [ - 4670 + 4958 ], "team_1_seed": [ 40 @@ -107775,21 +113248,21 @@ export default { 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "tournament_team_id_1": [ - 5170 + 5458 ], "tournament_team_id_2": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_sum_fields": { "group": [ - 3092 + 3375 ], "match_number": [ 40 @@ -107804,42 +113277,42 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_sum_order_by": { "group": [ - 3094 + 3377 ], "match_number": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "team_1_seed": [ - 3094 + 3377 ], "team_2_seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4727 + 5015 ], "_set": [ - 4741 + 5029 ], "where": [ - 4725 + 5013 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_var_pop_fields": { @@ -107859,27 +113332,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_var_pop_order_by": { "group": [ - 3094 + 3377 ], "match_number": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "team_1_seed": [ - 3094 + 3377 ], "team_2_seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_var_samp_fields": { @@ -107899,27 +113372,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_var_samp_order_by": { "group": [ - 3094 + 3377 ], "match_number": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "team_1_seed": [ - 3094 + 3377 ], "team_2_seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_variance_fields": { @@ -107939,80 +113412,80 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_brackets_variance_order_by": { "group": [ - 3094 + 3377 ], "match_number": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "team_1_seed": [ - 3094 + 3377 ], "team_2_seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_categories": { "category": [ - 1400 + 1464 ], "e_tournament_category": [ - 1395 + 1459 ], "tournament": [ - 5106 + 5394 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_aggregate": { "aggregate": [ - 4764 + 5052 ], "nodes": [ - 4760 + 5048 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_aggregate_bool_exp": { "count": [ - 4763 + 5051 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_aggregate_bool_exp_count": { "arguments": [ - 4778 + 5066 ], "distinct": [ 5 ], "filter": [ - 4767 + 5055 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_aggregate_fields": { @@ -108020,7 +113493,7 @@ export default { 40, { "columns": [ - 4778, + 5066, "[tournament_categories_select_column!]" ], "distinct": [ @@ -108029,114 +113502,114 @@ export default { } ], "max": [ - 4770 + 5058 ], "min": [ - 4772 + 5060 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_aggregate_order_by": { "count": [ - 3094 + 3377 ], "max": [ - 4771 + 5059 ], "min": [ - 4773 + 5061 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_arr_rel_insert_input": { "data": [ - 4769 + 5057 ], "on_conflict": [ - 4775 + 5063 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_bool_exp": { "_and": [ - 4767 + 5055 ], "_not": [ - 4767 + 5055 ], "_or": [ - 4767 + 5055 ], "category": [ - 1401 + 1465 ], "e_tournament_category": [ - 1398 + 1462 ], "tournament": [ - 5127 + 5415 ], "tournament_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_constraint": {}, "tournament_categories_insert_input": { "category": [ - 1400 + 1464 ], "e_tournament_category": [ - 1406 + 1470 ], "tournament": [ - 5136 + 5424 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_max_fields": { "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_max_order_by": { "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_min_fields": { "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_min_order_by": { "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_mutation_response": { @@ -108144,154 +113617,154 @@ export default { 40 ], "returning": [ - 4760 + 5048 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_on_conflict": { "constraint": [ - 4768 + 5056 ], "update_columns": [ - 4782 + 5070 ], "where": [ - 4767 + 5055 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_order_by": { "category": [ - 3094 + 3377 ], "e_tournament_category": [ - 1408 + 1472 ], "tournament": [ - 5138 + 5426 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_pk_columns_input": { "category": [ - 1400 + 1464 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_select_column": {}, "tournament_categories_set_input": { "category": [ - 1400 + 1464 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_stream_cursor_input": { "initial_value": [ - 4781 + 5069 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_stream_cursor_value_input": { "category": [ - 1400 + 1464 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_categories_update_column": {}, "tournament_categories_updates": { "_set": [ - 4779 + 5067 ], "where": [ - 4767 + 5055 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams": { "created_at": [ - 4670 + 4958 ], "team": [ - 4621 + 4909 ], "team_id": [ - 5170 + 5458 ], "tournament": [ - 5106 + 5394 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_aggregate": { "aggregate": [ - 4788 + 5076 ], "nodes": [ - 4784 + 5072 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_aggregate_bool_exp": { "count": [ - 4787 + 5075 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_aggregate_bool_exp_count": { "arguments": [ - 4802 + 5090 ], "distinct": [ 5 ], "filter": [ - 4791 + 5079 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_aggregate_fields": { @@ -108299,7 +113772,7 @@ export default { 40, { "columns": [ - 4802, + 5090, "[tournament_organizer_teams_select_column!]" ], "distinct": [ @@ -108308,144 +113781,144 @@ export default { } ], "max": [ - 4794 + 5082 ], "min": [ - 4796 + 5084 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_aggregate_order_by": { "count": [ - 3094 + 3377 ], "max": [ - 4795 + 5083 ], "min": [ - 4797 + 5085 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_arr_rel_insert_input": { "data": [ - 4793 + 5081 ], "on_conflict": [ - 4799 + 5087 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_bool_exp": { "_and": [ - 4791 + 5079 ], "_not": [ - 4791 + 5079 ], "_or": [ - 4791 + 5079 ], "created_at": [ - 4671 + 4959 ], "team": [ - 4632 + 4920 ], "team_id": [ - 5172 + 5460 ], "tournament": [ - 5127 + 5415 ], "tournament_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_constraint": {}, "tournament_organizer_teams_insert_input": { "created_at": [ - 4670 + 4958 ], "team": [ - 4641 + 4929 ], "team_id": [ - 5170 + 5458 ], "tournament": [ - 5136 + 5424 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_max_fields": { "created_at": [ - 4670 + 4958 ], "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_max_order_by": { "created_at": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_min_fields": { "created_at": [ - 4670 + 4958 ], "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_min_order_by": { "created_at": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_mutation_response": { @@ -108453,177 +113926,177 @@ export default { 40 ], "returning": [ - 4784 + 5072 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_on_conflict": { "constraint": [ - 4792 + 5080 ], "update_columns": [ - 4806 + 5094 ], "where": [ - 4791 + 5079 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_order_by": { "created_at": [ - 3094 + 3377 ], "team": [ - 4643 + 4931 ], "team_id": [ - 3094 + 3377 ], "tournament": [ - 5138 + 5426 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_pk_columns_input": { "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_select_column": {}, "tournament_organizer_teams_set_input": { "created_at": [ - 4670 + 4958 ], "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_stream_cursor_input": { "initial_value": [ - 4805 + 5093 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_organizer_teams_update_column": {}, "tournament_organizer_teams_updates": { "_set": [ - 4803 + 5091 ], "where": [ - 4791 + 5079 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers": { "organization_team": [ - 4621 + 4909 ], "organization_team_id": [ - 5170 + 5458 ], "organizer": [ - 4052 + 4335 ], "steam_id": [ - 264 + 268 ], "tournament": [ - 5106 + 5394 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_aggregate": { "aggregate": [ - 4812 + 5100 ], "nodes": [ - 4808 + 5096 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4811 + 5099 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4829 + 5117 ], "distinct": [ 5 ], "filter": [ - 4817 + 5105 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_aggregate_fields": { "avg": [ - 4815 + 5103 ], "count": [ 40, { "columns": [ - 4829, + 5117, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -108632,83 +114105,83 @@ export default { } ], "max": [ - 4821 + 5109 ], "min": [ - 4823 + 5111 ], "stddev": [ - 4831 + 5119 ], "stddev_pop": [ - 4833 + 5121 ], "stddev_samp": [ - 4835 + 5123 ], "sum": [ - 4839 + 5127 ], "var_pop": [ - 4843 + 5131 ], "var_samp": [ - 4845 + 5133 ], "variance": [ - 4847 + 5135 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4816 + 5104 ], "count": [ - 3094 + 3377 ], "max": [ - 4822 + 5110 ], "min": [ - 4824 + 5112 ], "stddev": [ - 4832 + 5120 ], "stddev_pop": [ - 4834 + 5122 ], "stddev_samp": [ - 4836 + 5124 ], "sum": [ - 4840 + 5128 ], "var_pop": [ - 4844 + 5132 ], "var_samp": [ - 4846 + 5134 ], "variance": [ - 4848 + 5136 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4820 + 5108 ], "on_conflict": [ - 4826 + 5114 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_avg_fields": { @@ -108716,135 +114189,135 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_avg_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_bool_exp": { "_and": [ - 4817 + 5105 ], "_not": [ - 4817 + 5105 ], "_or": [ - 4817 + 5105 ], "organization_team": [ - 4632 + 4920 ], "organization_team_id": [ - 5172 + 5460 ], "organizer": [ - 4056 + 4339 ], "steam_id": [ - 266 + 270 ], "tournament": [ - 5127 + 5415 ], "tournament_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_constraint": {}, "tournament_organizers_inc_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_insert_input": { "organization_team": [ - 4641 + 4929 ], "organization_team_id": [ - 5170 + 5458 ], "organizer": [ - 4063 + 4346 ], "steam_id": [ - 264 + 268 ], "tournament": [ - 5136 + 5424 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_max_fields": { "organization_team_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_max_order_by": { "organization_team_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_min_fields": { "organization_team_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_min_order_by": { "organization_team_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_mutation_response": { @@ -108852,73 +114325,73 @@ export default { 40 ], "returning": [ - 4808 + 5096 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_on_conflict": { "constraint": [ - 4818 + 5106 ], "update_columns": [ - 4841 + 5129 ], "where": [ - 4817 + 5105 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_order_by": { "organization_team": [ - 4643 + 4931 ], "organization_team_id": [ - 3094 + 3377 ], "organizer": [ - 4065 + 4348 ], "steam_id": [ - 3094 + 3377 ], "tournament": [ - 5138 + 5426 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_pk_columns_input": { "steam_id": [ - 264 + 268 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "organization_team_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_stddev_fields": { @@ -108926,15 +114399,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_stddev_pop_fields": { @@ -108942,15 +114415,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_stddev_samp_fields": { @@ -108958,71 +114431,71 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4838 + 5126 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_stream_cursor_value_input": { "organization_team_id": [ - 5170 + 5458 ], "steam_id": [ - 264 + 268 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_sum_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4819 + 5107 ], "_set": [ - 4830 + 5118 ], "where": [ - 4817 + 5105 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_var_pop_fields": { @@ -109030,15 +114503,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_var_samp_fields": { @@ -109046,15 +114519,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_variance_fields": { @@ -109062,88 +114535,88 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_organizers_variance_order_by": { "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "order": [ 40 ], "place": [ - 80 + 83 ], "prize": [ - 80 + 83 ], "tournament": [ - 5106 + 5394 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_aggregate": { "aggregate": [ - 4853 + 5141 ], "nodes": [ - 4849 + 5137 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_aggregate_bool_exp": { "count": [ - 4852 + 5140 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_aggregate_bool_exp_count": { "arguments": [ - 4870 + 5158 ], "distinct": [ 5 ], "filter": [ - 4858 + 5146 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_aggregate_fields": { "avg": [ - 4856 + 5144 ], "count": [ 40, { "columns": [ - 4870, + 5158, "[tournament_prizes_select_column!]" ], "distinct": [ @@ -109152,83 +114625,83 @@ export default { } ], "max": [ - 4862 + 5150 ], "min": [ - 4864 + 5152 ], "stddev": [ - 4872 + 5160 ], "stddev_pop": [ - 4874 + 5162 ], "stddev_samp": [ - 4876 + 5164 ], "sum": [ - 4880 + 5168 ], "var_pop": [ - 4884 + 5172 ], "var_samp": [ - 4886 + 5174 ], "variance": [ - 4888 + 5176 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_aggregate_order_by": { "avg": [ - 4857 + 5145 ], "count": [ - 3094 + 3377 ], "max": [ - 4863 + 5151 ], "min": [ - 4865 + 5153 ], "stddev": [ - 4873 + 5161 ], "stddev_pop": [ - 4875 + 5163 ], "stddev_samp": [ - 4877 + 5165 ], "sum": [ - 4881 + 5169 ], "var_pop": [ - 4885 + 5173 ], "var_samp": [ - 4887 + 5175 ], "variance": [ - 4889 + 5177 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_arr_rel_insert_input": { "data": [ - 4861 + 5149 ], "on_conflict": [ - 4867 + 5155 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_avg_fields": { @@ -109236,50 +114709,50 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_avg_order_by": { "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_bool_exp": { "_and": [ - 4858 + 5146 ], "_not": [ - 4858 + 5146 ], "_or": [ - 4858 + 5146 ], "created_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "order": [ 41 ], "place": [ - 82 + 85 ], "prize": [ - 82 + 85 ], "tournament": [ - 5127 + 5415 ], "tournament_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_constraint": {}, @@ -109288,125 +114761,125 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_insert_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "order": [ 40 ], "place": [ - 80 + 83 ], "prize": [ - 80 + 83 ], "tournament": [ - 5136 + 5424 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_max_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "order": [ 40 ], "place": [ - 80 + 83 ], "prize": [ - 80 + 83 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_max_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "place": [ - 3094 + 3377 ], "prize": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_min_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "order": [ 40 ], "place": [ - 80 + 83 ], "prize": [ - 80 + 83 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_min_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "place": [ - 3094 + 3377 ], "prize": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_mutation_response": { @@ -109414,82 +114887,82 @@ export default { 40 ], "returning": [ - 4849 + 5137 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_on_conflict": { "constraint": [ - 4859 + 5147 ], "update_columns": [ - 4882 + 5170 ], "where": [ - 4858 + 5146 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "place": [ - 3094 + 3377 ], "prize": [ - 3094 + 3377 ], "tournament": [ - 5138 + 5426 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_select_column": {}, "tournament_prizes_set_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "order": [ 40 ], "place": [ - 80 + 83 ], "prize": [ - 80 + 83 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_stddev_fields": { @@ -109497,15 +114970,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_stddev_order_by": { "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_stddev_pop_fields": { @@ -109513,15 +114986,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_stddev_pop_order_by": { "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_stddev_samp_fields": { @@ -109529,49 +115002,49 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_stddev_samp_order_by": { "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_stream_cursor_input": { "initial_value": [ - 4879 + 5167 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "order": [ 40 ], "place": [ - 80 + 83 ], "prize": [ - 80 + 83 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_sum_fields": { @@ -109579,30 +115052,30 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_sum_order_by": { "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_update_column": {}, "tournament_prizes_updates": { "_inc": [ - 4860 + 5148 ], "_set": [ - 4871 + 5159 ], "where": [ - 4858 + 5146 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_var_pop_fields": { @@ -109610,15 +115083,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_var_pop_order_by": { "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_var_samp_fields": { @@ -109626,15 +115099,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_var_samp_order_by": { "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_variance_fields": { @@ -109642,91 +115115,91 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_prizes_variance_order_by": { "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows": { "closes_at": [ - 4670 + 4958 ], "created_at": [ - 4670 + 4958 ], "default_match_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "opens_at": [ - 4670 + 4958 ], "round": [ 40 ], "stage": [ - 4931 + 5219 ], "tournament_stage_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4894 + 5182 ], "nodes": [ - 4890 + 5178 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4893 + 5181 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4911 + 5199 ], "distinct": [ 5 ], "filter": [ - 4899 + 5187 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4897 + 5185 ], "count": [ 40, { "columns": [ - 4911, + 5199, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -109735,83 +115208,83 @@ export default { } ], "max": [ - 4903 + 5191 ], "min": [ - 4905 + 5193 ], "stddev": [ - 4913 + 5201 ], "stddev_pop": [ - 4915 + 5203 ], "stddev_samp": [ - 4917 + 5205 ], "sum": [ - 4921 + 5209 ], "var_pop": [ - 4925 + 5213 ], "var_samp": [ - 4927 + 5215 ], "variance": [ - 4929 + 5217 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4898 + 5186 ], "count": [ - 3094 + 3377 ], "max": [ - 4904 + 5192 ], "min": [ - 4906 + 5194 ], "stddev": [ - 4914 + 5202 ], "stddev_pop": [ - 4916 + 5204 ], "stddev_samp": [ - 4918 + 5206 ], "sum": [ - 4922 + 5210 ], "var_pop": [ - 4926 + 5214 ], "var_samp": [ - 4928 + 5216 ], "variance": [ - 4930 + 5218 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4902 + 5190 ], "on_conflict": [ - 4908 + 5196 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_avg_fields": { @@ -109819,53 +115292,53 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_avg_order_by": { "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_bool_exp": { "_and": [ - 4899 + 5187 ], "_not": [ - 4899 + 5187 ], "_or": [ - 4899 + 5187 ], "closes_at": [ - 4671 + 4959 ], "created_at": [ - 4671 + 4959 ], "default_match_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "opens_at": [ - 4671 + 4959 ], "round": [ 41 ], "stage": [ - 4943 + 5231 ], "tournament_stage_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_constraint": {}, @@ -109874,140 +115347,140 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4670 + 4958 ], "created_at": [ - 4670 + 4958 ], "default_match_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "opens_at": [ - 4670 + 4958 ], "round": [ 40 ], "stage": [ - 4955 + 5243 ], "tournament_stage_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4670 + 4958 ], "created_at": [ - 4670 + 4958 ], "default_match_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "opens_at": [ - 4670 + 4958 ], "round": [ 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "default_match_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "opens_at": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "tournament_stage_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4670 + 4958 ], "created_at": [ - 4670 + 4958 ], "default_match_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "opens_at": [ - 4670 + 4958 ], "round": [ 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "default_match_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "opens_at": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "tournament_stage_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_mutation_response": { @@ -110015,88 +115488,88 @@ export default { 40 ], "returning": [ - 4890 + 5178 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4900 + 5188 ], "update_columns": [ - 4923 + 5211 ], "where": [ - 4899 + 5187 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_order_by": { "closes_at": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "default_match_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "opens_at": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "stage": [ - 4957 + 5245 ], "tournament_stage_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4670 + 4958 ], "created_at": [ - 4670 + 4958 ], "default_match_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "opens_at": [ - 4670 + 4958 ], "round": [ 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_stddev_fields": { @@ -110104,15 +115577,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_stddev_order_by": { "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_stddev_pop_fields": { @@ -110120,15 +115593,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_stddev_samp_fields": { @@ -110136,52 +115609,52 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4920 + 5208 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4670 + 4958 ], "created_at": [ - 4670 + 4958 ], "default_match_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "opens_at": [ - 4670 + 4958 ], "round": [ 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_sum_fields": { @@ -110189,30 +115662,30 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_sum_order_by": { "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4901 + 5189 ], "_set": [ - 4912 + 5200 ], "where": [ - 4899 + 5187 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_var_pop_fields": { @@ -110220,15 +115693,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_var_samp_fields": { @@ -110236,15 +115709,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_variance_fields": { @@ -110252,23 +115725,23 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_stage_windows_variance_order_by": { "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stages": { "brackets": [ - 4714, + 5002, { "distinct_on": [ - 4738, + 5026, "[tournament_brackets_select_column!]" ], "limit": [ @@ -110278,19 +115751,19 @@ export default { 40 ], "order_by": [ - 4736, + 5024, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5013 ] } ], "brackets_aggregate": [ - 4715, + 5003, { "distinct_on": [ - 4738, + 5026, "[tournament_brackets_select_column!]" ], "limit": [ @@ -110300,11 +115773,11 @@ export default { 40 ], "order_by": [ - 4736, + 5024, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5013 ] } ], @@ -110315,7 +115788,7 @@ export default { 40 ], "e_tournament_stage_type": [ - 1416 + 1480 ], "final_map_advantage": [ 40 @@ -110324,10 +115797,10 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "max_rounds": [ 40 @@ -110339,16 +115812,16 @@ export default { 40 ], "options": [ - 2758 + 3019 ], "order": [ 40 ], "results": [ - 5912, + 6200, { "distinct_on": [ - 5944, + 6232, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -110358,19 +115831,19 @@ export default { 40 ], "order_by": [ - 5942, + 6230, "[v_team_stage_results_order_by!]" ], "where": [ - 5931 + 6219 ] } ], "results_aggregate": [ - 5913, + 6201, { "distinct_on": [ - 5944, + 6232, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -110380,19 +115853,19 @@ export default { 40 ], "order_by": [ - 5942, + 6230, "[v_team_stage_results_order_by!]" ], "where": [ - 5931 + 6219 ] } ], "settings": [ - 1930, + 2191, { "path": [ - 80 + 83 ] } ], @@ -110403,19 +115876,19 @@ export default { 5 ], "tournament": [ - 5106 + 5394 ], "tournament_id": [ - 5170 + 5458 ], "type": [ - 1421 + 1485 ], "windows": [ - 4890, + 5178, { "distinct_on": [ - 4911, + 5199, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -110425,19 +115898,19 @@ export default { 40 ], "order_by": [ - 4909, + 5197, "[tournament_stage_windows_order_by!]" ], "where": [ - 4899 + 5187 ] } ], "windows_aggregate": [ - 4891, + 5179, { "distinct_on": [ - 4911, + 5199, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -110447,103 +115920,103 @@ export default { 40 ], "order_by": [ - 4909, + 5197, "[tournament_stage_windows_order_by!]" ], "where": [ - 4899 + 5187 ] } ], "__typename": [ - 80 + 83 ] }, "tournament_stages_aggregate": { "aggregate": [ - 4937 + 5225 ], "nodes": [ - 4931 + 5219 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4934 + 5222 ], "bool_or": [ - 4935 + 5223 ], "count": [ - 4936 + 5224 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4961 + 5249 ], "distinct": [ 5 ], "filter": [ - 4943 + 5231 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4962 + 5250 ], "distinct": [ 5 ], "filter": [ - 4943 + 5231 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4960 + 5248 ], "distinct": [ 5 ], "filter": [ - 4943 + 5231 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_aggregate_fields": { "avg": [ - 4941 + 5229 ], "count": [ 40, { "columns": [ - 4960, + 5248, "[tournament_stages_select_column!]" ], "distinct": [ @@ -110552,91 +116025,91 @@ export default { } ], "max": [ - 4950 + 5238 ], "min": [ - 4952 + 5240 ], "stddev": [ - 4964 + 5252 ], "stddev_pop": [ - 4966 + 5254 ], "stddev_samp": [ - 4968 + 5256 ], "sum": [ - 4972 + 5260 ], "var_pop": [ - 4976 + 5264 ], "var_samp": [ - 4978 + 5266 ], "variance": [ - 4980 + 5268 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_aggregate_order_by": { "avg": [ - 4942 + 5230 ], "count": [ - 3094 + 3377 ], "max": [ - 4951 + 5239 ], "min": [ - 4953 + 5241 ], "stddev": [ - 4965 + 5253 ], "stddev_pop": [ - 4967 + 5255 ], "stddev_samp": [ - 4969 + 5257 ], "sum": [ - 4973 + 5261 ], "var_pop": [ - 4977 + 5265 ], "var_samp": [ - 4979 + 5267 ], "variance": [ - 4981 + 5269 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_append_input": { "settings": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4949 + 5237 ], "on_conflict": [ - 4956 + 5244 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_avg_fields": { @@ -110665,53 +116138,53 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 3094 + 3377 ], "default_best_of": [ - 3094 + 3377 ], "final_map_advantage": [ - 3094 + 3377 ], "groups": [ - 3094 + 3377 ], "max_rounds": [ - 3094 + 3377 ], "max_teams": [ - 3094 + 3377 ], "min_teams": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_bool_exp": { "_and": [ - 4943 + 5231 ], "_not": [ - 4943 + 5231 ], "_or": [ - 4943 + 5231 ], "brackets": [ - 4725 + 5013 ], "brackets_aggregate": [ - 4716 + 5004 ], "decider_best_of": [ 41 @@ -110720,7 +116193,7 @@ export default { 41 ], "e_tournament_stage_type": [ - 1419 + 1483 ], "final_map_advantage": [ 41 @@ -110729,10 +116202,10 @@ export default { 41 ], "id": [ - 5172 + 5460 ], "match_options_id": [ - 5172 + 5460 ], "max_rounds": [ 41 @@ -110744,19 +116217,19 @@ export default { 41 ], "options": [ - 2762 + 3030 ], "order": [ 41 ], "results": [ - 5931 + 6219 ], "results_aggregate": [ - 5914 + 6202 ], "settings": [ - 1932 + 2193 ], "swiss_no_elimination": [ 6 @@ -110765,31 +116238,31 @@ export default { 6 ], "tournament": [ - 5127 + 5415 ], "tournament_id": [ - 5172 + 5460 ], "type": [ - 1422 + 1486 ], "windows": [ - 4899 + 5187 ], "windows_aggregate": [ - 4892 + 5180 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_constraint": {}, "tournament_stages_delete_at_path_input": { "settings": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_delete_elem_input": { @@ -110797,15 +116270,15 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_delete_key_input": { "settings": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_inc_input": { @@ -110834,12 +116307,12 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_insert_input": { "brackets": [ - 4722 + 5010 ], "decider_best_of": [ 40 @@ -110848,7 +116321,7 @@ export default { 40 ], "e_tournament_stage_type": [ - 1427 + 1491 ], "final_map_advantage": [ 40 @@ -110857,10 +116330,10 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "max_rounds": [ 40 @@ -110872,16 +116345,16 @@ export default { 40 ], "options": [ - 2769 + 3039 ], "order": [ 40 ], "results": [ - 5928 + 6216 ], "settings": [ - 1930 + 2191 ], "swiss_no_elimination": [ 5 @@ -110890,19 +116363,19 @@ export default { 5 ], "tournament": [ - 5136 + 5424 ], "tournament_id": [ - 5170 + 5458 ], "type": [ - 1421 + 1485 ], "windows": [ - 4896 + 5184 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_max_fields": { @@ -110919,10 +116392,10 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "max_rounds": [ 40 @@ -110937,48 +116410,48 @@ export default { 40 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_max_order_by": { "decider_best_of": [ - 3094 + 3377 ], "default_best_of": [ - 3094 + 3377 ], "final_map_advantage": [ - 3094 + 3377 ], "groups": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "max_rounds": [ - 3094 + 3377 ], "max_teams": [ - 3094 + 3377 ], "min_teams": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_min_fields": { @@ -110995,10 +116468,10 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "max_rounds": [ 40 @@ -111013,48 +116486,48 @@ export default { 40 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_min_order_by": { "decider_best_of": [ - 3094 + 3377 ], "default_best_of": [ - 3094 + 3377 ], "final_map_advantage": [ - 3094 + 3377 ], "groups": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "max_rounds": [ - 3094 + 3377 ], "max_teams": [ - 3094 + 3377 ], "min_teams": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_mutation_response": { @@ -111062,119 +116535,119 @@ export default { 40 ], "returning": [ - 4931 + 5219 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4949 + 5237 ], "on_conflict": [ - 4956 + 5244 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_on_conflict": { "constraint": [ - 4944 + 5232 ], "update_columns": [ - 4974 + 5262 ], "where": [ - 4943 + 5231 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4721 + 5009 ], "decider_best_of": [ - 3094 + 3377 ], "default_best_of": [ - 3094 + 3377 ], "e_tournament_stage_type": [ - 1429 + 1493 ], "final_map_advantage": [ - 3094 + 3377 ], "groups": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "max_rounds": [ - 3094 + 3377 ], "max_teams": [ - 3094 + 3377 ], "min_teams": [ - 3094 + 3377 ], "options": [ - 2771 + 3041 ], "order": [ - 3094 + 3377 ], "results_aggregate": [ - 5927 + 6215 ], "settings": [ - 3094 + 3377 ], "swiss_no_elimination": [ - 3094 + 3377 ], "third_place_match": [ - 3094 + 3377 ], "tournament": [ - 5138 + 5426 ], "tournament_id": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "windows_aggregate": [ - 4895 + 5183 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_prepend_input": { "settings": [ - 1930 + 2191 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_select_column": {}, @@ -111194,10 +116667,10 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "max_rounds": [ 40 @@ -111212,7 +116685,7 @@ export default { 40 ], "settings": [ - 1930 + 2191 ], "swiss_no_elimination": [ 5 @@ -111221,13 +116694,13 @@ export default { 5 ], "tournament_id": [ - 5170 + 5458 ], "type": [ - 1421 + 1485 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_stddev_fields": { @@ -111256,36 +116729,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 3094 + 3377 ], "default_best_of": [ - 3094 + 3377 ], "final_map_advantage": [ - 3094 + 3377 ], "groups": [ - 3094 + 3377 ], "max_rounds": [ - 3094 + 3377 ], "max_teams": [ - 3094 + 3377 ], "min_teams": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_stddev_pop_fields": { @@ -111314,36 +116787,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 3094 + 3377 ], "default_best_of": [ - 3094 + 3377 ], "final_map_advantage": [ - 3094 + 3377 ], "groups": [ - 3094 + 3377 ], "max_rounds": [ - 3094 + 3377 ], "max_teams": [ - 3094 + 3377 ], "min_teams": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_stddev_samp_fields": { @@ -111372,47 +116845,47 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 3094 + 3377 ], "default_best_of": [ - 3094 + 3377 ], "final_map_advantage": [ - 3094 + 3377 ], "groups": [ - 3094 + 3377 ], "max_rounds": [ - 3094 + 3377 ], "max_teams": [ - 3094 + 3377 ], "min_teams": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4971 + 5259 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_stream_cursor_value_input": { @@ -111429,10 +116902,10 @@ export default { 40 ], "id": [ - 5170 + 5458 ], "match_options_id": [ - 5170 + 5458 ], "max_rounds": [ 40 @@ -111447,7 +116920,7 @@ export default { 40 ], "settings": [ - 1930 + 2191 ], "swiss_no_elimination": [ 5 @@ -111456,13 +116929,13 @@ export default { 5 ], "tournament_id": [ - 5170 + 5458 ], "type": [ - 1421 + 1485 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_sum_fields": { @@ -111491,66 +116964,66 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 3094 + 3377 ], "default_best_of": [ - 3094 + 3377 ], "final_map_advantage": [ - 3094 + 3377 ], "groups": [ - 3094 + 3377 ], "max_rounds": [ - 3094 + 3377 ], "max_teams": [ - 3094 + 3377 ], "min_teams": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4939 + 5227 ], "_delete_at_path": [ - 4945 + 5233 ], "_delete_elem": [ - 4946 + 5234 ], "_delete_key": [ - 4947 + 5235 ], "_inc": [ - 4948 + 5236 ], "_prepend": [ - 4959 + 5247 ], "_set": [ - 4963 + 5251 ], "where": [ - 4943 + 5231 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_var_pop_fields": { @@ -111579,36 +117052,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 3094 + 3377 ], "default_best_of": [ - 3094 + 3377 ], "final_map_advantage": [ - 3094 + 3377 ], "groups": [ - 3094 + 3377 ], "max_rounds": [ - 3094 + 3377 ], "max_teams": [ - 3094 + 3377 ], "min_teams": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_var_samp_fields": { @@ -111637,36 +117110,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 3094 + 3377 ], "default_best_of": [ - 3094 + 3377 ], "final_map_advantage": [ - 3094 + 3377 ], "groups": [ - 3094 + 3377 ], "max_rounds": [ - 3094 + 3377 ], "max_teams": [ - 3094 + 3377 ], "min_teams": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_variance_fields": { @@ -111695,112 +117168,112 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 3094 + 3377 ], "default_best_of": [ - 3094 + 3377 ], "final_map_advantage": [ - 3094 + 3377 ], "groups": [ - 3094 + 3377 ], "max_rounds": [ - 3094 + 3377 ], "max_teams": [ - 3094 + 3377 ], "min_teams": [ - 3094 + 3377 ], "order": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "invited_by": [ - 4052 + 4335 ], "invited_by_player_steam_id": [ - 264 + 268 ], "player": [ - 4052 + 4335 ], "steam_id": [ - 264 + 268 ], "team": [ - 5064 + 5352 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_aggregate": { "aggregate": [ - 4986 + 5274 ], "nodes": [ - 4982 + 5270 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4985 + 5273 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 5003 + 5291 ], "distinct": [ 5 ], "filter": [ - 4991 + 5279 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4989 + 5277 ], "count": [ 40, { "columns": [ - 5003, + 5291, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -111809,83 +117282,83 @@ export default { } ], "max": [ - 4995 + 5283 ], "min": [ - 4997 + 5285 ], "stddev": [ - 5005 + 5293 ], "stddev_pop": [ - 5007 + 5295 ], "stddev_samp": [ - 5009 + 5297 ], "sum": [ - 5013 + 5301 ], "var_pop": [ - 5017 + 5305 ], "var_samp": [ - 5019 + 5307 ], "variance": [ - 5021 + 5309 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4990 + 5278 ], "count": [ - 3094 + 3377 ], "max": [ - 4996 + 5284 ], "min": [ - 4998 + 5286 ], "stddev": [ - 5006 + 5294 ], "stddev_pop": [ - 5008 + 5296 ], "stddev_samp": [ - 5010 + 5298 ], "sum": [ - 5014 + 5302 ], "var_pop": [ - 5018 + 5306 ], "var_samp": [ - 5020 + 5308 ], "variance": [ - 5022 + 5310 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4994 + 5282 ], "on_conflict": [ - 5000 + 5288 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_avg_fields": { @@ -111896,177 +117369,177 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_bool_exp": { "_and": [ - 4991 + 5279 ], "_not": [ - 4991 + 5279 ], "_or": [ - 4991 + 5279 ], "created_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "invited_by": [ - 4056 + 4339 ], "invited_by_player_steam_id": [ - 266 + 270 ], "player": [ - 4056 + 4339 ], "steam_id": [ - 266 + 270 ], "team": [ - 5073 + 5361 ], "tournament_team_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_constraint": {}, "tournament_team_invites_inc_input": { "invited_by_player_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_insert_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "invited_by": [ - 4063 + 4346 ], "invited_by_player_steam_id": [ - 264 + 268 ], "player": [ - 4063 + 4346 ], "steam_id": [ - 264 + 268 ], "team": [ - 5082 + 5370 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_max_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "invited_by_player_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_max_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_min_fields": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "invited_by_player_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_min_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_mutation_response": { @@ -112074,82 +117547,82 @@ export default { 40 ], "returning": [ - 4982 + 5270 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_on_conflict": { "constraint": [ - 4992 + 5280 ], "update_columns": [ - 5015 + 5303 ], "where": [ - 4991 + 5279 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_order_by": { "created_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "invited_by": [ - 4065 + 4348 ], "invited_by_player_steam_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "steam_id": [ - 3094 + 3377 ], "team": [ - 5084 + 5372 ], "tournament_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "invited_by_player_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_stddev_fields": { @@ -112160,18 +117633,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_stddev_pop_fields": { @@ -112182,18 +117655,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_stddev_samp_fields": { @@ -112204,86 +117677,86 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 5012 + 5300 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "invited_by_player_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_sum_fields": { "invited_by_player_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4993 + 5281 ], "_set": [ - 5004 + 5292 ], "where": [ - 4991 + 5279 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_var_pop_fields": { @@ -112294,18 +117767,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_var_samp_fields": { @@ -112316,18 +117789,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_variance_fields": { @@ -112338,94 +117811,94 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster": { "e_team_role": [ - 1334 + 1398 ], "player": [ - 4052 + 4335 ], "player_steam_id": [ - 264 + 268 ], "role": [ - 1339 + 1403 ], "tournament": [ - 5106 + 5394 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team": [ - 5064 + 5352 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_aggregate": { "aggregate": [ - 5027 + 5315 ], "nodes": [ - 5023 + 5311 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 5026 + 5314 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 5044 + 5332 ], "distinct": [ 5 ], "filter": [ - 5032 + 5320 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_aggregate_fields": { "avg": [ - 5030 + 5318 ], "count": [ 40, { "columns": [ - 5044, + 5332, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -112434,83 +117907,83 @@ export default { } ], "max": [ - 5036 + 5324 ], "min": [ - 5038 + 5326 ], "stddev": [ - 5046 + 5334 ], "stddev_pop": [ - 5048 + 5336 ], "stddev_samp": [ - 5050 + 5338 ], "sum": [ - 5054 + 5342 ], "var_pop": [ - 5058 + 5346 ], "var_samp": [ - 5060 + 5348 ], "variance": [ - 5062 + 5350 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 5031 + 5319 ], "count": [ - 3094 + 3377 ], "max": [ - 5037 + 5325 ], "min": [ - 5039 + 5327 ], "stddev": [ - 5047 + 5335 ], "stddev_pop": [ - 5049 + 5337 ], "stddev_samp": [ - 5051 + 5339 ], "sum": [ - 5055 + 5343 ], "var_pop": [ - 5059 + 5347 ], "var_samp": [ - 5061 + 5349 ], "variance": [ - 5063 + 5351 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 5035 + 5323 ], "on_conflict": [ - 5041 + 5329 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_avg_fields": { @@ -112518,147 +117991,147 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_bool_exp": { "_and": [ - 5032 + 5320 ], "_not": [ - 5032 + 5320 ], "_or": [ - 5032 + 5320 ], "e_team_role": [ - 1337 + 1401 ], "player": [ - 4056 + 4339 ], "player_steam_id": [ - 266 + 270 ], "role": [ - 1340 + 1404 ], "tournament": [ - 5127 + 5415 ], "tournament_id": [ - 5172 + 5460 ], "tournament_team": [ - 5073 + 5361 ], "tournament_team_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_constraint": {}, "tournament_team_roster_inc_input": { "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_insert_input": { "e_team_role": [ - 1345 + 1409 ], "player": [ - 4063 + 4346 ], "player_steam_id": [ - 264 + 268 ], "role": [ - 1339 + 1403 ], "tournament": [ - 5136 + 5424 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team": [ - 5082 + 5370 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_max_fields": { "player_steam_id": [ - 264 + 268 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_min_fields": { "player_steam_id": [ - 264 + 268 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_mutation_response": { @@ -112666,82 +118139,82 @@ export default { 40 ], "returning": [ - 5023 + 5311 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_on_conflict": { "constraint": [ - 5033 + 5321 ], "update_columns": [ - 5056 + 5344 ], "where": [ - 5032 + 5320 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_order_by": { "e_team_role": [ - 1347 + 1411 ], "player": [ - 4065 + 4348 ], "player_steam_id": [ - 3094 + 3377 ], "role": [ - 3094 + 3377 ], "tournament": [ - 5138 + 5426 ], "tournament_id": [ - 3094 + 3377 ], "tournament_team": [ - 5084 + 5372 ], "tournament_team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_pk_columns_input": { "player_steam_id": [ - 264 + 268 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_select_column": {}, "tournament_team_roster_set_input": { "player_steam_id": [ - 264 + 268 ], "role": [ - 1339 + 1403 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_stddev_fields": { @@ -112749,15 +118222,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_stddev_pop_fields": { @@ -112765,15 +118238,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_stddev_samp_fields": { @@ -112781,74 +118254,74 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 5053 + 5341 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_stream_cursor_value_input": { "player_steam_id": [ - 264 + 268 ], "role": [ - 1339 + 1403 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_sum_fields": { "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 5034 + 5322 ], "_set": [ - 5045 + 5333 ], "where": [ - 5032 + 5320 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_var_pop_fields": { @@ -112856,15 +118329,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_var_samp_fields": { @@ -112872,15 +118345,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_variance_fields": { @@ -112888,15 +118361,15 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_teams": { @@ -112904,28 +118377,28 @@ export default { 5 ], "captain": [ - 4052 + 4335 ], "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "creator": [ - 4052 + 4335 ], "eligible_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "invites": [ - 4982, + 5270, { "distinct_on": [ - 5003, + 5291, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -112935,19 +118408,19 @@ export default { 40 ], "order_by": [ - 5001, + 5289, "[tournament_team_invites_order_by!]" ], "where": [ - 4991 + 5279 ] } ], "invites_aggregate": [ - 4983, + 5271, { "distinct_on": [ - 5003, + 5291, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -112957,28 +118430,28 @@ export default { 40 ], "order_by": [ - 5001, + 5289, "[tournament_team_invites_order_by!]" ], "where": [ - 4991 + 5279 ] } ], "name": [ - 80 + 83 ], "owner_steam_id": [ - 264 + 268 ], "results": [ - 5912 + 6200 ], "roster": [ - 5023, + 5311, { "distinct_on": [ - 5044, + 5332, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -112988,19 +118461,19 @@ export default { 40 ], "order_by": [ - 5042, + 5330, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5320 ] } ], "roster_aggregate": [ - 5024, + 5312, { "distinct_on": [ - 5044, + 5332, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -113010,11 +118483,11 @@ export default { 40 ], "order_by": [ - 5042, + 5330, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5320 ] } ], @@ -113022,69 +118495,69 @@ export default { 40 ], "short_name": [ - 80 + 83 ], "team": [ - 4621 + 4909 ], "team_id": [ - 5170 + 5458 ], "tournament": [ - 5106 + 5394 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_aggregate": { "aggregate": [ - 5068 + 5356 ], "nodes": [ - 5064 + 5352 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_aggregate_bool_exp": { "count": [ - 5067 + 5355 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 5086 + 5374 ], "distinct": [ 5 ], "filter": [ - 5073 + 5361 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_aggregate_fields": { "avg": [ - 5071 + 5359 ], "count": [ 40, { "columns": [ - 5086, + 5374, "[tournament_teams_select_column!]" ], "distinct": [ @@ -113093,83 +118566,83 @@ export default { } ], "max": [ - 5077 + 5365 ], "min": [ - 5079 + 5367 ], "stddev": [ - 5088 + 5376 ], "stddev_pop": [ - 5090 + 5378 ], "stddev_samp": [ - 5092 + 5380 ], "sum": [ - 5096 + 5384 ], "var_pop": [ - 5100 + 5388 ], "var_samp": [ - 5102 + 5390 ], "variance": [ - 5104 + 5392 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_aggregate_order_by": { "avg": [ - 5072 + 5360 ], "count": [ - 3094 + 3377 ], "max": [ - 5078 + 5366 ], "min": [ - 5080 + 5368 ], "stddev": [ - 5089 + 5377 ], "stddev_pop": [ - 5091 + 5379 ], "stddev_samp": [ - 5093 + 5381 ], "sum": [ - 5097 + 5385 ], "var_pop": [ - 5101 + 5389 ], "var_samp": [ - 5103 + 5391 ], "variance": [ - 5105 + 5393 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_arr_rel_insert_input": { "data": [ - 5076 + 5364 ], "on_conflict": [ - 5083 + 5371 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_avg_fields": { @@ -113183,306 +118656,306 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_bool_exp": { "_and": [ - 5073 + 5361 ], "_not": [ - 5073 + 5361 ], "_or": [ - 5073 + 5361 ], "can_manage": [ 6 ], "captain": [ - 4056 + 4339 ], "captain_steam_id": [ - 266 + 270 ], "created_at": [ - 4671 + 4959 ], "creator": [ - 4056 + 4339 ], "eligible_at": [ - 4671 + 4959 ], "id": [ - 5172 + 5460 ], "invites": [ - 4991 + 5279 ], "invites_aggregate": [ - 4984 + 5272 ], "name": [ - 82 + 85 ], "owner_steam_id": [ - 266 + 270 ], "results": [ - 5931 + 6219 ], "roster": [ - 5032 + 5320 ], "roster_aggregate": [ - 5025 + 5313 ], "seed": [ 41 ], "short_name": [ - 82 + 85 ], "team": [ - 4632 + 4920 ], "team_id": [ - 5172 + 5460 ], "tournament": [ - 5127 + 5415 ], "tournament_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_constraint": {}, "tournament_teams_inc_input": { "captain_steam_id": [ - 264 + 268 ], "owner_steam_id": [ - 264 + 268 ], "seed": [ 40 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_insert_input": { "captain": [ - 4063 + 4346 ], "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "creator": [ - 4063 + 4346 ], "eligible_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "invites": [ - 4988 + 5276 ], "name": [ - 80 + 83 ], "owner_steam_id": [ - 264 + 268 ], "results": [ - 5940 + 6228 ], "roster": [ - 5029 + 5317 ], "seed": [ 40 ], "short_name": [ - 80 + 83 ], "team": [ - 4641 + 4929 ], "team_id": [ - 5170 + 5458 ], "tournament": [ - 5136 + 5424 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_max_fields": { "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "eligible_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "owner_steam_id": [ - 264 + 268 ], "seed": [ 40 ], "short_name": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "eligible_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "short_name": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_min_fields": { "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "eligible_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "owner_steam_id": [ - 264 + 268 ], "seed": [ 40 ], "short_name": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "eligible_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "short_name": [ - 3094 + 3377 ], "team_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_mutation_response": { @@ -113490,138 +118963,138 @@ export default { 40 ], "returning": [ - 5064 + 5352 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_obj_rel_insert_input": { "data": [ - 5076 + 5364 ], "on_conflict": [ - 5083 + 5371 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_on_conflict": { "constraint": [ - 5074 + 5362 ], "update_columns": [ - 5098 + 5386 ], "where": [ - 5073 + 5361 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_order_by": { "can_manage": [ - 3094 + 3377 ], "captain": [ - 4065 + 4348 ], "captain_steam_id": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "creator": [ - 4065 + 4348 ], "eligible_at": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "invites_aggregate": [ - 4987 + 5275 ], "name": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "results": [ - 5942 + 6230 ], "roster_aggregate": [ - 5028 + 5316 ], "seed": [ - 3094 + 3377 ], "short_name": [ - 3094 + 3377 ], "team": [ - 4643 + 4931 ], "team_id": [ - 3094 + 3377 ], "tournament": [ - 5138 + 5426 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_select_column": {}, "tournament_teams_set_input": { "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "eligible_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "owner_steam_id": [ - 264 + 268 ], "seed": [ 40 ], "short_name": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_stddev_fields": { @@ -113635,21 +119108,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_stddev_pop_fields": { @@ -113663,21 +119136,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_stddev_samp_fields": { @@ -113691,110 +119164,110 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 5095 + 5383 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_stream_cursor_value_input": { "captain_steam_id": [ - 264 + 268 ], "created_at": [ - 4670 + 4958 ], "eligible_at": [ - 4670 + 4958 ], "id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "owner_steam_id": [ - 264 + 268 ], "seed": [ 40 ], "short_name": [ - 80 + 83 ], "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_sum_fields": { "captain_steam_id": [ - 264 + 268 ], "owner_steam_id": [ - 264 + 268 ], "seed": [ 40 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 5075 + 5363 ], "_set": [ - 5087 + 5375 ], "where": [ - 5073 + 5361 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_var_pop_fields": { @@ -113808,21 +119281,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_var_samp_fields": { @@ -113836,21 +119309,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_variance_fields": { @@ -113864,35 +119337,35 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 3094 + 3377 ], "owner_steam_id": [ - 3094 + 3377 ], "seed": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournaments": { "admin": [ - 4052 + 4335 ], "auto_start": [ 5 ], "award_configs": [ - 4672, + 4960, { "distinct_on": [ - 4694, + 4982, "[tournament_awards_select_column!]" ], "limit": [ @@ -113902,19 +119375,19 @@ export default { 40 ], "order_by": [ - 4692, + 4980, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4969 ] } ], "award_configs_aggregate": [ - 4673, + 4961, { "distinct_on": [ - 4694, + 4982, "[tournament_awards_select_column!]" ], "limit": [ @@ -113924,19 +119397,19 @@ export default { 40 ], "order_by": [ - 4692, + 4980, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4969 ] } ], "awards": [ - 195, + 199, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -113946,19 +119419,19 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "awards_aggregate": [ - 196, + 200, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -113968,11 +119441,11 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], @@ -113980,7 +119453,7 @@ export default { 5 ], "banner": [ - 80 + 83 ], "can_cancel": [ 5 @@ -114007,10 +119480,10 @@ export default { 5 ], "categories": [ - 4760, + 5048, { "distinct_on": [ - 4778, + 5066, "[tournament_categories_select_column!]" ], "limit": [ @@ -114020,19 +119493,19 @@ export default { 40 ], "order_by": [ - 4776, + 5064, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5055 ] } ], "categories_aggregate": [ - 4761, + 5049, { "distinct_on": [ - 4778, + 5066, "[tournament_categories_select_column!]" ], "limit": [ @@ -114042,22 +119515,22 @@ export default { 40 ], "order_by": [ - 4776, + 5064, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5055 ] } ], "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "discord_guild_id": [ - 80 + 83 ], "discord_notifications_enabled": [ 5 @@ -114099,25 +119572,25 @@ export default { 5 ], "discord_role_id": [ - 80 + 83 ], "discord_voice_enabled": [ 5 ], "discord_webhook": [ - 80 + 83 ], "e_tournament_status": [ - 1437 + 1501 ], "has_min_teams": [ 5 ], "homepage": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_league": [ 5 @@ -114129,22 +119602,22 @@ export default { 5 ], "latitude": [ - 1777 + 1841 ], "league_season_division": [ - 2108 + 2369 ], "location": [ - 80 + 83 ], "logo": [ - 80 + 83 ], "longitude": [ - 1777 + 1841 ], "match_options_id": [ - 5170 + 5458 ], "max_players_per_lineup": [ 40 @@ -114153,19 +119626,19 @@ export default { 40 ], "name": [ - 80 + 83 ], "options": [ - 2758 + 3019 ], "organizer_steam_id": [ - 264 + 268 ], "organizer_teams": [ - 4784, + 5072, { "distinct_on": [ - 4802, + 5090, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -114175,19 +119648,19 @@ export default { 40 ], "order_by": [ - 4800, + 5088, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4791 + 5079 ] } ], "organizer_teams_aggregate": [ - 4785, + 5073, { "distinct_on": [ - 4802, + 5090, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -114197,19 +119670,19 @@ export default { 40 ], "order_by": [ - 4800, + 5088, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4791 + 5079 ] } ], "organizers": [ - 4808, + 5096, { "distinct_on": [ - 4829, + 5117, "[tournament_organizers_select_column!]" ], "limit": [ @@ -114219,19 +119692,19 @@ export default { 40 ], "order_by": [ - 4827, + 5115, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5105 ] } ], "organizers_aggregate": [ - 4809, + 5097, { "distinct_on": [ - 4829, + 5117, "[tournament_organizers_select_column!]" ], "limit": [ @@ -114241,19 +119714,19 @@ export default { 40 ], "order_by": [ - 4827, + 5115, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5105 ] } ], "player_stats": [ - 6023, + 6311, { "distinct_on": [ - 6049, + 6337, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -114263,19 +119736,19 @@ export default { 40 ], "order_by": [ - 6048, + 6336, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6042 + 6330 ] } ], "player_stats_aggregate": [ - 6024, + 6312, { "distinct_on": [ - 6049, + 6337, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -114285,19 +119758,19 @@ export default { 40 ], "order_by": [ - 6048, + 6336, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6042 + 6330 ] } ], "prizes": [ - 4849, + 5137, { "distinct_on": [ - 4870, + 5158, "[tournament_prizes_select_column!]" ], "limit": [ @@ -114307,19 +119780,19 @@ export default { 40 ], "order_by": [ - 4868, + 5156, "[tournament_prizes_order_by!]" ], "where": [ - 4858 + 5146 ] } ], "prizes_aggregate": [ - 4850, + 5138, { "distinct_on": [ - 4870, + 5158, "[tournament_prizes_select_column!]" ], "limit": [ @@ -114329,19 +119802,19 @@ export default { 40 ], "order_by": [ - 4868, + 5156, "[tournament_prizes_order_by!]" ], "where": [ - 4858 + 5146 ] } ], "results": [ - 5972, + 6260, { "distinct_on": [ - 5998, + 6286, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -114351,19 +119824,19 @@ export default { 40 ], "order_by": [ - 5997, + 6285, "[v_team_tournament_results_order_by!]" ], "where": [ - 5991 + 6279 ] } ], "results_aggregate": [ - 5973, + 6261, { "distinct_on": [ - 5998, + 6286, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -114373,19 +119846,19 @@ export default { 40 ], "order_by": [ - 5997, + 6285, "[v_team_tournament_results_order_by!]" ], "where": [ - 5991 + 6279 ] } ], "rosters": [ - 5023, + 5311, { "distinct_on": [ - 5044, + 5332, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -114395,19 +119868,19 @@ export default { 40 ], "order_by": [ - 5042, + 5330, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5320 ] } ], "rosters_aggregate": [ - 5024, + 5312, { "distinct_on": [ - 5044, + 5332, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -114417,22 +119890,22 @@ export default { 40 ], "order_by": [ - 5042, + 5330, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5320 ] } ], "scheduling_mode": [ - 80 + 83 ], "stages": [ - 4931, + 5219, { "distinct_on": [ - 4960, + 5248, "[tournament_stages_select_column!]" ], "limit": [ @@ -114442,19 +119915,19 @@ export default { 40 ], "order_by": [ - 4957, + 5245, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5231 ] } ], "stages_aggregate": [ - 4932, + 5220, { "distinct_on": [ - 4960, + 5248, "[tournament_stages_select_column!]" ], "limit": [ @@ -114464,25 +119937,25 @@ export default { 40 ], "order_by": [ - 4957, + 5245, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5231 ] } ], "start": [ - 4670 + 4958 ], "status": [ - 1442 + 1506 ], "teams": [ - 5064, + 5352, { "distinct_on": [ - 5086, + 5374, "[tournament_teams_select_column!]" ], "limit": [ @@ -114492,19 +119965,19 @@ export default { 40 ], "order_by": [ - 5084, + 5372, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5361 ] } ], "teams_aggregate": [ - 5065, + 5353, { "distinct_on": [ - 5086, + 5374, "[tournament_teams_select_column!]" ], "limit": [ @@ -114514,285 +119987,285 @@ export default { 40 ], "order_by": [ - 5084, + 5372, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5361 ] } ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate": { "aggregate": [ - 5122 + 5410 ], "nodes": [ - 5106 + 5394 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_bool_exp": { "avg": [ - 5109 + 5397 ], "bool_and": [ - 5110 + 5398 ], "bool_or": [ - 5111 + 5399 ], "corr": [ - 5112 + 5400 ], "count": [ - 5114 + 5402 ], "covar_samp": [ - 5115 + 5403 ], "max": [ - 5117 + 5405 ], "min": [ - 5118 + 5406 ], "stddev_samp": [ - 5119 + 5407 ], "sum": [ - 5120 + 5408 ], "var_samp": [ - 5121 + 5409 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_bool_exp_avg": { "arguments": [ - 5141 + 5429 ], "distinct": [ 5 ], "filter": [ - 5127 + 5415 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 5142 + 5430 ], "distinct": [ 5 ], "filter": [ - 5127 + 5415 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 5143 + 5431 ], "distinct": [ 5 ], "filter": [ - 5127 + 5415 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_bool_exp_corr": { "arguments": [ - 5113 + 5401 ], "distinct": [ 5 ], "filter": [ - 5127 + 5415 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_bool_exp_corr_arguments": { "X": [ - 5144 + 5432 ], "Y": [ - 5144 + 5432 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 5140 + 5428 ], "distinct": [ 5 ], "filter": [ - 5127 + 5415 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_bool_exp_covar_samp": { "arguments": [ - 5116 + 5404 ], "distinct": [ 5 ], "filter": [ - 5127 + 5415 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5145 + 5433 ], "Y": [ - 5145 + 5433 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_bool_exp_max": { "arguments": [ - 5146 + 5434 ], "distinct": [ 5 ], "filter": [ - 5127 + 5415 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_bool_exp_min": { "arguments": [ - 5147 + 5435 ], "distinct": [ 5 ], "filter": [ - 5127 + 5415 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5148 + 5436 ], "distinct": [ 5 ], "filter": [ - 5127 + 5415 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_bool_exp_sum": { "arguments": [ - 5149 + 5437 ], "distinct": [ 5 ], "filter": [ - 5127 + 5415 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_bool_exp_var_samp": { "arguments": [ - 5150 + 5438 ], "distinct": [ 5 ], "filter": [ - 5127 + 5415 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_fields": { "avg": [ - 5125 + 5413 ], "count": [ 40, { "columns": [ - 5140, + 5428, "[tournaments_select_column!]" ], "distinct": [ @@ -114801,83 +120274,83 @@ export default { } ], "max": [ - 5131 + 5419 ], "min": [ - 5133 + 5421 ], "stddev": [ - 5152 + 5440 ], "stddev_pop": [ - 5154 + 5442 ], "stddev_samp": [ - 5156 + 5444 ], "sum": [ - 5160 + 5448 ], "var_pop": [ - 5164 + 5452 ], "var_samp": [ - 5166 + 5454 ], "variance": [ - 5168 + 5456 ], "__typename": [ - 80 + 83 ] }, "tournaments_aggregate_order_by": { "avg": [ - 5126 + 5414 ], "count": [ - 3094 + 3377 ], "max": [ - 5132 + 5420 ], "min": [ - 5134 + 5422 ], "stddev": [ - 5153 + 5441 ], "stddev_pop": [ - 5155 + 5443 ], "stddev_samp": [ - 5157 + 5445 ], "sum": [ - 5161 + 5449 ], "var_pop": [ - 5165 + 5453 ], "var_samp": [ - 5167 + 5455 ], "variance": [ - 5169 + 5457 ], "__typename": [ - 80 + 83 ] }, "tournaments_arr_rel_insert_input": { "data": [ - 5130 + 5418 ], "on_conflict": [ - 5137 + 5425 ], "__typename": [ - 80 + 83 ] }, "tournaments_avg_fields": { @@ -114897,56 +120370,56 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournaments_avg_order_by": { "latitude": [ - 3094 + 3377 ], "longitude": [ - 3094 + 3377 ], "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournaments_bool_exp": { "_and": [ - 5127 + 5415 ], "_not": [ - 5127 + 5415 ], "_or": [ - 5127 + 5415 ], "admin": [ - 4056 + 4339 ], "auto_start": [ 6 ], "award_configs": [ - 4681 + 4969 ], "award_configs_aggregate": [ - 4674 + 4962 ], "awards": [ - 204 + 208 ], "awards_aggregate": [ - 197 + 201 ], "awards_enabled": [ 6 ], "banner": [ - 82 + 85 ], "can_cancel": [ 6 @@ -114973,19 +120446,19 @@ export default { 6 ], "categories": [ - 4767 + 5055 ], "categories_aggregate": [ - 4762 + 5050 ], "created_at": [ - 4671 + 4959 ], "description": [ - 82 + 85 ], "discord_guild_id": [ - 82 + 85 ], "discord_notifications_enabled": [ 6 @@ -115027,25 +120500,25 @@ export default { 6 ], "discord_role_id": [ - 82 + 85 ], "discord_voice_enabled": [ 6 ], "discord_webhook": [ - 82 + 85 ], "e_tournament_status": [ - 1440 + 1504 ], "has_min_teams": [ 6 ], "homepage": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "is_league": [ 6 @@ -115057,22 +120530,22 @@ export default { 6 ], "latitude": [ - 1778 + 1842 ], "league_season_division": [ - 2115 + 2376 ], "location": [ - 82 + 85 ], "logo": [ - 82 + 85 ], "longitude": [ - 1778 + 1842 ], "match_options_id": [ - 5172 + 5460 ], "max_players_per_lineup": [ 41 @@ -115081,120 +120554,120 @@ export default { 41 ], "name": [ - 82 + 85 ], "options": [ - 2762 + 3030 ], "organizer_steam_id": [ - 266 + 270 ], "organizer_teams": [ - 4791 + 5079 ], "organizer_teams_aggregate": [ - 4786 + 5074 ], "organizers": [ - 4817 + 5105 ], "organizers_aggregate": [ - 4810 + 5098 ], "player_stats": [ - 6042 + 6330 ], "player_stats_aggregate": [ - 6025 + 6313 ], "prizes": [ - 4858 + 5146 ], "prizes_aggregate": [ - 4851 + 5139 ], "results": [ - 5991 + 6279 ], "results_aggregate": [ - 5974 + 6262 ], "rosters": [ - 5032 + 5320 ], "rosters_aggregate": [ - 5025 + 5313 ], "scheduling_mode": [ - 82 + 85 ], "stages": [ - 4943 + 5231 ], "stages_aggregate": [ - 4933 + 5221 ], "start": [ - 4671 + 4959 ], "status": [ - 1443 + 1507 ], "teams": [ - 5073 + 5361 ], "teams_aggregate": [ - 5066 + 5354 ], "__typename": [ - 80 + 83 ] }, "tournaments_constraint": {}, "tournaments_inc_input": { "latitude": [ - 1777 + 1841 ], "longitude": [ - 1777 + 1841 ], "organizer_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "tournaments_insert_input": { "admin": [ - 4063 + 4346 ], "auto_start": [ 5 ], "award_configs": [ - 4678 + 4966 ], "awards": [ - 201 + 205 ], "awards_enabled": [ 5 ], "banner": [ - 80 + 83 ], "categories": [ - 4766 + 5054 ], "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "discord_guild_id": [ - 80 + 83 ], "discord_notifications_enabled": [ 5 @@ -115236,129 +120709,129 @@ export default { 5 ], "discord_role_id": [ - 80 + 83 ], "discord_voice_enabled": [ 5 ], "discord_webhook": [ - 80 + 83 ], "e_tournament_status": [ - 1448 + 1512 ], "homepage": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_league": [ 5 ], "latitude": [ - 1777 + 1841 ], "league_season_division": [ - 2123 + 2384 ], "location": [ - 80 + 83 ], "logo": [ - 80 + 83 ], "longitude": [ - 1777 + 1841 ], "match_options_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "options": [ - 2769 + 3039 ], "organizer_steam_id": [ - 264 + 268 ], "organizer_teams": [ - 4790 + 5078 ], "organizers": [ - 4814 + 5102 ], "player_stats": [ - 6039 + 6327 ], "prizes": [ - 4855 + 5143 ], "results": [ - 5988 + 6276 ], "rosters": [ - 5029 + 5317 ], "scheduling_mode": [ - 80 + 83 ], "stages": [ - 4940 + 5228 ], "start": [ - 4670 + 4958 ], "status": [ - 1442 + 1506 ], "teams": [ - 5070 + 5358 ], "__typename": [ - 80 + 83 ] }, "tournaments_max_fields": { "banner": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "discord_guild_id": [ - 80 + 83 ], "discord_role_id": [ - 80 + 83 ], "discord_webhook": [ - 80 + 83 ], "homepage": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "latitude": [ - 1777 + 1841 ], "location": [ - 80 + 83 ], "logo": [ - 80 + 83 ], "longitude": [ - 1777 + 1841 ], "match_options_id": [ - 5170 + 5458 ], "max_players_per_lineup": [ 40 @@ -115367,116 +120840,116 @@ export default { 40 ], "name": [ - 80 + 83 ], "organizer_steam_id": [ - 264 + 268 ], "scheduling_mode": [ - 80 + 83 ], "start": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "tournaments_max_order_by": { "banner": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "description": [ - 3094 + 3377 ], "discord_guild_id": [ - 3094 + 3377 ], "discord_role_id": [ - 3094 + 3377 ], "discord_webhook": [ - 3094 + 3377 ], "homepage": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "latitude": [ - 3094 + 3377 ], "location": [ - 3094 + 3377 ], "logo": [ - 3094 + 3377 ], "longitude": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "organizer_steam_id": [ - 3094 + 3377 ], "scheduling_mode": [ - 3094 + 3377 ], "start": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournaments_min_fields": { "banner": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "discord_guild_id": [ - 80 + 83 ], "discord_role_id": [ - 80 + 83 ], "discord_webhook": [ - 80 + 83 ], "homepage": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "latitude": [ - 1777 + 1841 ], "location": [ - 80 + 83 ], "logo": [ - 80 + 83 ], "longitude": [ - 1777 + 1841 ], "match_options_id": [ - 5170 + 5458 ], "max_players_per_lineup": [ 40 @@ -115485,75 +120958,75 @@ export default { 40 ], "name": [ - 80 + 83 ], "organizer_steam_id": [ - 264 + 268 ], "scheduling_mode": [ - 80 + 83 ], "start": [ - 4670 + 4958 ], "__typename": [ - 80 + 83 ] }, "tournaments_min_order_by": { "banner": [ - 3094 + 3377 ], "created_at": [ - 3094 + 3377 ], "description": [ - 3094 + 3377 ], "discord_guild_id": [ - 3094 + 3377 ], "discord_role_id": [ - 3094 + 3377 ], "discord_webhook": [ - 3094 + 3377 ], "homepage": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "latitude": [ - 3094 + 3377 ], "location": [ - 3094 + 3377 ], "logo": [ - 3094 + 3377 ], "longitude": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "organizer_steam_id": [ - 3094 + 3377 ], "scheduling_mode": [ - 3094 + 3377 ], "start": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournaments_mutation_response": { @@ -115561,237 +121034,237 @@ export default { 40 ], "returning": [ - 5106 + 5394 ], "__typename": [ - 80 + 83 ] }, "tournaments_obj_rel_insert_input": { "data": [ - 5130 + 5418 ], "on_conflict": [ - 5137 + 5425 ], "__typename": [ - 80 + 83 ] }, "tournaments_on_conflict": { "constraint": [ - 5128 + 5416 ], "update_columns": [ - 5162 + 5450 ], "where": [ - 5127 + 5415 ], "__typename": [ - 80 + 83 ] }, "tournaments_order_by": { "admin": [ - 4065 + 4348 ], "auto_start": [ - 3094 + 3377 ], "award_configs_aggregate": [ - 4677 + 4965 ], "awards_aggregate": [ - 200 + 204 ], "awards_enabled": [ - 3094 + 3377 ], "banner": [ - 3094 + 3377 ], "can_cancel": [ - 3094 + 3377 ], "can_close_registration": [ - 3094 + 3377 ], "can_join": [ - 3094 + 3377 ], "can_open_registration": [ - 3094 + 3377 ], "can_pause": [ - 3094 + 3377 ], "can_resume": [ - 3094 + 3377 ], "can_setup": [ - 3094 + 3377 ], "can_start": [ - 3094 + 3377 ], "categories_aggregate": [ - 4765 + 5053 ], "created_at": [ - 3094 + 3377 ], "description": [ - 3094 + 3377 ], "discord_guild_id": [ - 3094 + 3377 ], "discord_notifications_enabled": [ - 3094 + 3377 ], "discord_notify_Canceled": [ - 3094 + 3377 ], "discord_notify_Finished": [ - 3094 + 3377 ], "discord_notify_Forfeit": [ - 3094 + 3377 ], "discord_notify_Live": [ - 3094 + 3377 ], "discord_notify_MapPaused": [ - 3094 + 3377 ], "discord_notify_PickingPlayers": [ - 3094 + 3377 ], "discord_notify_Scheduled": [ - 3094 + 3377 ], "discord_notify_Surrendered": [ - 3094 + 3377 ], "discord_notify_Tie": [ - 3094 + 3377 ], "discord_notify_Veto": [ - 3094 + 3377 ], "discord_notify_WaitingForCheckIn": [ - 3094 + 3377 ], "discord_notify_WaitingForServer": [ - 3094 + 3377 ], "discord_role_id": [ - 3094 + 3377 ], "discord_voice_enabled": [ - 3094 + 3377 ], "discord_webhook": [ - 3094 + 3377 ], "e_tournament_status": [ - 1450 + 1514 ], "has_min_teams": [ - 3094 + 3377 ], "homepage": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "is_league": [ - 3094 + 3377 ], "is_organizer": [ - 3094 + 3377 ], "joined_tournament": [ - 3094 + 3377 ], "latitude": [ - 3094 + 3377 ], "league_season_division": [ - 2125 + 2386 ], "location": [ - 3094 + 3377 ], "logo": [ - 3094 + 3377 ], "longitude": [ - 3094 + 3377 ], "match_options_id": [ - 3094 + 3377 ], "max_players_per_lineup": [ - 3094 + 3377 ], "min_players_per_lineup": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "options": [ - 2771 + 3041 ], "organizer_steam_id": [ - 3094 + 3377 ], "organizer_teams_aggregate": [ - 4789 + 5077 ], "organizers_aggregate": [ - 4813 + 5101 ], "player_stats_aggregate": [ - 6038 + 6326 ], "prizes_aggregate": [ - 4854 + 5142 ], "results_aggregate": [ - 5987 + 6275 ], "rosters_aggregate": [ - 5028 + 5316 ], "scheduling_mode": [ - 3094 + 3377 ], "stages_aggregate": [ - 4938 + 5226 ], "start": [ - 3094 + 3377 ], "status": [ - 3094 + 3377 ], "teams_aggregate": [ - 5069 + 5357 ], "__typename": [ - 80 + 83 ] }, "tournaments_pk_columns_input": { "id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "tournaments_select_column": {}, @@ -115813,16 +121286,16 @@ export default { 5 ], "banner": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "discord_guild_id": [ - 80 + 83 ], "discord_notifications_enabled": [ 5 @@ -115864,55 +121337,55 @@ export default { 5 ], "discord_role_id": [ - 80 + 83 ], "discord_voice_enabled": [ 5 ], "discord_webhook": [ - 80 + 83 ], "homepage": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_league": [ 5 ], "latitude": [ - 1777 + 1841 ], "location": [ - 80 + 83 ], "logo": [ - 80 + 83 ], "longitude": [ - 1777 + 1841 ], "match_options_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "organizer_steam_id": [ - 264 + 268 ], "scheduling_mode": [ - 80 + 83 ], "start": [ - 4670 + 4958 ], "status": [ - 1442 + 1506 ], "__typename": [ - 80 + 83 ] }, "tournaments_stddev_fields": { @@ -115932,21 +121405,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournaments_stddev_order_by": { "latitude": [ - 3094 + 3377 ], "longitude": [ - 3094 + 3377 ], "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournaments_stddev_pop_fields": { @@ -115966,21 +121439,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournaments_stddev_pop_order_by": { "latitude": [ - 3094 + 3377 ], "longitude": [ - 3094 + 3377 ], "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournaments_stddev_samp_fields": { @@ -116000,32 +121473,32 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournaments_stddev_samp_order_by": { "latitude": [ - 3094 + 3377 ], "longitude": [ - 3094 + 3377 ], "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournaments_stream_cursor_input": { "initial_value": [ - 5159 + 5447 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "tournaments_stream_cursor_value_input": { @@ -116036,16 +121509,16 @@ export default { 5 ], "banner": [ - 80 + 83 ], "created_at": [ - 4670 + 4958 ], "description": [ - 80 + 83 ], "discord_guild_id": [ - 80 + 83 ], "discord_notifications_enabled": [ 5 @@ -116087,63 +121560,63 @@ export default { 5 ], "discord_role_id": [ - 80 + 83 ], "discord_voice_enabled": [ 5 ], "discord_webhook": [ - 80 + 83 ], "homepage": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "is_league": [ 5 ], "latitude": [ - 1777 + 1841 ], "location": [ - 80 + 83 ], "logo": [ - 80 + 83 ], "longitude": [ - 1777 + 1841 ], "match_options_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "organizer_steam_id": [ - 264 + 268 ], "scheduling_mode": [ - 80 + 83 ], "start": [ - 4670 + 4958 ], "status": [ - 1442 + 1506 ], "__typename": [ - 80 + 83 ] }, "tournaments_sum_fields": { "latitude": [ - 1777 + 1841 ], "longitude": [ - 1777 + 1841 ], "max_players_per_lineup": [ 40 @@ -116152,39 +121625,39 @@ export default { 40 ], "organizer_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "tournaments_sum_order_by": { "latitude": [ - 3094 + 3377 ], "longitude": [ - 3094 + 3377 ], "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 5129 + 5417 ], "_set": [ - 5151 + 5439 ], "where": [ - 5127 + 5415 ], "__typename": [ - 80 + 83 ] }, "tournaments_var_pop_fields": { @@ -116204,21 +121677,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournaments_var_pop_order_by": { "latitude": [ - 3094 + 3377 ], "longitude": [ - 3094 + 3377 ], "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournaments_var_samp_fields": { @@ -116238,21 +121711,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournaments_var_samp_order_by": { "latitude": [ - 3094 + 3377 ], "longitude": [ - 3094 + 3377 ], "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "tournaments_variance_fields": { @@ -116272,92 +121745,92 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "tournaments_variance_order_by": { "latitude": [ - 3094 + 3377 ], "longitude": [ - 3094 + 3377 ], "organizer_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 5170 + 5458 ], "_contains": [ - 5170 + 5458 ], "_eq": [ - 5170 + 5458 ], "_gt": [ - 5170 + 5458 ], "_gte": [ - 5170 + 5458 ], "_in": [ - 5170 + 5458 ], "_is_null": [ 5 ], "_lt": [ - 5170 + 5458 ], "_lte": [ - 5170 + 5458 ], "_neq": [ - 5170 + 5458 ], "_nin": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "uuid_comparison_exp": { "_eq": [ - 5170 + 5458 ], "_gt": [ - 5170 + 5458 ], "_gte": [ - 5170 + 5458 ], "_in": [ - 5170 + 5458 ], "_is_null": [ 5 ], "_lt": [ - 5170 + 5458 ], "_lte": [ - 5170 + 5458 ], "_neq": [ - 5170 + 5458 ], "_nin": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats": { @@ -116368,19 +121841,19 @@ export default { 40 ], "event": [ - 1749 + 1813 ], "event_id": [ - 5170 + 5458 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 @@ -116389,242 +121862,242 @@ export default { 40 ], "player": [ - 4052 + 4335 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate": { "aggregate": [ - 5187 + 5475 ], "nodes": [ - 5173 + 5461 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate_bool_exp": { "avg": [ - 5176 + 5464 ], "corr": [ - 5177 + 5465 ], "count": [ - 5179 + 5467 ], "covar_samp": [ - 5180 + 5468 ], "max": [ - 5182 + 5470 ], "min": [ - 5183 + 5471 ], "stddev_samp": [ - 5184 + 5472 ], "sum": [ - 5185 + 5473 ], "var_samp": [ - 5186 + 5474 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5200 + 5488 ], "distinct": [ 5 ], "filter": [ - 5192 + 5480 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5178 + 5466 ], "distinct": [ 5 ], "filter": [ - 5192 + 5480 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5201 + 5489 ], "Y": [ - 5201 + 5489 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5199 + 5487 ], "distinct": [ 5 ], "filter": [ - 5192 + 5480 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5181 + 5469 ], "distinct": [ 5 ], "filter": [ - 5192 + 5480 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5202 + 5490 ], "Y": [ - 5202 + 5490 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5203 + 5491 ], "distinct": [ 5 ], "filter": [ - 5192 + 5480 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5204 + 5492 ], "distinct": [ 5 ], "filter": [ - 5192 + 5480 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5205 + 5493 ], "distinct": [ 5 ], "filter": [ - 5192 + 5480 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5206 + 5494 ], "distinct": [ 5 ], "filter": [ - 5192 + 5480 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5207 + 5495 ], "distinct": [ 5 ], "filter": [ - 5192 + 5480 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate_fields": { "avg": [ - 5190 + 5478 ], "count": [ 40, { "columns": [ - 5199, + 5487, "[v_event_player_stats_select_column!]" ], "distinct": [ @@ -116633,80 +122106,80 @@ export default { } ], "max": [ - 5194 + 5482 ], "min": [ - 5196 + 5484 ], "stddev": [ - 5208 + 5496 ], "stddev_pop": [ - 5210 + 5498 ], "stddev_samp": [ - 5212 + 5500 ], "sum": [ - 5216 + 5504 ], "var_pop": [ - 5218 + 5506 ], "var_samp": [ - 5220 + 5508 ], "variance": [ - 5222 + 5510 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_aggregate_order_by": { "avg": [ - 5191 + 5479 ], "count": [ - 3094 + 3377 ], "max": [ - 5195 + 5483 ], "min": [ - 5197 + 5485 ], "stddev": [ - 5209 + 5497 ], "stddev_pop": [ - 5211 + 5499 ], "stddev_samp": [ - 5213 + 5501 ], "sum": [ - 5217 + 5505 ], "var_pop": [ - 5219 + 5507 ], "var_samp": [ - 5221 + 5509 ], "variance": [ - 5223 + 5511 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_arr_rel_insert_input": { "data": [ - 5193 + 5481 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_avg_fields": { @@ -116735,47 +122208,47 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_avg_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_bool_exp": { "_and": [ - 5192 + 5480 ], "_not": [ - 5192 + 5480 ], "_or": [ - 5192 + 5480 ], "assists": [ 41 @@ -116784,19 +122257,19 @@ export default { 41 ], "event": [ - 1753 + 1817 ], "event_id": [ - 5172 + 5460 ], "headshot_percentage": [ - 1778 + 1842 ], "headshots": [ 41 ], "kdr": [ - 1778 + 1842 ], "kills": [ 41 @@ -116805,13 +122278,13 @@ export default { 41 ], "player": [ - 4056 + 4339 ], "player_steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_insert_input": { @@ -116822,19 +122295,19 @@ export default { 40 ], "event": [ - 1760 + 1824 ], "event_id": [ - 5170 + 5458 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 @@ -116843,13 +122316,13 @@ export default { 40 ], "player": [ - 4063 + 4346 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_max_fields": { @@ -116860,16 +122333,16 @@ export default { 40 ], "event_id": [ - 5170 + 5458 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 @@ -116878,42 +122351,42 @@ export default { 40 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_max_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "event_id": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_min_fields": { @@ -116924,16 +122397,16 @@ export default { 40 ], "event_id": [ - 5170 + 5458 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 @@ -116942,80 +122415,80 @@ export default { 40 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_min_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "event_id": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "event": [ - 1762 + 1826 ], "event_id": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_select_column": {}, @@ -117053,36 +122526,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_stddev_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_stddev_pop_fields": { @@ -117111,36 +122584,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_stddev_pop_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_stddev_samp_fields": { @@ -117169,47 +122642,47 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_stddev_samp_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 5215 + 5503 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_stream_cursor_value_input": { @@ -117220,16 +122693,16 @@ export default { 40 ], "event_id": [ - 5170 + 5458 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 @@ -117238,10 +122711,10 @@ export default { 40 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_sum_fields": { @@ -117252,13 +122725,13 @@ export default { 40 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 @@ -117267,39 +122740,39 @@ export default { 40 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_sum_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_var_pop_fields": { @@ -117328,36 +122801,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_var_pop_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_var_samp_fields": { @@ -117386,36 +122859,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_var_samp_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_variance_fields": { @@ -117444,36 +122917,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_event_player_stats_variance_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status": { @@ -117520,29 +122993,29 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 5226 + 5514 ], "nodes": [ - 5224 + 5512 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 5227 + 5515 ], "count": [ 40, { "columns": [ - 5232, + 5520, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -117551,34 +123024,34 @@ export default { } ], "max": [ - 5229 + 5517 ], "min": [ - 5230 + 5518 ], "stddev": [ - 5233 + 5521 ], "stddev_pop": [ - 5234 + 5522 ], "stddev_samp": [ - 5235 + 5523 ], "sum": [ - 5238 + 5526 ], "var_pop": [ - 5239 + 5527 ], "var_samp": [ - 5240 + 5528 ], "variance": [ - 5241 + 5529 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_avg_fields": { @@ -117613,18 +123086,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_bool_exp": { "_and": [ - 5228 + 5516 ], "_not": [ - 5228 + 5516 ], "_or": [ - 5228 + 5516 ], "demo_free_gpu_nodes": [ 41 @@ -117669,7 +123142,7 @@ export default { 41 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_max_fields": { @@ -117704,7 +123177,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_min_fields": { @@ -117739,54 +123212,54 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 3094 + 3377 ], "demo_in_progress": [ - 3094 + 3377 ], "demo_total_gpu_nodes": [ - 3094 + 3377 ], "free_gpu_nodes": [ - 3094 + 3377 ], "free_gpu_nodes_for_batch": [ - 3094 + 3377 ], "highlights_in_progress": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "live_in_progress": [ - 3094 + 3377 ], "registered_gpu_nodes": [ - 3094 + 3377 ], "rendering_total_gpu_nodes": [ - 3094 + 3377 ], "renders_paused_for_active_match": [ - 3094 + 3377 ], "streaming_free_gpu_nodes": [ - 3094 + 3377 ], "streaming_total_gpu_nodes": [ - 3094 + 3377 ], "total_gpu_nodes": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_select_column": {}, @@ -117822,7 +123295,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_stddev_pop_fields": { @@ -117857,7 +123330,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_stddev_samp_fields": { @@ -117892,18 +123365,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 5237 + 5525 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_stream_cursor_value_input": { @@ -117950,7 +123423,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_sum_fields": { @@ -117985,7 +123458,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_var_pop_fields": { @@ -118020,7 +123493,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_var_samp_fields": { @@ -118055,7 +123528,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_gpu_pool_status_variance_fields": { @@ -118090,7 +123563,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings": { @@ -118101,22 +123574,22 @@ export default { 40 ], "league_division_id": [ - 5170 + 5458 ], "league_season_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team": [ - 2290 + 2551 ], "league_team_id": [ - 5170 + 5458 ], "league_team_season_id": [ - 5170 + 5458 ], "losses": [ 40 @@ -118146,66 +123619,66 @@ export default { 40 ], "season_division": [ - 2108 + 2369 ], "team_season": [ - 2248 + 2509 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_aggregate": { "aggregate": [ - 5246 + 5534 ], "nodes": [ - 5242 + 5530 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 5245 + 5533 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 5258 + 5546 ], "distinct": [ 5 ], "filter": [ - 5251 + 5539 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_aggregate_fields": { "avg": [ - 5249 + 5537 ], "count": [ 40, { "columns": [ - 5258, + 5546, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -118214,80 +123687,80 @@ export default { } ], "max": [ - 5253 + 5541 ], "min": [ - 5255 + 5543 ], "stddev": [ - 5259 + 5547 ], "stddev_pop": [ - 5261 + 5549 ], "stddev_samp": [ - 5263 + 5551 ], "sum": [ - 5267 + 5555 ], "var_pop": [ - 5269 + 5557 ], "var_samp": [ - 5271 + 5559 ], "variance": [ - 5273 + 5561 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 5250 + 5538 ], "count": [ - 3094 + 3377 ], "max": [ - 5254 + 5542 ], "min": [ - 5256 + 5544 ], "stddev": [ - 5260 + 5548 ], "stddev_pop": [ - 5262 + 5550 ], "stddev_samp": [ - 5264 + 5552 ], "sum": [ - 5268 + 5556 ], "var_pop": [ - 5270 + 5558 ], "var_samp": [ - 5272 + 5560 ], "variance": [ - 5274 + 5562 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 5252 + 5540 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_avg_fields": { @@ -118328,59 +123801,59 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "round_diff": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_bool_exp": { "_and": [ - 5251 + 5539 ], "_not": [ - 5251 + 5539 ], "_or": [ - 5251 + 5539 ], "head_to_head_match_wins": [ 41 @@ -118389,22 +123862,22 @@ export default { 41 ], "league_division_id": [ - 5172 + 5460 ], "league_season_division_id": [ - 5172 + 5460 ], "league_season_id": [ - 5172 + 5460 ], "league_team": [ - 2293 + 2554 ], "league_team_id": [ - 5172 + 5460 ], "league_team_season_id": [ - 5172 + 5460 ], "losses": [ 41 @@ -118434,19 +123907,19 @@ export default { 41 ], "season_division": [ - 2115 + 2376 ], "team_season": [ - 2257 + 2518 ], "tournament_team_id": [ - 5172 + 5460 ], "wins": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_insert_input": { @@ -118457,22 +123930,22 @@ export default { 40 ], "league_division_id": [ - 5170 + 5458 ], "league_season_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team": [ - 2299 + 2560 ], "league_team_id": [ - 5170 + 5458 ], "league_team_season_id": [ - 5170 + 5458 ], "losses": [ 40 @@ -118502,19 +123975,19 @@ export default { 40 ], "season_division": [ - 2123 + 2384 ], "team_season": [ - 2266 + 2527 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_max_fields": { @@ -118525,19 +123998,19 @@ export default { 40 ], "league_division_id": [ - 5170 + 5458 ], "league_season_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team_id": [ - 5170 + 5458 ], "league_team_season_id": [ - 5170 + 5458 ], "losses": [ 40 @@ -118567,72 +124040,72 @@ export default { 40 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "league_division_id": [ - 3094 + 3377 ], "league_season_division_id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "league_team_id": [ - 3094 + 3377 ], "league_team_season_id": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "round_diff": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_min_fields": { @@ -118643,19 +124116,19 @@ export default { 40 ], "league_division_id": [ - 5170 + 5458 ], "league_season_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team_id": [ - 5170 + 5458 ], "league_team_season_id": [ - 5170 + 5458 ], "losses": [ 40 @@ -118685,140 +124158,140 @@ export default { 40 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "league_division_id": [ - 3094 + 3377 ], "league_season_division_id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "league_team_id": [ - 3094 + 3377 ], "league_team_season_id": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "round_diff": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "league_division_id": [ - 3094 + 3377 ], "league_season_division_id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "league_team": [ - 2301 + 2562 ], "league_team_id": [ - 3094 + 3377 ], "league_team_season_id": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "round_diff": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "season_division": [ - 2125 + 2386 ], "team_season": [ - 2268 + 2529 ], "tournament_team_id": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_select_column": {}, @@ -118860,48 +124333,48 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "round_diff": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_stddev_pop_fields": { @@ -118942,48 +124415,48 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "round_diff": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_stddev_samp_fields": { @@ -119024,59 +124497,59 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "round_diff": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 5266 + 5554 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_stream_cursor_value_input": { @@ -119087,19 +124560,19 @@ export default { 40 ], "league_division_id": [ - 5170 + 5458 ], "league_season_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team_id": [ - 5170 + 5458 ], "league_team_season_id": [ - 5170 + 5458 ], "losses": [ 40 @@ -119129,13 +124602,13 @@ export default { 40 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_sum_fields": { @@ -119176,48 +124649,48 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "round_diff": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_var_pop_fields": { @@ -119258,48 +124731,48 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "round_diff": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_var_samp_fields": { @@ -119340,48 +124813,48 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "round_diff": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_variance_fields": { @@ -119422,48 +124895,48 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "round_diff": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats": { @@ -119474,275 +124947,275 @@ export default { 40 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 ], "league_division_id": [ - 5170 + 5458 ], "league_season_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team": [ - 2290 + 2551 ], "league_team_id": [ - 5170 + 5458 ], "league_team_season_id": [ - 5170 + 5458 ], "matches_played": [ 40 ], "player": [ - 4052 + 4335 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 5289 + 5577 ], "nodes": [ - 5275 + 5563 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 5278 + 5566 ], "corr": [ - 5279 + 5567 ], "count": [ - 5281 + 5569 ], "covar_samp": [ - 5282 + 5570 ], "max": [ - 5284 + 5572 ], "min": [ - 5285 + 5573 ], "stddev_samp": [ - 5286 + 5574 ], "sum": [ - 5287 + 5575 ], "var_samp": [ - 5288 + 5576 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5302 + 5590 ], "distinct": [ 5 ], "filter": [ - 5294 + 5582 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5280 + 5568 ], "distinct": [ 5 ], "filter": [ - 5294 + 5582 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5303 + 5591 ], "Y": [ - 5303 + 5591 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5301 + 5589 ], "distinct": [ 5 ], "filter": [ - 5294 + 5582 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5283 + 5571 ], "distinct": [ 5 ], "filter": [ - 5294 + 5582 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5304 + 5592 ], "Y": [ - 5304 + 5592 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5305 + 5593 ], "distinct": [ 5 ], "filter": [ - 5294 + 5582 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5306 + 5594 ], "distinct": [ 5 ], "filter": [ - 5294 + 5582 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5307 + 5595 ], "distinct": [ 5 ], "filter": [ - 5294 + 5582 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5308 + 5596 ], "distinct": [ 5 ], "filter": [ - 5294 + 5582 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5309 + 5597 ], "distinct": [ 5 ], "filter": [ - 5294 + 5582 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 5292 + 5580 ], "count": [ 40, { "columns": [ - 5301, + 5589, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -119751,80 +125224,80 @@ export default { } ], "max": [ - 5296 + 5584 ], "min": [ - 5298 + 5586 ], "stddev": [ - 5310 + 5598 ], "stddev_pop": [ - 5312 + 5600 ], "stddev_samp": [ - 5314 + 5602 ], "sum": [ - 5318 + 5606 ], "var_pop": [ - 5320 + 5608 ], "var_samp": [ - 5322 + 5610 ], "variance": [ - 5324 + 5612 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 5293 + 5581 ], "count": [ - 3094 + 3377 ], "max": [ - 5297 + 5585 ], "min": [ - 5299 + 5587 ], "stddev": [ - 5311 + 5599 ], "stddev_pop": [ - 5313 + 5601 ], "stddev_samp": [ - 5315 + 5603 ], "sum": [ - 5319 + 5607 ], "var_pop": [ - 5321 + 5609 ], "var_samp": [ - 5323 + 5611 ], "variance": [ - 5325 + 5613 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 5295 + 5583 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_avg_fields": { @@ -119853,47 +125326,47 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_bool_exp": { "_and": [ - 5294 + 5582 ], "_not": [ - 5294 + 5582 ], "_or": [ - 5294 + 5582 ], "assists": [ 41 @@ -119902,46 +125375,46 @@ export default { 41 ], "headshot_percentage": [ - 1778 + 1842 ], "headshots": [ 41 ], "kdr": [ - 1778 + 1842 ], "kills": [ 41 ], "league_division_id": [ - 5172 + 5460 ], "league_season_division_id": [ - 5172 + 5460 ], "league_season_id": [ - 5172 + 5460 ], "league_team": [ - 2293 + 2554 ], "league_team_id": [ - 5172 + 5460 ], "league_team_season_id": [ - 5172 + 5460 ], "matches_played": [ 41 ], "player": [ - 4056 + 4339 ], "player_steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_insert_input": { @@ -119952,46 +125425,46 @@ export default { 40 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 ], "league_division_id": [ - 5170 + 5458 ], "league_season_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team": [ - 2299 + 2560 ], "league_team_id": [ - 5170 + 5458 ], "league_team_season_id": [ - 5170 + 5458 ], "matches_played": [ 40 ], "player": [ - 4063 + 4346 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_max_fields": { @@ -120002,84 +125475,84 @@ export default { 40 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 ], "league_division_id": [ - 5170 + 5458 ], "league_season_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team_id": [ - 5170 + 5458 ], "league_team_season_id": [ - 5170 + 5458 ], "matches_played": [ 40 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_max_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "league_division_id": [ - 3094 + 3377 ], "league_season_division_id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "league_team_id": [ - 3094 + 3377 ], "league_team_season_id": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_min_fields": { @@ -120090,134 +125563,134 @@ export default { 40 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 ], "league_division_id": [ - 5170 + 5458 ], "league_season_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team_id": [ - 5170 + 5458 ], "league_team_season_id": [ - 5170 + 5458 ], "matches_played": [ 40 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_min_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "league_division_id": [ - 3094 + 3377 ], "league_season_division_id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "league_team_id": [ - 3094 + 3377 ], "league_team_season_id": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "league_division_id": [ - 3094 + 3377 ], "league_season_division_id": [ - 3094 + 3377 ], "league_season_id": [ - 3094 + 3377 ], "league_team": [ - 2301 + 2562 ], "league_team_id": [ - 3094 + 3377 ], "league_team_season_id": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_select_column": {}, @@ -120255,36 +125728,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_stddev_pop_fields": { @@ -120313,36 +125786,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_stddev_samp_fields": { @@ -120371,47 +125844,47 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 5317 + 5605 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_stream_cursor_value_input": { @@ -120422,40 +125895,40 @@ export default { 40 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 ], "league_division_id": [ - 5170 + 5458 ], "league_season_division_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "league_team_id": [ - 5170 + 5458 ], "league_team_season_id": [ - 5170 + 5458 ], "matches_played": [ 40 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_sum_fields": { @@ -120466,13 +125939,13 @@ export default { 40 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 @@ -120481,39 +125954,39 @@ export default { 40 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_var_pop_fields": { @@ -120542,36 +126015,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_var_samp_fields": { @@ -120600,36 +126073,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_variance_fields": { @@ -120658,36 +126131,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_captains": { @@ -120695,50 +126168,50 @@ export default { 5 ], "discord_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "lineup": [ - 2554 + 2815 ], "match_lineup_id": [ - 5170 + 5458 ], "placeholder_name": [ - 80 + 83 ], "player": [ - 4052 + 4335 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_aggregate": { "aggregate": [ - 5328 + 5616 ], "nodes": [ - 5326 + 5614 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_aggregate_fields": { "avg": [ - 5329 + 5617 ], "count": [ 40, { "columns": [ - 5338, + 5626, "[v_match_captains_select_column!]" ], "distinct": [ @@ -120747,34 +126220,34 @@ export default { } ], "max": [ - 5333 + 5621 ], "min": [ - 5334 + 5622 ], "stddev": [ - 5340 + 5628 ], "stddev_pop": [ - 5341 + 5629 ], "stddev_samp": [ - 5342 + 5630 ], "sum": [ - 5345 + 5633 ], "var_pop": [ - 5347 + 5635 ], "var_samp": [ - 5348 + 5636 ], "variance": [ - 5349 + 5637 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_avg_fields": { @@ -120782,53 +126255,53 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_bool_exp": { "_and": [ - 5330 + 5618 ], "_not": [ - 5330 + 5618 ], "_or": [ - 5330 + 5618 ], "captain": [ 6 ], "discord_id": [ - 82 + 85 ], "id": [ - 5172 + 5460 ], "lineup": [ - 2563 + 2824 ], "match_lineup_id": [ - 5172 + 5460 ], "placeholder_name": [ - 82 + 85 ], "player": [ - 4056 + 4339 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_inc_input": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_insert_input": { @@ -120836,68 +126309,68 @@ export default { 5 ], "discord_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "lineup": [ - 2572 + 2833 ], "match_lineup_id": [ - 5170 + 5458 ], "placeholder_name": [ - 80 + 83 ], "player": [ - 4063 + 4346 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_max_fields": { "discord_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "placeholder_name": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_min_fields": { "discord_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "placeholder_name": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_mutation_response": { @@ -120905,47 +126378,47 @@ export default { 40 ], "returning": [ - 5326 + 5614 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_obj_rel_insert_input": { "data": [ - 5332 + 5620 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_order_by": { "captain": [ - 3094 + 3377 ], "discord_id": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "lineup": [ - 2574 + 2835 ], "match_lineup_id": [ - 3094 + 3377 ], "placeholder_name": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_select_column": {}, @@ -120954,22 +126427,22 @@ export default { 5 ], "discord_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "placeholder_name": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_stddev_fields": { @@ -120977,7 +126450,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_stddev_pop_fields": { @@ -120985,7 +126458,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_stddev_samp_fields": { @@ -120993,18 +126466,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 5344 + 5632 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_stream_cursor_value_input": { @@ -121012,44 +126485,44 @@ export default { 5 ], "discord_id": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "placeholder_name": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_updates": { "_inc": [ - 5331 + 5619 ], "_set": [ - 5339 + 5627 ], "where": [ - 5330 + 5618 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_var_pop_fields": { @@ -121057,7 +126530,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_var_samp_fields": { @@ -121065,7 +126538,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_captains_variance_fields": { @@ -121073,7 +126546,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches": { @@ -121081,90 +126554,90 @@ export default { 40 ], "clutcher": [ - 4052 + 4335 ], "clutcher_steam_id": [ - 264 + 268 ], "kills_in_clutch": [ 40 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_lineup": [ - 2554 + 2815 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "outcome": [ - 80 + 83 ], "round": [ 40 ], "side": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_aggregate": { "aggregate": [ - 5354 + 5642 ], "nodes": [ - 5350 + 5638 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 5353 + 5641 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 5366 + 5654 ], "distinct": [ 5 ], "filter": [ - 5359 + 5647 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_aggregate_fields": { "avg": [ - 5357 + 5645 ], "count": [ 40, { "columns": [ - 5366, + 5654, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -121173,80 +126646,80 @@ export default { } ], "max": [ - 5361 + 5649 ], "min": [ - 5363 + 5651 ], "stddev": [ - 5367 + 5655 ], "stddev_pop": [ - 5369 + 5657 ], "stddev_samp": [ - 5371 + 5659 ], "sum": [ - 5375 + 5663 ], "var_pop": [ - 5377 + 5665 ], "var_samp": [ - 5379 + 5667 ], "variance": [ - 5381 + 5669 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_aggregate_order_by": { "avg": [ - 5358 + 5646 ], "count": [ - 3094 + 3377 ], "max": [ - 5362 + 5650 ], "min": [ - 5364 + 5652 ], "stddev": [ - 5368 + 5656 ], "stddev_pop": [ - 5370 + 5658 ], "stddev_samp": [ - 5372 + 5660 ], "sum": [ - 5376 + 5664 ], "var_pop": [ - 5378 + 5666 ], "var_samp": [ - 5380 + 5668 ], "variance": [ - 5382 + 5670 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 5360 + 5648 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_avg_fields": { @@ -121263,77 +126736,77 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_avg_order_by": { "against_count": [ - 3094 + 3377 ], "clutcher_steam_id": [ - 3094 + 3377 ], "kills_in_clutch": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_bool_exp": { "_and": [ - 5359 + 5647 ], "_not": [ - 5359 + 5647 ], "_or": [ - 5359 + 5647 ], "against_count": [ 41 ], "clutcher": [ - 4056 + 4339 ], "clutcher_steam_id": [ - 266 + 270 ], "kills_in_clutch": [ 41 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_lineup": [ - 2563 + 2824 ], "match_lineup_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "outcome": [ - 82 + 85 ], "round": [ 41 ], "side": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_insert_input": { @@ -121341,43 +126814,43 @@ export default { 40 ], "clutcher": [ - 4063 + 4346 ], "clutcher_steam_id": [ - 264 + 268 ], "kills_in_clutch": [ 40 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_lineup": [ - 2572 + 2833 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "outcome": [ - 80 + 83 ], "round": [ 40 ], "side": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_max_fields": { @@ -121385,63 +126858,63 @@ export default { 40 ], "clutcher_steam_id": [ - 264 + 268 ], "kills_in_clutch": [ 40 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "outcome": [ - 80 + 83 ], "round": [ 40 ], "side": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_max_order_by": { "against_count": [ - 3094 + 3377 ], "clutcher_steam_id": [ - 3094 + 3377 ], "kills_in_clutch": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_lineup_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "outcome": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "side": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_min_fields": { @@ -121449,107 +126922,107 @@ export default { 40 ], "clutcher_steam_id": [ - 264 + 268 ], "kills_in_clutch": [ 40 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "outcome": [ - 80 + 83 ], "round": [ 40 ], "side": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_min_order_by": { "against_count": [ - 3094 + 3377 ], "clutcher_steam_id": [ - 3094 + 3377 ], "kills_in_clutch": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_lineup_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "outcome": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "side": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_order_by": { "against_count": [ - 3094 + 3377 ], "clutcher": [ - 4065 + 4348 ], "clutcher_steam_id": [ - 3094 + 3377 ], "kills_in_clutch": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_lineup": [ - 2574 + 2835 ], "match_lineup_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "outcome": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "side": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_select_column": {}, @@ -121567,24 +127040,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_stddev_order_by": { "against_count": [ - 3094 + 3377 ], "clutcher_steam_id": [ - 3094 + 3377 ], "kills_in_clutch": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_stddev_pop_fields": { @@ -121601,24 +127074,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 3094 + 3377 ], "clutcher_steam_id": [ - 3094 + 3377 ], "kills_in_clutch": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_stddev_samp_fields": { @@ -121635,35 +127108,35 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 3094 + 3377 ], "clutcher_steam_id": [ - 3094 + 3377 ], "kills_in_clutch": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 5374 + 5662 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_stream_cursor_value_input": { @@ -121671,31 +127144,31 @@ export default { 40 ], "clutcher_steam_id": [ - 264 + 268 ], "kills_in_clutch": [ 40 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "outcome": [ - 80 + 83 ], "round": [ 40 ], "side": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_sum_fields": { @@ -121703,7 +127176,7 @@ export default { 40 ], "clutcher_steam_id": [ - 264 + 268 ], "kills_in_clutch": [ 40 @@ -121712,24 +127185,24 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_sum_order_by": { "against_count": [ - 3094 + 3377 ], "clutcher_steam_id": [ - 3094 + 3377 ], "kills_in_clutch": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_var_pop_fields": { @@ -121746,24 +127219,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 3094 + 3377 ], "clutcher_steam_id": [ - 3094 + 3377 ], "kills_in_clutch": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_var_samp_fields": { @@ -121780,24 +127253,24 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 3094 + 3377 ], "clutcher_steam_id": [ - 3094 + 3377 ], "kills_in_clutch": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_variance_fields": { @@ -121814,81 +127287,81 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_clutches_variance_order_by": { "against_count": [ - 3094 + 3377 ], "clutcher_steam_id": [ - 3094 + 3377 ], "kills_in_clutch": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs": { "killer_side": [ - 80 + 83 ], "killer_steam_id": [ - 264 + 268 ], "kills": [ 40 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "victim_side": [ - 80 + 83 ], "victim_steam_id": [ - 264 + 268 ], "weapon": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 5385 + 5673 ], "nodes": [ - 5383 + 5671 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 5386 + 5674 ], "count": [ 40, { "columns": [ - 5391, + 5679, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -121897,34 +127370,34 @@ export default { } ], "max": [ - 5388 + 5676 ], "min": [ - 5389 + 5677 ], "stddev": [ - 5392 + 5680 ], "stddev_pop": [ - 5393 + 5681 ], "stddev_samp": [ - 5394 + 5682 ], "sum": [ - 5397 + 5685 ], "var_pop": [ - 5398 + 5686 ], "var_samp": [ - 5399 + 5687 ], "variance": [ - 5400 + 5688 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_avg_fields": { @@ -121938,144 +127411,144 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_bool_exp": { "_and": [ - 5387 + 5675 ], "_not": [ - 5387 + 5675 ], "_or": [ - 5387 + 5675 ], "killer_side": [ - 82 + 85 ], "killer_steam_id": [ - 266 + 270 ], "kills": [ 41 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "victim_side": [ - 82 + 85 ], "victim_steam_id": [ - 266 + 270 ], "weapon": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_max_fields": { "killer_side": [ - 80 + 83 ], "killer_steam_id": [ - 264 + 268 ], "kills": [ 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "victim_side": [ - 80 + 83 ], "victim_steam_id": [ - 264 + 268 ], "weapon": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_min_fields": { "killer_side": [ - 80 + 83 ], "killer_steam_id": [ - 264 + 268 ], "kills": [ 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "victim_side": [ - 80 + 83 ], "victim_steam_id": [ - 264 + 268 ], "weapon": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_order_by": { "killer_side": [ - 3094 + 3377 ], "killer_steam_id": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "victim_side": [ - 3094 + 3377 ], "victim_steam_id": [ - 3094 + 3377 ], "weapon": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_select_column": {}, @@ -122090,7 +127563,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_stddev_pop_fields": { @@ -122104,7 +127577,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_stddev_samp_fields": { @@ -122118,61 +127591,61 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 5396 + 5684 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_stream_cursor_value_input": { "killer_side": [ - 80 + 83 ], "killer_steam_id": [ - 264 + 268 ], "kills": [ 40 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "victim_side": [ - 80 + 83 ], "victim_steam_id": [ - 264 + 268 ], "weapon": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_sum_fields": { "killer_steam_id": [ - 264 + 268 ], "kills": [ 40 ], "victim_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_var_pop_fields": { @@ -122186,7 +127659,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_var_samp_fields": { @@ -122200,7 +127673,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_kill_pairs_variance_fields": { @@ -122214,64 +127687,64 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types": { "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_lineup": [ - 2554 + 2815 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "matchup": [ - 80 + 83 ], "rounds": [ 40 ], "side": [ - 80 + 83 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 5403 + 5691 ], "nodes": [ - 5401 + 5689 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 5404 + 5692 ], "count": [ 40, { "columns": [ - 5409, + 5697, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -122280,34 +127753,34 @@ export default { } ], "max": [ - 5406 + 5694 ], "min": [ - 5407 + 5695 ], "stddev": [ - 5410 + 5698 ], "stddev_pop": [ - 5411 + 5699 ], "stddev_samp": [ - 5412 + 5700 ], "sum": [ - 5415 + 5703 ], "var_pop": [ - 5416 + 5704 ], "var_samp": [ - 5417 + 5705 ], "variance": [ - 5418 + 5706 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_avg_fields": { @@ -122318,138 +127791,138 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 5405 + 5693 ], "_not": [ - 5405 + 5693 ], "_or": [ - 5405 + 5693 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_lineup": [ - 2563 + 2824 ], "match_lineup_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "matchup": [ - 82 + 85 ], "rounds": [ 41 ], "side": [ - 82 + 85 ], "wins": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "matchup": [ - 80 + 83 ], "rounds": [ 40 ], "side": [ - 80 + 83 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "matchup": [ - 80 + 83 ], "rounds": [ 40 ], "side": [ - 80 + 83 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_order_by": { "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_lineup": [ - 2574 + 2835 ], "match_lineup_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "matchup": [ - 3094 + 3377 ], "rounds": [ - 3094 + 3377 ], "side": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_select_column": {}, @@ -122461,7 +127934,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_stddev_pop_fields": { @@ -122472,7 +127945,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_stddev_samp_fields": { @@ -122483,44 +127956,44 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 5414 + 5702 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "matchup": [ - 80 + 83 ], "rounds": [ 40 ], "side": [ - 80 + 83 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_sum_fields": { @@ -122531,7 +128004,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_var_pop_fields": { @@ -122542,7 +128015,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_var_samp_fields": { @@ -122553,7 +128026,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_buy_types_variance_fields": { @@ -122564,7 +128037,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats": { @@ -122581,22 +128054,22 @@ export default { 40 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_lineup": [ - 2554 + 2815 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "opening_attempts": [ 40 @@ -122617,7 +128090,7 @@ export default { 40 ], "side": [ - 80 + 83 ], "won_buy_eco": [ 40 @@ -122632,29 +128105,29 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 5421 + 5709 ], "nodes": [ - 5419 + 5707 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 5422 + 5710 ], "count": [ 40, { "columns": [ - 5427, + 5715, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -122663,34 +128136,34 @@ export default { } ], "max": [ - 5424 + 5712 ], "min": [ - 5425 + 5713 ], "stddev": [ - 5428 + 5716 ], "stddev_pop": [ - 5429 + 5717 ], "stddev_samp": [ - 5430 + 5718 ], "sum": [ - 5433 + 5721 ], "var_pop": [ - 5434 + 5722 ], "var_samp": [ - 5435 + 5723 ], "variance": [ - 5436 + 5724 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_avg_fields": { @@ -122737,18 +128210,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 5423 + 5711 ], "_not": [ - 5423 + 5711 ], "_or": [ - 5423 + 5711 ], "man_adv_rounds": [ 41 @@ -122763,22 +128236,22 @@ export default { 41 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_lineup": [ - 2563 + 2824 ], "match_lineup_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "opening_attempts": [ 41 @@ -122799,7 +128272,7 @@ export default { 41 ], "side": [ - 82 + 85 ], "won_buy_eco": [ 41 @@ -122814,7 +128287,7 @@ export default { 41 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_max_fields": { @@ -122831,13 +128304,13 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "opening_attempts": [ 40 @@ -122858,7 +128331,7 @@ export default { 40 ], "side": [ - 80 + 83 ], "won_buy_eco": [ 40 @@ -122873,7 +128346,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_min_fields": { @@ -122890,13 +128363,13 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "opening_attempts": [ 40 @@ -122917,7 +128390,7 @@ export default { 40 ], "side": [ - 80 + 83 ], "won_buy_eco": [ 40 @@ -122932,75 +128405,75 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 3094 + 3377 ], "man_adv_wins": [ - 3094 + 3377 ], "man_dis_rounds": [ - 3094 + 3377 ], "man_dis_wins": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_lineup": [ - 2574 + 2835 ], "match_lineup_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "opening_attempts": [ - 3094 + 3377 ], "opening_wins": [ - 3094 + 3377 ], "pistol_rounds": [ - 3094 + 3377 ], "pistol_wins": [ - 3094 + 3377 ], "round_wins": [ - 3094 + 3377 ], "rounds": [ - 3094 + 3377 ], "side": [ - 3094 + 3377 ], "won_buy_eco": [ - 3094 + 3377 ], "won_buy_force": [ - 3094 + 3377 ], "won_buy_full": [ - 3094 + 3377 ], "won_buy_pistol": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_select_column": {}, @@ -123048,7 +128521,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_stddev_pop_fields": { @@ -123095,7 +128568,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_stddev_samp_fields": { @@ -123142,18 +128615,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 5432 + 5720 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_stream_cursor_value_input": { @@ -123170,13 +128643,13 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "opening_attempts": [ 40 @@ -123197,7 +128670,7 @@ export default { 40 ], "side": [ - 80 + 83 ], "won_buy_eco": [ 40 @@ -123212,7 +128685,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_sum_fields": { @@ -123259,7 +128732,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_var_pop_fields": { @@ -123306,7 +128779,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_var_samp_fields": { @@ -123353,7 +128826,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_lineup_map_stats_variance_fields": { @@ -123400,7 +128873,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds": { @@ -123408,35 +128881,35 @@ export default { 5 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 5439 + 5727 ], "nodes": [ - 5437 + 5725 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 5440 + 5728 ], "count": [ 40, { "columns": [ - 5448, + 5736, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -123445,34 +128918,34 @@ export default { } ], "max": [ - 5444 + 5732 ], "min": [ - 5445 + 5733 ], "stddev": [ - 5450 + 5738 ], "stddev_pop": [ - 5451 + 5739 ], "stddev_samp": [ - 5452 + 5740 ], "sum": [ - 5455 + 5743 ], "var_pop": [ - 5457 + 5745 ], "var_samp": [ - 5458 + 5746 ], "variance": [ - 5459 + 5747 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_avg_fields": { @@ -123480,30 +128953,30 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 5441 + 5729 ], "_not": [ - 5441 + 5729 ], "_or": [ - 5441 + 5729 ], "has_backup_file": [ 6 ], "match_map_id": [ - 5172 + 5460 ], "round": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_inc_input": { @@ -123511,7 +128984,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_insert_input": { @@ -123519,35 +128992,35 @@ export default { 5 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_mutation_response": { @@ -123555,24 +129028,24 @@ export default { 40 ], "returning": [ - 5437 + 5725 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_select_column": {}, @@ -123581,13 +129054,13 @@ export default { 5 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_stddev_fields": { @@ -123595,7 +129068,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_stddev_pop_fields": { @@ -123603,7 +129076,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_stddev_samp_fields": { @@ -123611,18 +129084,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 5454 + 5742 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_stream_cursor_value_input": { @@ -123630,13 +129103,13 @@ export default { 5 ], "match_map_id": [ - 5170 + 5458 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_sum_fields": { @@ -123644,21 +129117,21 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_updates": { "_inc": [ - 5442 + 5730 ], "_set": [ - 5449 + 5737 ], "where": [ - 5441 + 5729 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_var_pop_fields": { @@ -123666,7 +129139,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_var_samp_fields": { @@ -123674,7 +129147,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_map_backup_rounds_variance_fields": { @@ -123682,7 +129155,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types": { @@ -123693,62 +129166,62 @@ export default { 40 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_lineup": [ - 2554 + 2815 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "matchup": [ - 80 + 83 ], "player": [ - 4052 + 4335 ], "rounds": [ 40 ], "side": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 5462 + 5750 ], "nodes": [ - 5460 + 5748 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 5463 + 5751 ], "count": [ 40, { "columns": [ - 5468, + 5756, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -123757,34 +129230,34 @@ export default { } ], "max": [ - 5465 + 5753 ], "min": [ - 5466 + 5754 ], "stddev": [ - 5469 + 5757 ], "stddev_pop": [ - 5470 + 5758 ], "stddev_samp": [ - 5471 + 5759 ], "sum": [ - 5474 + 5762 ], "var_pop": [ - 5475 + 5763 ], "var_samp": [ - 5476 + 5764 ], "variance": [ - 5477 + 5765 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_avg_fields": { @@ -123801,18 +129274,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_bool_exp": { "_and": [ - 5464 + 5752 ], "_not": [ - 5464 + 5752 ], "_or": [ - 5464 + 5752 ], "deaths": [ 41 @@ -123821,40 +129294,40 @@ export default { 41 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_lineup": [ - 2563 + 2824 ], "match_lineup_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "matchup": [ - 82 + 85 ], "player": [ - 4056 + 4339 ], "rounds": [ 41 ], "side": [ - 82 + 85 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_max_fields": { @@ -123865,28 +129338,28 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "matchup": [ - 80 + 83 ], "rounds": [ 40 ], "side": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_min_fields": { @@ -123897,72 +129370,72 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "matchup": [ - 80 + 83 ], "rounds": [ 40 ], "side": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_order_by": { "deaths": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_lineup": [ - 2574 + 2835 ], "match_lineup_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "matchup": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "rounds": [ - 3094 + 3377 ], "side": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_select_column": {}, @@ -123980,7 +129453,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_stddev_pop_fields": { @@ -123997,7 +129470,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_stddev_samp_fields": { @@ -124014,18 +129487,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 5473 + 5761 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_stream_cursor_value_input": { @@ -124036,28 +129509,28 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "matchup": [ - 80 + 83 ], "rounds": [ 40 ], "side": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_sum_fields": { @@ -124071,10 +129544,10 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_var_pop_fields": { @@ -124091,7 +129564,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_var_samp_fields": { @@ -124108,7 +129581,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_buy_types_variance_fields": { @@ -124125,7 +129598,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels": { @@ -124136,31 +129609,31 @@ export default { 40 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_lineup": [ - 2554 + 2815 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4052 + 4335 ], "side": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "traded_deaths": [ 40 @@ -124169,54 +129642,54 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 5482 + 5770 ], "nodes": [ - 5478 + 5766 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 5481 + 5769 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 5494 + 5782 ], "distinct": [ 5 ], "filter": [ - 5487 + 5775 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 5485 + 5773 ], "count": [ 40, { "columns": [ - 5494, + 5782, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -124225,80 +129698,80 @@ export default { } ], "max": [ - 5489 + 5777 ], "min": [ - 5491 + 5779 ], "stddev": [ - 5495 + 5783 ], "stddev_pop": [ - 5497 + 5785 ], "stddev_samp": [ - 5499 + 5787 ], "sum": [ - 5503 + 5791 ], "var_pop": [ - 5505 + 5793 ], "var_samp": [ - 5507 + 5795 ], "variance": [ - 5509 + 5797 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 5486 + 5774 ], "count": [ - 3094 + 3377 ], "max": [ - 5490 + 5778 ], "min": [ - 5492 + 5780 ], "stddev": [ - 5496 + 5784 ], "stddev_pop": [ - 5498 + 5786 ], "stddev_samp": [ - 5500 + 5788 ], "sum": [ - 5504 + 5792 ], "var_pop": [ - 5506 + 5794 ], "var_samp": [ - 5508 + 5796 ], "variance": [ - 5510 + 5798 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 5488 + 5776 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_avg_fields": { @@ -124318,38 +129791,38 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "traded_deaths": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 5487 + 5775 ], "_not": [ - 5487 + 5775 ], "_or": [ - 5487 + 5775 ], "attempts": [ 41 @@ -124358,31 +129831,31 @@ export default { 41 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_lineup": [ - 2563 + 2824 ], "match_lineup_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "player": [ - 4056 + 4339 ], "side": [ - 82 + 85 ], "steam_id": [ - 266 + 270 ], "traded_deaths": [ 41 @@ -124391,7 +129864,7 @@ export default { 41 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_insert_input": { @@ -124402,31 +129875,31 @@ export default { 40 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_lineup": [ - 2572 + 2833 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4063 + 4346 ], "side": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "traded_deaths": [ 40 @@ -124435,7 +129908,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_max_fields": { @@ -124446,19 +129919,19 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "side": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "traded_deaths": [ 40 @@ -124467,39 +129940,39 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_lineup_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "side": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "traded_deaths": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_min_fields": { @@ -124510,19 +129983,19 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "side": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "traded_deaths": [ 40 @@ -124531,83 +130004,83 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_lineup_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "side": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "traded_deaths": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_order_by": { "attempts": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_lineup": [ - 2574 + 2835 ], "match_lineup_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "side": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "traded_deaths": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_select_column": {}, @@ -124628,27 +130101,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "traded_deaths": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_stddev_pop_fields": { @@ -124668,27 +130141,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "traded_deaths": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_stddev_samp_fields": { @@ -124708,38 +130181,38 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "traded_deaths": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 5502 + 5790 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_stream_cursor_value_input": { @@ -124750,19 +130223,19 @@ export default { 40 ], "match_id": [ - 5170 + 5458 ], "match_lineup_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "side": [ - 80 + 83 ], "steam_id": [ - 264 + 268 ], "traded_deaths": [ 40 @@ -124771,7 +130244,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_sum_fields": { @@ -124782,7 +130255,7 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "traded_deaths": [ 40 @@ -124791,27 +130264,27 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "traded_deaths": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_var_pop_fields": { @@ -124831,27 +130304,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "traded_deaths": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_var_samp_fields": { @@ -124871,27 +130344,27 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "traded_deaths": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_variance_fields": { @@ -124911,69 +130384,69 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "traded_deaths": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis": { "attacker_id": [ - 264 + 268 ], "kill_count": [ - 264 + 268 ], "nemsis": [ - 4052 + 4335 ], "player": [ - 4052 + 4335 ], "victim_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 5513 + 5801 ], "nodes": [ - 5511 + 5799 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 5514 + 5802 ], "count": [ 40, { "columns": [ - 5519, + 5807, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -124982,34 +130455,34 @@ export default { } ], "max": [ - 5516 + 5804 ], "min": [ - 5517 + 5805 ], "stddev": [ - 5520 + 5808 ], "stddev_pop": [ - 5521 + 5809 ], "stddev_samp": [ - 5522 + 5810 ], "sum": [ - 5525 + 5813 ], "var_pop": [ - 5526 + 5814 ], "var_samp": [ - 5527 + 5815 ], "variance": [ - 5528 + 5816 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_avg_fields": { @@ -125023,84 +130496,84 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 5515 + 5803 ], "_not": [ - 5515 + 5803 ], "_or": [ - 5515 + 5803 ], "attacker_id": [ - 266 + 270 ], "kill_count": [ - 266 + 270 ], "nemsis": [ - 4056 + 4339 ], "player": [ - 4056 + 4339 ], "victim_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_max_fields": { "attacker_id": [ - 264 + 268 ], "kill_count": [ - 264 + 268 ], "victim_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_min_fields": { "attacker_id": [ - 264 + 268 ], "kill_count": [ - 264 + 268 ], "victim_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 3094 + 3377 ], "kill_count": [ - 3094 + 3377 ], "nemsis": [ - 4065 + 4348 ], "player": [ - 4065 + 4348 ], "victim_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_select_column": {}, @@ -125115,7 +130588,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_stddev_pop_fields": { @@ -125129,7 +130602,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_stddev_samp_fields": { @@ -125143,46 +130616,46 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 5524 + 5812 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_stream_cursor_value_input": { "attacker_id": [ - 264 + 268 ], "kill_count": [ - 264 + 268 ], "victim_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_sum_fields": { "attacker_id": [ - 264 + 268 ], "kill_count": [ - 264 + 268 ], "victim_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_var_pop_fields": { @@ -125196,7 +130669,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_var_samp_fields": { @@ -125210,7 +130683,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_arch_nemesis_variance_fields": { @@ -125224,49 +130697,49 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_damage": { "avg_damage_per_round": [ - 264 + 268 ], "player": [ - 4052 + 4335 ], "player_steam_id": [ - 264 + 268 ], "total_damage": [ - 264 + 268 ], "total_rounds": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_aggregate": { "aggregate": [ - 5531 + 5819 ], "nodes": [ - 5529 + 5817 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_aggregate_fields": { "avg": [ - 5532 + 5820 ], "count": [ 40, { "columns": [ - 5537, + 5825, "[v_player_damage_select_column!]" ], "distinct": [ @@ -125275,34 +130748,34 @@ export default { } ], "max": [ - 5534 + 5822 ], "min": [ - 5535 + 5823 ], "stddev": [ - 5538 + 5826 ], "stddev_pop": [ - 5539 + 5827 ], "stddev_samp": [ - 5540 + 5828 ], "sum": [ - 5543 + 5831 ], "var_pop": [ - 5544 + 5832 ], "var_samp": [ - 5545 + 5833 ], "variance": [ - 5546 + 5834 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_avg_fields": { @@ -125319,90 +130792,90 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_bool_exp": { "_and": [ - 5533 + 5821 ], "_not": [ - 5533 + 5821 ], "_or": [ - 5533 + 5821 ], "avg_damage_per_round": [ - 266 + 270 ], "player": [ - 4056 + 4339 ], "player_steam_id": [ - 266 + 270 ], "total_damage": [ - 266 + 270 ], "total_rounds": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_max_fields": { "avg_damage_per_round": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "total_damage": [ - 264 + 268 ], "total_rounds": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_min_fields": { "avg_damage_per_round": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "total_damage": [ - 264 + 268 ], "total_rounds": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "player_steam_id": [ - 3094 + 3377 ], "total_damage": [ - 3094 + 3377 ], "total_rounds": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_select_column": {}, @@ -125420,7 +130893,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_stddev_pop_fields": { @@ -125437,7 +130910,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_stddev_samp_fields": { @@ -125454,52 +130927,52 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 5542 + 5830 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_stream_cursor_value_input": { "avg_damage_per_round": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "total_damage": [ - 264 + 268 ], "total_rounds": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_sum_fields": { "avg_damage_per_round": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "total_damage": [ - 264 + 268 ], "total_rounds": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_var_pop_fields": { @@ -125516,7 +130989,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_var_samp_fields": { @@ -125533,7 +131006,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_damage_variance_fields": { @@ -125550,12 +131023,12 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_elo": { "actual_score": [ - 1777 + 1841 ], "assists": [ 40 @@ -125567,7 +131040,7 @@ export default { 40 ], "damage_percent": [ - 1777 + 1841 ], "deaths": [ 40 @@ -125576,16 +131049,16 @@ export default { 40 ], "expected_score": [ - 1777 + 1841 ], "impact": [ - 1777 + 1841 ], "k_factor": [ 40 ], "kda": [ - 1777 + 1841 ], "kills": [ 40 @@ -125597,281 +131070,281 @@ export default { 40 ], "match": [ - 2882 + 3161 ], "match_created_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_result": [ - 80 + 83 ], "opponent_team_elo_avg": [ - 1777 + 1841 ], "performance_multiplier": [ - 1777 + 1841 ], "player_name": [ - 80 + 83 ], "player_steam_id": [ - 264 + 268 ], "player_team_elo_avg": [ - 1777 + 1841 ], "rating_for_expected": [ - 1777 + 1841 ], "season_id": [ - 5170 + 5458 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1777 + 1841 ], "type": [ - 80 + 83 ], "updated_elo": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate": { "aggregate": [ - 5561 + 5849 ], "nodes": [ - 5547 + 5835 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 5550 + 5838 ], "corr": [ - 5551 + 5839 ], "count": [ - 5553 + 5841 ], "covar_samp": [ - 5554 + 5842 ], "max": [ - 5556 + 5844 ], "min": [ - 5557 + 5845 ], "stddev_samp": [ - 5558 + 5846 ], "sum": [ - 5559 + 5847 ], "var_samp": [ - 5560 + 5848 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 5574 + 5862 ], "distinct": [ 5 ], "filter": [ - 5566 + 5854 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 5552 + 5840 ], "distinct": [ 5 ], "filter": [ - 5566 + 5854 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 5575 + 5863 ], "Y": [ - 5575 + 5863 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 5573 + 5861 ], "distinct": [ 5 ], "filter": [ - 5566 + 5854 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 5555 + 5843 ], "distinct": [ 5 ], "filter": [ - 5566 + 5854 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5576 + 5864 ], "Y": [ - 5576 + 5864 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 5577 + 5865 ], "distinct": [ 5 ], "filter": [ - 5566 + 5854 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 5578 + 5866 ], "distinct": [ 5 ], "filter": [ - 5566 + 5854 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5579 + 5867 ], "distinct": [ 5 ], "filter": [ - 5566 + 5854 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 5580 + 5868 ], "distinct": [ 5 ], "filter": [ - 5566 + 5854 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 5581 + 5869 ], "distinct": [ 5 ], "filter": [ - 5566 + 5854 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate_fields": { "avg": [ - 5564 + 5852 ], "count": [ 40, { "columns": [ - 5573, + 5861, "[v_player_elo_select_column!]" ], "distinct": [ @@ -125880,80 +131353,80 @@ export default { } ], "max": [ - 5568 + 5856 ], "min": [ - 5570 + 5858 ], "stddev": [ - 5582 + 5870 ], "stddev_pop": [ - 5584 + 5872 ], "stddev_samp": [ - 5586 + 5874 ], "sum": [ - 5590 + 5878 ], "var_pop": [ - 5592 + 5880 ], "var_samp": [ - 5594 + 5882 ], "variance": [ - 5596 + 5884 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_aggregate_order_by": { "avg": [ - 5565 + 5853 ], "count": [ - 3094 + 3377 ], "max": [ - 5569 + 5857 ], "min": [ - 5571 + 5859 ], "stddev": [ - 5583 + 5871 ], "stddev_pop": [ - 5585 + 5873 ], "stddev_samp": [ - 5587 + 5875 ], "sum": [ - 5591 + 5879 ], "var_pop": [ - 5593 + 5881 ], "var_samp": [ - 5595 + 5883 ], "variance": [ - 5597 + 5885 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_arr_rel_insert_input": { "data": [ - 5567 + 5855 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_avg_fields": { @@ -126024,92 +131497,92 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_avg_order_by": { "actual_score": [ - 3094 + 3377 ], "assists": [ - 3094 + 3377 ], "current_elo": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_percent": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "elo_change": [ - 3094 + 3377 ], "expected_score": [ - 3094 + 3377 ], "impact": [ - 3094 + 3377 ], "k_factor": [ - 3094 + 3377 ], "kda": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "map_losses": [ - 3094 + 3377 ], "map_wins": [ - 3094 + 3377 ], "opponent_team_elo_avg": [ - 3094 + 3377 ], "performance_multiplier": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "player_team_elo_avg": [ - 3094 + 3377 ], "rating_for_expected": [ - 3094 + 3377 ], "series_multiplier": [ - 3094 + 3377 ], "team_avg_kda": [ - 3094 + 3377 ], "updated_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_bool_exp": { "_and": [ - 5566 + 5854 ], "_not": [ - 5566 + 5854 ], "_or": [ - 5566 + 5854 ], "actual_score": [ - 1778 + 1842 ], "assists": [ 41 @@ -126121,7 +131594,7 @@ export default { 41 ], "damage_percent": [ - 1778 + 1842 ], "deaths": [ 41 @@ -126130,16 +131603,16 @@ export default { 41 ], "expected_score": [ - 1778 + 1842 ], "impact": [ - 1778 + 1842 ], "k_factor": [ 41 ], "kda": [ - 1778 + 1842 ], "kills": [ 41 @@ -126151,57 +131624,57 @@ export default { 41 ], "match": [ - 2891 + 3172 ], "match_created_at": [ - 4671 + 4959 ], "match_id": [ - 5172 + 5460 ], "match_result": [ - 82 + 85 ], "opponent_team_elo_avg": [ - 1778 + 1842 ], "performance_multiplier": [ - 1778 + 1842 ], "player_name": [ - 82 + 85 ], "player_steam_id": [ - 266 + 270 ], "player_team_elo_avg": [ - 1778 + 1842 ], "rating_for_expected": [ - 1778 + 1842 ], "season_id": [ - 5172 + 5460 ], "series_multiplier": [ 41 ], "team_avg_kda": [ - 1778 + 1842 ], "type": [ - 82 + 85 ], "updated_elo": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_insert_input": { "actual_score": [ - 1777 + 1841 ], "assists": [ 40 @@ -126213,7 +131686,7 @@ export default { 40 ], "damage_percent": [ - 1777 + 1841 ], "deaths": [ 40 @@ -126222,16 +131695,16 @@ export default { 40 ], "expected_score": [ - 1777 + 1841 ], "impact": [ - 1777 + 1841 ], "k_factor": [ 40 ], "kda": [ - 1777 + 1841 ], "kills": [ 40 @@ -126243,57 +131716,57 @@ export default { 40 ], "match": [ - 2900 + 3181 ], "match_created_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_result": [ - 80 + 83 ], "opponent_team_elo_avg": [ - 1777 + 1841 ], "performance_multiplier": [ - 1777 + 1841 ], "player_name": [ - 80 + 83 ], "player_steam_id": [ - 264 + 268 ], "player_team_elo_avg": [ - 1777 + 1841 ], "rating_for_expected": [ - 1777 + 1841 ], "season_id": [ - 5170 + 5458 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1777 + 1841 ], "type": [ - 80 + 83 ], "updated_elo": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_max_fields": { "actual_score": [ - 1777 + 1841 ], "assists": [ 40 @@ -126305,7 +131778,7 @@ export default { 40 ], "damage_percent": [ - 1777 + 1841 ], "deaths": [ 40 @@ -126314,16 +131787,16 @@ export default { 40 ], "expected_score": [ - 1777 + 1841 ], "impact": [ - 1777 + 1841 ], "k_factor": [ 40 ], "kda": [ - 1777 + 1841 ], "kills": [ 40 @@ -126335,143 +131808,143 @@ export default { 40 ], "match_created_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_result": [ - 80 + 83 ], "opponent_team_elo_avg": [ - 1777 + 1841 ], "performance_multiplier": [ - 1777 + 1841 ], "player_name": [ - 80 + 83 ], "player_steam_id": [ - 264 + 268 ], "player_team_elo_avg": [ - 1777 + 1841 ], "rating_for_expected": [ - 1777 + 1841 ], "season_id": [ - 5170 + 5458 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1777 + 1841 ], "type": [ - 80 + 83 ], "updated_elo": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_max_order_by": { "actual_score": [ - 3094 + 3377 ], "assists": [ - 3094 + 3377 ], "current_elo": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_percent": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "elo_change": [ - 3094 + 3377 ], "expected_score": [ - 3094 + 3377 ], "impact": [ - 3094 + 3377 ], "k_factor": [ - 3094 + 3377 ], "kda": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "map_losses": [ - 3094 + 3377 ], "map_wins": [ - 3094 + 3377 ], "match_created_at": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_result": [ - 3094 + 3377 ], "opponent_team_elo_avg": [ - 3094 + 3377 ], "performance_multiplier": [ - 3094 + 3377 ], "player_name": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "player_team_elo_avg": [ - 3094 + 3377 ], "rating_for_expected": [ - 3094 + 3377 ], "season_id": [ - 3094 + 3377 ], "series_multiplier": [ - 3094 + 3377 ], "team_avg_kda": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "updated_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_min_fields": { "actual_score": [ - 1777 + 1841 ], "assists": [ 40 @@ -126483,7 +131956,7 @@ export default { 40 ], "damage_percent": [ - 1777 + 1841 ], "deaths": [ 40 @@ -126492,16 +131965,16 @@ export default { 40 ], "expected_score": [ - 1777 + 1841 ], "impact": [ - 1777 + 1841 ], "k_factor": [ 40 ], "kda": [ - 1777 + 1841 ], "kills": [ 40 @@ -126513,230 +131986,230 @@ export default { 40 ], "match_created_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_result": [ - 80 + 83 ], "opponent_team_elo_avg": [ - 1777 + 1841 ], "performance_multiplier": [ - 1777 + 1841 ], "player_name": [ - 80 + 83 ], "player_steam_id": [ - 264 + 268 ], "player_team_elo_avg": [ - 1777 + 1841 ], "rating_for_expected": [ - 1777 + 1841 ], "season_id": [ - 5170 + 5458 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1777 + 1841 ], "type": [ - 80 + 83 ], "updated_elo": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_min_order_by": { "actual_score": [ - 3094 + 3377 ], "assists": [ - 3094 + 3377 ], "current_elo": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_percent": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "elo_change": [ - 3094 + 3377 ], "expected_score": [ - 3094 + 3377 ], "impact": [ - 3094 + 3377 ], "k_factor": [ - 3094 + 3377 ], "kda": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "map_losses": [ - 3094 + 3377 ], "map_wins": [ - 3094 + 3377 ], "match_created_at": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_result": [ - 3094 + 3377 ], "opponent_team_elo_avg": [ - 3094 + 3377 ], "performance_multiplier": [ - 3094 + 3377 ], "player_name": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "player_team_elo_avg": [ - 3094 + 3377 ], "rating_for_expected": [ - 3094 + 3377 ], "season_id": [ - 3094 + 3377 ], "series_multiplier": [ - 3094 + 3377 ], "team_avg_kda": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "updated_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_order_by": { "actual_score": [ - 3094 + 3377 ], "assists": [ - 3094 + 3377 ], "current_elo": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_percent": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "elo_change": [ - 3094 + 3377 ], "expected_score": [ - 3094 + 3377 ], "impact": [ - 3094 + 3377 ], "k_factor": [ - 3094 + 3377 ], "kda": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "map_losses": [ - 3094 + 3377 ], "map_wins": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_created_at": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_result": [ - 3094 + 3377 ], "opponent_team_elo_avg": [ - 3094 + 3377 ], "performance_multiplier": [ - 3094 + 3377 ], "player_name": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "player_team_elo_avg": [ - 3094 + 3377 ], "rating_for_expected": [ - 3094 + 3377 ], "season_id": [ - 3094 + 3377 ], "series_multiplier": [ - 3094 + 3377 ], "team_avg_kda": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "updated_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_select_column": {}, @@ -126816,78 +132289,78 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_stddev_order_by": { "actual_score": [ - 3094 + 3377 ], "assists": [ - 3094 + 3377 ], "current_elo": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_percent": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "elo_change": [ - 3094 + 3377 ], "expected_score": [ - 3094 + 3377 ], "impact": [ - 3094 + 3377 ], "k_factor": [ - 3094 + 3377 ], "kda": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "map_losses": [ - 3094 + 3377 ], "map_wins": [ - 3094 + 3377 ], "opponent_team_elo_avg": [ - 3094 + 3377 ], "performance_multiplier": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "player_team_elo_avg": [ - 3094 + 3377 ], "rating_for_expected": [ - 3094 + 3377 ], "series_multiplier": [ - 3094 + 3377 ], "team_avg_kda": [ - 3094 + 3377 ], "updated_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_stddev_pop_fields": { @@ -126958,78 +132431,78 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 3094 + 3377 ], "assists": [ - 3094 + 3377 ], "current_elo": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_percent": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "elo_change": [ - 3094 + 3377 ], "expected_score": [ - 3094 + 3377 ], "impact": [ - 3094 + 3377 ], "k_factor": [ - 3094 + 3377 ], "kda": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "map_losses": [ - 3094 + 3377 ], "map_wins": [ - 3094 + 3377 ], "opponent_team_elo_avg": [ - 3094 + 3377 ], "performance_multiplier": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "player_team_elo_avg": [ - 3094 + 3377 ], "rating_for_expected": [ - 3094 + 3377 ], "series_multiplier": [ - 3094 + 3377 ], "team_avg_kda": [ - 3094 + 3377 ], "updated_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_stddev_samp_fields": { @@ -127100,94 +132573,94 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 3094 + 3377 ], "assists": [ - 3094 + 3377 ], "current_elo": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_percent": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "elo_change": [ - 3094 + 3377 ], "expected_score": [ - 3094 + 3377 ], "impact": [ - 3094 + 3377 ], "k_factor": [ - 3094 + 3377 ], "kda": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "map_losses": [ - 3094 + 3377 ], "map_wins": [ - 3094 + 3377 ], "opponent_team_elo_avg": [ - 3094 + 3377 ], "performance_multiplier": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "player_team_elo_avg": [ - 3094 + 3377 ], "rating_for_expected": [ - 3094 + 3377 ], "series_multiplier": [ - 3094 + 3377 ], "team_avg_kda": [ - 3094 + 3377 ], "updated_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 5589 + 5877 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1777 + 1841 ], "assists": [ 40 @@ -127199,7 +132672,7 @@ export default { 40 ], "damage_percent": [ - 1777 + 1841 ], "deaths": [ 40 @@ -127208,16 +132681,16 @@ export default { 40 ], "expected_score": [ - 1777 + 1841 ], "impact": [ - 1777 + 1841 ], "k_factor": [ 40 ], "kda": [ - 1777 + 1841 ], "kills": [ 40 @@ -127229,54 +132702,54 @@ export default { 40 ], "match_created_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_result": [ - 80 + 83 ], "opponent_team_elo_avg": [ - 1777 + 1841 ], "performance_multiplier": [ - 1777 + 1841 ], "player_name": [ - 80 + 83 ], "player_steam_id": [ - 264 + 268 ], "player_team_elo_avg": [ - 1777 + 1841 ], "rating_for_expected": [ - 1777 + 1841 ], "season_id": [ - 5170 + 5458 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1777 + 1841 ], "type": [ - 80 + 83 ], "updated_elo": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_sum_fields": { "actual_score": [ - 1777 + 1841 ], "assists": [ 40 @@ -127288,7 +132761,7 @@ export default { 40 ], "damage_percent": [ - 1777 + 1841 ], "deaths": [ 40 @@ -127297,16 +132770,16 @@ export default { 40 ], "expected_score": [ - 1777 + 1841 ], "impact": [ - 1777 + 1841 ], "k_factor": [ 40 ], "kda": [ - 1777 + 1841 ], "kills": [ 40 @@ -127318,102 +132791,102 @@ export default { 40 ], "opponent_team_elo_avg": [ - 1777 + 1841 ], "performance_multiplier": [ - 1777 + 1841 ], "player_steam_id": [ - 264 + 268 ], "player_team_elo_avg": [ - 1777 + 1841 ], "rating_for_expected": [ - 1777 + 1841 ], "series_multiplier": [ 40 ], "team_avg_kda": [ - 1777 + 1841 ], "updated_elo": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_sum_order_by": { "actual_score": [ - 3094 + 3377 ], "assists": [ - 3094 + 3377 ], "current_elo": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_percent": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "elo_change": [ - 3094 + 3377 ], "expected_score": [ - 3094 + 3377 ], "impact": [ - 3094 + 3377 ], "k_factor": [ - 3094 + 3377 ], "kda": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "map_losses": [ - 3094 + 3377 ], "map_wins": [ - 3094 + 3377 ], "opponent_team_elo_avg": [ - 3094 + 3377 ], "performance_multiplier": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "player_team_elo_avg": [ - 3094 + 3377 ], "rating_for_expected": [ - 3094 + 3377 ], "series_multiplier": [ - 3094 + 3377 ], "team_avg_kda": [ - 3094 + 3377 ], "updated_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_var_pop_fields": { @@ -127484,78 +132957,78 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 3094 + 3377 ], "assists": [ - 3094 + 3377 ], "current_elo": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_percent": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "elo_change": [ - 3094 + 3377 ], "expected_score": [ - 3094 + 3377 ], "impact": [ - 3094 + 3377 ], "k_factor": [ - 3094 + 3377 ], "kda": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "map_losses": [ - 3094 + 3377 ], "map_wins": [ - 3094 + 3377 ], "opponent_team_elo_avg": [ - 3094 + 3377 ], "performance_multiplier": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "player_team_elo_avg": [ - 3094 + 3377 ], "rating_for_expected": [ - 3094 + 3377 ], "series_multiplier": [ - 3094 + 3377 ], "team_avg_kda": [ - 3094 + 3377 ], "updated_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_var_samp_fields": { @@ -127626,78 +133099,78 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 3094 + 3377 ], "assists": [ - 3094 + 3377 ], "current_elo": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_percent": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "elo_change": [ - 3094 + 3377 ], "expected_score": [ - 3094 + 3377 ], "impact": [ - 3094 + 3377 ], "k_factor": [ - 3094 + 3377 ], "kda": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "map_losses": [ - 3094 + 3377 ], "map_wins": [ - 3094 + 3377 ], "opponent_team_elo_avg": [ - 3094 + 3377 ], "performance_multiplier": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "player_team_elo_avg": [ - 3094 + 3377 ], "rating_for_expected": [ - 3094 + 3377 ], "series_multiplier": [ - 3094 + 3377 ], "team_avg_kda": [ - 3094 + 3377 ], "updated_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_variance_fields": { @@ -127768,123 +133241,123 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_elo_variance_order_by": { "actual_score": [ - 3094 + 3377 ], "assists": [ - 3094 + 3377 ], "current_elo": [ - 3094 + 3377 ], "damage": [ - 3094 + 3377 ], "damage_percent": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "elo_change": [ - 3094 + 3377 ], "expected_score": [ - 3094 + 3377 ], "impact": [ - 3094 + 3377 ], "k_factor": [ - 3094 + 3377 ], "kda": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "map_losses": [ - 3094 + 3377 ], "map_wins": [ - 3094 + 3377 ], "opponent_team_elo_avg": [ - 3094 + 3377 ], "performance_multiplier": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "player_team_elo_avg": [ - 3094 + 3377 ], "rating_for_expected": [ - 3094 + 3377 ], "series_multiplier": [ - 3094 + 3377 ], "team_avg_kda": [ - 3094 + 3377 ], "updated_elo": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses": { "map": [ - 2392 + 2653 ], "map_id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "started_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_aggregate": { "aggregate": [ - 5600 + 5888 ], "nodes": [ - 5598 + 5886 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_aggregate_fields": { "avg": [ - 5601 + 5889 ], "count": [ 40, { "columns": [ - 5606, + 5894, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -127893,34 +133366,34 @@ export default { } ], "max": [ - 5603 + 5891 ], "min": [ - 5604 + 5892 ], "stddev": [ - 5607 + 5895 ], "stddev_pop": [ - 5608 + 5896 ], "stddev_samp": [ - 5609 + 5897 ], "sum": [ - 5612 + 5900 ], "var_pop": [ - 5613 + 5901 ], "var_samp": [ - 5614 + 5902 ], "variance": [ - 5615 + 5903 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_avg_fields": { @@ -127928,96 +133401,96 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_bool_exp": { "_and": [ - 5602 + 5890 ], "_not": [ - 5602 + 5890 ], "_or": [ - 5602 + 5890 ], "map": [ - 2401 + 2662 ], "map_id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "started_at": [ - 4671 + 4959 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_max_fields": { "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "started_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_min_fields": { "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "started_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_order_by": { "map": [ - 2411 + 2672 ], "map_id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "started_at": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_select_column": {}, @@ -128026,7 +133499,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_stddev_pop_fields": { @@ -128034,7 +133507,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_stddev_samp_fields": { @@ -128042,43 +133515,43 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 5611 + 5899 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "started_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_var_pop_fields": { @@ -128086,7 +133559,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_var_samp_fields": { @@ -128094,7 +133567,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_map_losses_variance_fields": { @@ -128102,52 +133575,52 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins": { "map": [ - 2392 + 2653 ], "map_id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "started_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_aggregate": { "aggregate": [ - 5618 + 5906 ], "nodes": [ - 5616 + 5904 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_aggregate_fields": { "avg": [ - 5619 + 5907 ], "count": [ 40, { "columns": [ - 5624, + 5912, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -128156,34 +133629,34 @@ export default { } ], "max": [ - 5621 + 5909 ], "min": [ - 5622 + 5910 ], "stddev": [ - 5625 + 5913 ], "stddev_pop": [ - 5626 + 5914 ], "stddev_samp": [ - 5627 + 5915 ], "sum": [ - 5630 + 5918 ], "var_pop": [ - 5631 + 5919 ], "var_samp": [ - 5632 + 5920 ], "variance": [ - 5633 + 5921 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_avg_fields": { @@ -128191,96 +133664,96 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_bool_exp": { "_and": [ - 5620 + 5908 ], "_not": [ - 5620 + 5908 ], "_or": [ - 5620 + 5908 ], "map": [ - 2401 + 2662 ], "map_id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "started_at": [ - 4671 + 4959 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_max_fields": { "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "started_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_min_fields": { "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "started_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_order_by": { "map": [ - 2411 + 2672 ], "map_id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "started_at": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_select_column": {}, @@ -128289,7 +133762,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_stddev_pop_fields": { @@ -128297,7 +133770,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_stddev_samp_fields": { @@ -128305,43 +133778,43 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 5629 + 5917 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "started_at": [ - 4670 + 4958 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_sum_fields": { "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_var_pop_fields": { @@ -128349,7 +133822,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_var_samp_fields": { @@ -128357,7 +133830,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_map_wins_variance_fields": { @@ -128365,67 +133838,67 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head": { "attacked": [ - 4052 + 4335 ], "attacked_steam_id": [ - 264 + 268 ], "attacker": [ - 4052 + 4335 ], "attacker_steam_id": [ - 264 + 268 ], "damage_dealt": [ 40 ], "flash_count": [ - 264 + 268 ], "headshot_kills": [ - 264 + 268 ], "hits": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 5636 + 5924 ], "nodes": [ - 5634 + 5922 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 5637 + 5925 ], "count": [ 40, { "columns": [ - 5642, + 5930, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -128434,34 +133907,34 @@ export default { } ], "max": [ - 5639 + 5927 ], "min": [ - 5640 + 5928 ], "stddev": [ - 5643 + 5931 ], "stddev_pop": [ - 5644 + 5932 ], "stddev_samp": [ - 5645 + 5933 ], "sum": [ - 5648 + 5936 ], "var_pop": [ - 5649 + 5937 ], "var_samp": [ - 5650 + 5938 ], "variance": [ - 5651 + 5939 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_avg_fields": { @@ -128487,150 +133960,150 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 5638 + 5926 ], "_not": [ - 5638 + 5926 ], "_or": [ - 5638 + 5926 ], "attacked": [ - 4056 + 4339 ], "attacked_steam_id": [ - 266 + 270 ], "attacker": [ - 4056 + 4339 ], "attacker_steam_id": [ - 266 + 270 ], "damage_dealt": [ 41 ], "flash_count": [ - 266 + 270 ], "headshot_kills": [ - 266 + 270 ], "hits": [ - 266 + 270 ], "kills": [ - 266 + 270 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_max_fields": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "damage_dealt": [ 40 ], "flash_count": [ - 264 + 268 ], "headshot_kills": [ - 264 + 268 ], "hits": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "match_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_min_fields": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "damage_dealt": [ 40 ], "flash_count": [ - 264 + 268 ], "headshot_kills": [ - 264 + 268 ], "hits": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "match_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_order_by": { "attacked": [ - 4065 + 4348 ], "attacked_steam_id": [ - 3094 + 3377 ], "attacker": [ - 4065 + 4348 ], "attacker_steam_id": [ - 3094 + 3377 ], "damage_dealt": [ - 3094 + 3377 ], "flash_count": [ - 3094 + 3377 ], "headshot_kills": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_select_column": {}, @@ -128657,7 +134130,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_stddev_pop_fields": { @@ -128683,7 +134156,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_stddev_samp_fields": { @@ -128709,73 +134182,73 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 5647 + 5935 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_stream_cursor_value_input": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "damage_dealt": [ 40 ], "flash_count": [ - 264 + 268 ], "headshot_kills": [ - 264 + 268 ], "hits": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "match_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_sum_fields": { "attacked_steam_id": [ - 264 + 268 ], "attacker_steam_id": [ - 264 + 268 ], "damage_dealt": [ 40 ], "flash_count": [ - 264 + 268 ], "headshot_kills": [ - 264 + 268 ], "hits": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_var_pop_fields": { @@ -128801,7 +134274,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_var_samp_fields": { @@ -128827,7 +134300,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_head_to_head_variance_fields": { @@ -128853,98 +134326,98 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv": { "adr": [ - 3092 + 3375 ], "apr": [ - 3092 + 3375 ], "dpr": [ - 3092 + 3375 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kpr": [ - 3092 + 3375 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4052 + 4335 ], "rounds_played": [ 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 5656 + 5944 ], "nodes": [ - 5652 + 5940 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 5655 + 5943 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 5670 + 5958 ], "distinct": [ 5 ], "filter": [ - 5661 + 5949 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 5659 + 5947 ], "count": [ 40, { "columns": [ - 5670, + 5958, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -128953,80 +134426,80 @@ export default { } ], "max": [ - 5664 + 5952 ], "min": [ - 5666 + 5954 ], "stddev": [ - 5672 + 5960 ], "stddev_pop": [ - 5674 + 5962 ], "stddev_samp": [ - 5676 + 5964 ], "sum": [ - 5680 + 5968 ], "var_pop": [ - 5683 + 5971 ], "var_samp": [ - 5685 + 5973 ], "variance": [ - 5687 + 5975 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 5660 + 5948 ], "count": [ - 3094 + 3377 ], "max": [ - 5665 + 5953 ], "min": [ - 5667 + 5955 ], "stddev": [ - 5673 + 5961 ], "stddev_pop": [ - 5675 + 5963 ], "stddev_samp": [ - 5677 + 5965 ], "sum": [ - 5681 + 5969 ], "var_pop": [ - 5684 + 5972 ], "var_samp": [ - 5686 + 5974 ], "variance": [ - 5688 + 5976 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 5663 + 5951 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_avg_fields": { @@ -129055,302 +134528,302 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 3094 + 3377 ], "apr": [ - 3094 + 3377 ], "dpr": [ - 3094 + 3377 ], "hltv_rating": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "kpr": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 5661 + 5949 ], "_not": [ - 5661 + 5949 ], "_or": [ - 5661 + 5949 ], "adr": [ - 3093 + 3376 ], "apr": [ - 3093 + 3376 ], "dpr": [ - 3093 + 3376 ], "hltv_rating": [ - 3093 + 3376 ], "kast_pct": [ - 3093 + 3376 ], "kpr": [ - 3093 + 3376 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "player": [ - 4056 + 4339 ], "rounds_played": [ 41 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_inc_input": { "adr": [ - 3092 + 3375 ], "apr": [ - 3092 + 3375 ], "dpr": [ - 3092 + 3375 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kpr": [ - 3092 + 3375 ], "rounds_played": [ 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_insert_input": { "adr": [ - 3092 + 3375 ], "apr": [ - 3092 + 3375 ], "dpr": [ - 3092 + 3375 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kpr": [ - 3092 + 3375 ], "match": [ - 2900 + 3181 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2734 + 2995 ], "match_map_id": [ - 5170 + 5458 ], "player": [ - 4063 + 4346 ], "rounds_played": [ 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_max_fields": { "adr": [ - 3092 + 3375 ], "apr": [ - 3092 + 3375 ], "dpr": [ - 3092 + 3375 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kpr": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "rounds_played": [ 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 3094 + 3377 ], "apr": [ - 3094 + 3377 ], "dpr": [ - 3094 + 3377 ], "hltv_rating": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "kpr": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_min_fields": { "adr": [ - 3092 + 3375 ], "apr": [ - 3092 + 3375 ], "dpr": [ - 3092 + 3375 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kpr": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "rounds_played": [ 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 3094 + 3377 ], "apr": [ - 3094 + 3377 ], "dpr": [ - 3094 + 3377 ], "hltv_rating": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "kpr": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_map_id": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_mutation_response": { @@ -129358,90 +134831,90 @@ export default { 40 ], "returning": [ - 5652 + 5940 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_order_by": { "adr": [ - 3094 + 3377 ], "apr": [ - 3094 + 3377 ], "dpr": [ - 3094 + 3377 ], "hltv_rating": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "kpr": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "rounds_played": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 3092 + 3375 ], "apr": [ - 3092 + 3375 ], "dpr": [ - 3092 + 3375 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kpr": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "rounds_played": [ 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_stddev_fields": { @@ -129470,36 +134943,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 3094 + 3377 ], "apr": [ - 3094 + 3377 ], "dpr": [ - 3094 + 3377 ], "hltv_rating": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "kpr": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_stddev_pop_fields": { @@ -129528,36 +135001,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 3094 + 3377 ], "apr": [ - 3094 + 3377 ], "dpr": [ - 3094 + 3377 ], "hltv_rating": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "kpr": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_stddev_samp_fields": { @@ -129586,154 +135059,154 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 3094 + 3377 ], "apr": [ - 3094 + 3377 ], "dpr": [ - 3094 + 3377 ], "hltv_rating": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "kpr": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 5679 + 5967 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 3092 + 3375 ], "apr": [ - 3092 + 3375 ], "dpr": [ - 3092 + 3375 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kpr": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "rounds_played": [ 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 3092 + 3375 ], "apr": [ - 3092 + 3375 ], "dpr": [ - 3092 + 3375 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kpr": [ - 3092 + 3375 ], "rounds_played": [ 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 3094 + 3377 ], "apr": [ - 3094 + 3377 ], "dpr": [ - 3094 + 3377 ], "hltv_rating": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "kpr": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_updates": { "_inc": [ - 5662 + 5950 ], "_set": [ - 5671 + 5959 ], "where": [ - 5661 + 5949 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_var_pop_fields": { @@ -129762,36 +135235,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 3094 + 3377 ], "apr": [ - 3094 + 3377 ], "dpr": [ - 3094 + 3377 ], "hltv_rating": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "kpr": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_var_samp_fields": { @@ -129820,36 +135293,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 3094 + 3377 ], "apr": [ - 3094 + 3377 ], "dpr": [ - 3094 + 3377 ], "hltv_rating": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "kpr": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_variance_fields": { @@ -129878,86 +135351,86 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 3094 + 3377 ], "apr": [ - 3094 + 3377 ], "dpr": [ - 3094 + 3377 ], "hltv_rating": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "kpr": [ - 3094 + 3377 ], "rounds_played": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles": { "adr": [ - 3092 + 3375 ], "awp_kills": [ 40 ], "awp_share": [ - 3092 + 3375 ], "deaths": [ 40 ], "dpr": [ - 3092 + 3375 ], "entry_rate": [ - 3092 + 3375 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kills": [ 40 ], "kpr": [ - 3092 + 3375 ], "lineup_id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "match_map": [ - 2716 + 2977 ], "match_map_id": [ - 5170 + 5458 ], "open_deaths": [ 40 @@ -129969,19 +135442,19 @@ export default { 40 ], "player": [ - 4052 + 4335 ], "role": [ - 80 + 83 ], "rounds": [ 40 ], "steam_id": [ - 264 + 268 ], "support_idx": [ - 3092 + 3375 ], "total_kills": [ 40 @@ -129996,29 +135469,29 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 5691 + 5979 ], "nodes": [ - 5689 + 5977 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 5692 + 5980 ], "count": [ 40, { "columns": [ - 5697, + 5985, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -130027,34 +135500,34 @@ export default { } ], "max": [ - 5694 + 5982 ], "min": [ - 5695 + 5983 ], "stddev": [ - 5698 + 5986 ], "stddev_pop": [ - 5699 + 5987 ], "stddev_samp": [ - 5700 + 5988 ], "sum": [ - 5703 + 5991 ], "var_pop": [ - 5704 + 5992 ], "var_samp": [ - 5705 + 5993 ], "variance": [ - 5706 + 5994 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_avg_fields": { @@ -130122,66 +135595,66 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_bool_exp": { "_and": [ - 5693 + 5981 ], "_not": [ - 5693 + 5981 ], "_or": [ - 5693 + 5981 ], "adr": [ - 3093 + 3376 ], "awp_kills": [ 41 ], "awp_share": [ - 3093 + 3376 ], "deaths": [ 41 ], "dpr": [ - 3093 + 3376 ], "entry_rate": [ - 3093 + 3376 ], "flash_assists": [ 41 ], "hltv_rating": [ - 3093 + 3376 ], "kast_pct": [ - 3093 + 3376 ], "kills": [ 41 ], "kpr": [ - 3093 + 3376 ], "lineup_id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "match_map": [ - 2725 + 2986 ], "match_map_id": [ - 5172 + 5460 ], "open_deaths": [ 41 @@ -130193,19 +135666,19 @@ export default { 41 ], "player": [ - 4056 + 4339 ], "role": [ - 82 + 85 ], "rounds": [ 41 ], "steam_id": [ - 266 + 270 ], "support_idx": [ - 3093 + 3376 ], "total_kills": [ 41 @@ -130220,51 +135693,51 @@ export default { 41 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_max_fields": { "adr": [ - 3092 + 3375 ], "awp_kills": [ 40 ], "awp_share": [ - 3092 + 3375 ], "deaths": [ 40 ], "dpr": [ - 3092 + 3375 ], "entry_rate": [ - 3092 + 3375 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kills": [ 40 ], "kpr": [ - 3092 + 3375 ], "lineup_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "open_deaths": [ 40 @@ -130276,16 +135749,16 @@ export default { 40 ], "role": [ - 80 + 83 ], "rounds": [ 40 ], "steam_id": [ - 264 + 268 ], "support_idx": [ - 3092 + 3375 ], "total_kills": [ 40 @@ -130300,51 +135773,51 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_min_fields": { "adr": [ - 3092 + 3375 ], "awp_kills": [ 40 ], "awp_share": [ - 3092 + 3375 ], "deaths": [ 40 ], "dpr": [ - 3092 + 3375 ], "entry_rate": [ - 3092 + 3375 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kills": [ 40 ], "kpr": [ - 3092 + 3375 ], "lineup_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "open_deaths": [ 40 @@ -130356,16 +135829,16 @@ export default { 40 ], "role": [ - 80 + 83 ], "rounds": [ 40 ], "steam_id": [ - 264 + 268 ], "support_idx": [ - 3092 + 3375 ], "total_kills": [ 40 @@ -130380,96 +135853,96 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_order_by": { "adr": [ - 3094 + 3377 ], "awp_kills": [ - 3094 + 3377 ], "awp_share": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "dpr": [ - 3094 + 3377 ], "entry_rate": [ - 3094 + 3377 ], "flash_assists": [ - 3094 + 3377 ], "hltv_rating": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "kpr": [ - 3094 + 3377 ], "lineup_id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "match_map": [ - 2736 + 2997 ], "match_map_id": [ - 3094 + 3377 ], "open_deaths": [ - 3094 + 3377 ], "open_kills": [ - 3094 + 3377 ], "opening_attempts": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "role": [ - 3094 + 3377 ], "rounds": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "support_idx": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "trade_kill_successes": [ - 3094 + 3377 ], "traded_death_successes": [ - 3094 + 3377 ], "util_damage": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_select_column": {}, @@ -130538,7 +136011,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_stddev_pop_fields": { @@ -130606,7 +136079,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_stddev_samp_fields": { @@ -130674,62 +136147,62 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 5702 + 5990 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 3092 + 3375 ], "awp_kills": [ 40 ], "awp_share": [ - 3092 + 3375 ], "deaths": [ 40 ], "dpr": [ - 3092 + 3375 ], "entry_rate": [ - 3092 + 3375 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kills": [ 40 ], "kpr": [ - 3092 + 3375 ], "lineup_id": [ - 5170 + 5458 ], "match_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170 + 5458 ], "open_deaths": [ 40 @@ -130741,16 +136214,16 @@ export default { 40 ], "role": [ - 80 + 83 ], "rounds": [ 40 ], "steam_id": [ - 264 + 268 ], "support_idx": [ - 3092 + 3375 ], "total_kills": [ 40 @@ -130765,42 +136238,42 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_sum_fields": { "adr": [ - 3092 + 3375 ], "awp_kills": [ 40 ], "awp_share": [ - 3092 + 3375 ], "deaths": [ 40 ], "dpr": [ - 3092 + 3375 ], "entry_rate": [ - 3092 + 3375 ], "flash_assists": [ 40 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kills": [ 40 ], "kpr": [ - 3092 + 3375 ], "open_deaths": [ 40 @@ -130815,10 +136288,10 @@ export default { 40 ], "steam_id": [ - 264 + 268 ], "support_idx": [ - 3092 + 3375 ], "total_kills": [ 40 @@ -130833,7 +136306,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_var_pop_fields": { @@ -130901,7 +136374,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_var_samp_fields": { @@ -130969,7 +136442,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_map_roles_variance_fields": { @@ -131037,7 +136510,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance": { @@ -131051,56 +136524,56 @@ export default { 40 ], "map": [ - 2392 + 2653 ], "map_id": [ - 5170 + 5458 ], "match": [ - 2882 + 3161 ], "match_created_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_result": [ - 80 + 83 ], "player_steam_id": [ - 264 + 268 ], "source": [ - 80 + 83 ], "type": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_aggregate": { "aggregate": [ - 5709 + 5997 ], "nodes": [ - 5707 + 5995 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_aggregate_fields": { "avg": [ - 5710 + 5998 ], "count": [ 40, { "columns": [ - 5715, + 6003, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -131109,34 +136582,34 @@ export default { } ], "max": [ - 5712 + 6000 ], "min": [ - 5713 + 6001 ], "stddev": [ - 5716 + 6004 ], "stddev_pop": [ - 5717 + 6005 ], "stddev_samp": [ - 5718 + 6006 ], "sum": [ - 5721 + 6009 ], "var_pop": [ - 5722 + 6010 ], "var_samp": [ - 5723 + 6011 ], "variance": [ - 5724 + 6012 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_avg_fields": { @@ -131153,18 +136626,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_bool_exp": { "_and": [ - 5711 + 5999 ], "_not": [ - 5711 + 5999 ], "_or": [ - 5711 + 5999 ], "assists": [ 41 @@ -131176,34 +136649,34 @@ export default { 41 ], "map": [ - 2401 + 2662 ], "map_id": [ - 5172 + 5460 ], "match": [ - 2891 + 3172 ], "match_created_at": [ - 4671 + 4959 ], "match_id": [ - 5172 + 5460 ], "match_result": [ - 82 + 85 ], "player_steam_id": [ - 266 + 270 ], "source": [ - 82 + 85 ], "type": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_max_fields": { @@ -131217,28 +136690,28 @@ export default { 40 ], "map_id": [ - 5170 + 5458 ], "match_created_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_result": [ - 80 + 83 ], "player_steam_id": [ - 264 + 268 ], "source": [ - 80 + 83 ], "type": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_min_fields": { @@ -131252,69 +136725,69 @@ export default { 40 ], "map_id": [ - 5170 + 5458 ], "match_created_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_result": [ - 80 + 83 ], "player_steam_id": [ - 264 + 268 ], "source": [ - 80 + 83 ], "type": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "map": [ - 2411 + 2672 ], "map_id": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_created_at": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "match_result": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "source": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_select_column": {}, @@ -131332,7 +136805,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_stddev_pop_fields": { @@ -131349,7 +136822,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_stddev_samp_fields": { @@ -131366,18 +136839,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 5720 + 6008 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_stream_cursor_value_input": { @@ -131391,28 +136864,28 @@ export default { 40 ], "map_id": [ - 5170 + 5458 ], "match_created_at": [ - 4670 + 4958 ], "match_id": [ - 5170 + 5458 ], "match_result": [ - 80 + 83 ], "player_steam_id": [ - 264 + 268 ], "source": [ - 80 + 83 ], "type": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_sum_fields": { @@ -131426,10 +136899,10 @@ export default { 40 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_var_pop_fields": { @@ -131446,7 +136919,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_var_samp_fields": { @@ -131463,7 +136936,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_performance_variance_fields": { @@ -131480,64 +136953,64 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating": { "adr": [ - 3092 + 3375 ], "dpr": [ - 3092 + 3375 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kpr": [ - 3092 + 3375 ], "match": [ - 2882 + 3161 ], "match_id": [ - 5170 + 5458 ], "player": [ - 4052 + 4335 ], "rounds_played": [ 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_aggregate": { "aggregate": [ - 5727 + 6015 ], "nodes": [ - 5725 + 6013 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_aggregate_fields": { "avg": [ - 5728 + 6016 ], "count": [ 40, { "columns": [ - 5733, + 6021, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -131546,34 +137019,34 @@ export default { } ], "max": [ - 5730 + 6018 ], "min": [ - 5731 + 6019 ], "stddev": [ - 5734 + 6022 ], "stddev_pop": [ - 5735 + 6023 ], "stddev_samp": [ - 5736 + 6024 ], "sum": [ - 5739 + 6027 ], "var_pop": [ - 5740 + 6028 ], "var_samp": [ - 5741 + 6029 ], "variance": [ - 5742 + 6030 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_avg_fields": { @@ -131599,144 +137072,144 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_bool_exp": { "_and": [ - 5729 + 6017 ], "_not": [ - 5729 + 6017 ], "_or": [ - 5729 + 6017 ], "adr": [ - 3093 + 3376 ], "dpr": [ - 3093 + 3376 ], "hltv_rating": [ - 3093 + 3376 ], "kast_pct": [ - 3093 + 3376 ], "kpr": [ - 3093 + 3376 ], "match": [ - 2891 + 3172 ], "match_id": [ - 5172 + 5460 ], "player": [ - 4056 + 4339 ], "rounds_played": [ 41 ], "steam_id": [ - 266 + 270 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_max_fields": { "adr": [ - 3092 + 3375 ], "dpr": [ - 3092 + 3375 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kpr": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "rounds_played": [ 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_min_fields": { "adr": [ - 3092 + 3375 ], "dpr": [ - 3092 + 3375 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kpr": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "rounds_played": [ 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_order_by": { "adr": [ - 3094 + 3377 ], "dpr": [ - 3094 + 3377 ], "hltv_rating": [ - 3094 + 3377 ], "kast_pct": [ - 3094 + 3377 ], "kpr": [ - 3094 + 3377 ], "match": [ - 2902 + 3183 ], "match_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "rounds_played": [ - 3094 + 3377 ], "steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_select_column": {}, @@ -131763,7 +137236,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_stddev_pop_fields": { @@ -131789,7 +137262,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_stddev_samp_fields": { @@ -131815,73 +137288,73 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 5738 + 6026 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 3092 + 3375 ], "dpr": [ - 3092 + 3375 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kpr": [ - 3092 + 3375 ], "match_id": [ - 5170 + 5458 ], "rounds_played": [ 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_sum_fields": { "adr": [ - 3092 + 3375 ], "dpr": [ - 3092 + 3375 ], "hltv_rating": [ - 3092 + 3375 ], "kast_pct": [ - 3092 + 3375 ], "kpr": [ - 3092 + 3375 ], "rounds_played": [ 40 ], "steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_var_pop_fields": { @@ -131907,7 +137380,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_var_samp_fields": { @@ -131933,7 +137406,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_match_rating_variance_fields": { @@ -131959,71 +137432,71 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills": { "attacker_steam_id": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "match_id": [ - 5170 + 5458 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_aggregate": { "aggregate": [ - 5747 + 6035 ], "nodes": [ - 5743 + 6031 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 5746 + 6034 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5759 + 6047 ], "distinct": [ 5 ], "filter": [ - 5752 + 6040 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 5750 + 6038 ], "count": [ 40, { "columns": [ - 5759, + 6047, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -132032,80 +137505,80 @@ export default { } ], "max": [ - 5754 + 6042 ], "min": [ - 5756 + 6044 ], "stddev": [ - 5760 + 6048 ], "stddev_pop": [ - 5762 + 6050 ], "stddev_samp": [ - 5764 + 6052 ], "sum": [ - 5768 + 6056 ], "var_pop": [ - 5770 + 6058 ], "var_samp": [ - 5772 + 6060 ], "variance": [ - 5774 + 6062 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 5751 + 6039 ], "count": [ - 3094 + 3377 ], "max": [ - 5755 + 6043 ], "min": [ - 5757 + 6045 ], "stddev": [ - 5761 + 6049 ], "stddev_pop": [ - 5763 + 6051 ], "stddev_samp": [ - 5765 + 6053 ], "sum": [ - 5769 + 6057 ], "var_pop": [ - 5771 + 6059 ], "var_samp": [ - 5773 + 6061 ], "variance": [ - 5775 + 6063 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 5753 + 6041 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_avg_fields": { @@ -132119,149 +137592,149 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_bool_exp": { "_and": [ - 5752 + 6040 ], "_not": [ - 5752 + 6040 ], "_or": [ - 5752 + 6040 ], "attacker_steam_id": [ - 266 + 270 ], "kills": [ - 266 + 270 ], "match_id": [ - 5172 + 5460 ], "round": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_insert_input": { "attacker_steam_id": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "match_id": [ - 5170 + 5458 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_max_fields": { "attacker_steam_id": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "match_id": [ - 5170 + 5458 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_min_fields": { "attacker_steam_id": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "match_id": [ - 5170 + 5458 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "match_id": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_select_column": {}, @@ -132276,21 +137749,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_stddev_pop_fields": { @@ -132304,21 +137777,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_stddev_samp_fields": { @@ -132332,77 +137805,77 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5767 + 6055 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_stream_cursor_value_input": { "attacker_steam_id": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "match_id": [ - 5170 + 5458 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_sum_fields": { "attacker_steam_id": [ - 264 + 268 ], "kills": [ - 264 + 268 ], "round": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_var_pop_fields": { @@ -132416,21 +137889,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_var_samp_fields": { @@ -132444,21 +137917,21 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_variance_fields": { @@ -132472,72 +137945,72 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "round": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners": { "first_played_at": [ - 4670 + 4958 ], "last_played_at": [ - 4670 + 4958 ], "matches_together": [ 40 ], "partner": [ - 4052 + 4335 ], "partner_steam_id": [ - 264 + 268 ], "player": [ - 4052 + 4335 ], "steam_id": [ - 264 + 268 ], "wins_together": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_aggregate": { "aggregate": [ - 5778 + 6066 ], "nodes": [ - 5776 + 6064 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_aggregate_fields": { "avg": [ - 5779 + 6067 ], "count": [ 40, { "columns": [ - 5784, + 6072, "[v_player_queue_partners_select_column!]" ], "distinct": [ @@ -132546,34 +138019,34 @@ export default { } ], "max": [ - 5781 + 6069 ], "min": [ - 5782 + 6070 ], "stddev": [ - 5785 + 6073 ], "stddev_pop": [ - 5786 + 6074 ], "stddev_samp": [ - 5787 + 6075 ], "sum": [ - 5790 + 6078 ], "var_pop": [ - 5791 + 6079 ], "var_samp": [ - 5792 + 6080 ], "variance": [ - 5793 + 6081 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_avg_fields": { @@ -132590,120 +138063,120 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_bool_exp": { "_and": [ - 5780 + 6068 ], "_not": [ - 5780 + 6068 ], "_or": [ - 5780 + 6068 ], "first_played_at": [ - 4671 + 4959 ], "last_played_at": [ - 4671 + 4959 ], "matches_together": [ 41 ], "partner": [ - 4056 + 4339 ], "partner_steam_id": [ - 266 + 270 ], "player": [ - 4056 + 4339 ], "steam_id": [ - 266 + 270 ], "wins_together": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_max_fields": { "first_played_at": [ - 4670 + 4958 ], "last_played_at": [ - 4670 + 4958 ], "matches_together": [ 40 ], "partner_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "wins_together": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_min_fields": { "first_played_at": [ - 4670 + 4958 ], "last_played_at": [ - 4670 + 4958 ], "matches_together": [ 40 ], "partner_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "wins_together": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_order_by": { "first_played_at": [ - 3094 + 3377 ], "last_played_at": [ - 3094 + 3377 ], "matches_together": [ - 3094 + 3377 ], "partner": [ - 4065 + 4348 ], "partner_steam_id": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "steam_id": [ - 3094 + 3377 ], "wins_together": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_select_column": {}, @@ -132721,7 +138194,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_stddev_pop_fields": { @@ -132738,7 +138211,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_stddev_samp_fields": { @@ -132755,41 +138228,41 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_stream_cursor_input": { "initial_value": [ - 5789 + 6077 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_stream_cursor_value_input": { "first_played_at": [ - 4670 + 4958 ], "last_played_at": [ - 4670 + 4958 ], "matches_together": [ 40 ], "partner_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "wins_together": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_sum_fields": { @@ -132797,16 +138270,16 @@ export default { 40 ], "partner_steam_id": [ - 264 + 268 ], "steam_id": [ - 264 + 268 ], "wins_together": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_var_pop_fields": { @@ -132823,7 +138296,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_var_samp_fields": { @@ -132840,7 +138313,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_queue_partners_variance_fields": { @@ -132857,52 +138330,52 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage": { "damage": [ - 264 + 268 ], "hits": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "source": [ - 80 + 83 ], "type": [ - 80 + 83 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5796 + 6084 ], "nodes": [ - 5794 + 6082 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5797 + 6085 ], "count": [ 40, { "columns": [ - 5802, + 6090, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -132911,34 +138384,34 @@ export default { } ], "max": [ - 5799 + 6087 ], "min": [ - 5800 + 6088 ], "stddev": [ - 5803 + 6091 ], "stddev_pop": [ - 5804 + 6092 ], "stddev_samp": [ - 5805 + 6093 ], "sum": [ - 5808 + 6096 ], "var_pop": [ - 5809 + 6097 ], "var_samp": [ - 5810 + 6098 ], "variance": [ - 5811 + 6099 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_avg_fields": { @@ -132952,108 +138425,108 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5798 + 6086 ], "_not": [ - 5798 + 6086 ], "_or": [ - 5798 + 6086 ], "damage": [ - 266 + 270 ], "hits": [ - 266 + 270 ], "player_steam_id": [ - 266 + 270 ], "source": [ - 82 + 85 ], "type": [ - 82 + 85 ], "with": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_max_fields": { "damage": [ - 264 + 268 ], "hits": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "source": [ - 80 + 83 ], "type": [ - 80 + 83 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_min_fields": { "damage": [ - 264 + 268 ], "hits": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "source": [ - 80 + 83 ], "type": [ - 80 + 83 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_order_by": { "damage": [ - 3094 + 3377 ], "hits": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "source": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "with": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_select_column": {}, @@ -133068,7 +138541,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_stddev_pop_fields": { @@ -133082,7 +138555,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_stddev_samp_fields": { @@ -133096,55 +138569,55 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5807 + 6095 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_stream_cursor_value_input": { "damage": [ - 264 + 268 ], "hits": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "source": [ - 80 + 83 ], "type": [ - 80 + 83 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_sum_fields": { "damage": [ - 264 + 268 ], "hits": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_var_pop_fields": { @@ -133158,7 +138631,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_var_samp_fields": { @@ -133172,7 +138645,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_damage_variance_fields": { @@ -133186,52 +138659,52 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills": { "kill_count": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "rounds": [ - 264 + 268 ], "source": [ - 80 + 83 ], "type": [ - 80 + 83 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5814 + 6102 ], "nodes": [ - 5812 + 6100 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5815 + 6103 ], "count": [ 40, { "columns": [ - 5820, + 6108, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -133240,34 +138713,34 @@ export default { } ], "max": [ - 5817 + 6105 ], "min": [ - 5818 + 6106 ], "stddev": [ - 5821 + 6109 ], "stddev_pop": [ - 5822 + 6110 ], "stddev_samp": [ - 5823 + 6111 ], "sum": [ - 5826 + 6114 ], "var_pop": [ - 5827 + 6115 ], "var_samp": [ - 5828 + 6116 ], "variance": [ - 5829 + 6117 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_avg_fields": { @@ -133281,108 +138754,108 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5816 + 6104 ], "_not": [ - 5816 + 6104 ], "_or": [ - 5816 + 6104 ], "kill_count": [ - 266 + 270 ], "player_steam_id": [ - 266 + 270 ], "rounds": [ - 266 + 270 ], "source": [ - 82 + 85 ], "type": [ - 82 + 85 ], "with": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_max_fields": { "kill_count": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "rounds": [ - 264 + 268 ], "source": [ - 80 + 83 ], "type": [ - 80 + 83 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_min_fields": { "kill_count": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "rounds": [ - 264 + 268 ], "source": [ - 80 + 83 ], "type": [ - 80 + 83 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_order_by": { "kill_count": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "rounds": [ - 3094 + 3377 ], "source": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "with": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_select_column": {}, @@ -133397,7 +138870,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_stddev_pop_fields": { @@ -133411,7 +138884,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_stddev_samp_fields": { @@ -133425,55 +138898,55 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5825 + 6113 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_stream_cursor_value_input": { "kill_count": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "rounds": [ - 264 + 268 ], "source": [ - 80 + 83 ], "type": [ - 80 + 83 ], "with": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_sum_fields": { "kill_count": [ - 264 + 268 ], "player_steam_id": [ - 264 + 268 ], "rounds": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_var_pop_fields": { @@ -133487,7 +138960,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_var_samp_fields": { @@ -133501,7 +138974,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_player_weapon_kills_variance_fields": { @@ -133515,7 +138988,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps": { @@ -133523,110 +138996,110 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "map_pool": [ - 2373 + 2634 ], "map_pool_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "patch": [ - 80 + 83 ], "poster": [ - 80 + 83 ], "type": [ - 80 + 83 ], "workshop_map_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_aggregate": { "aggregate": [ - 5836 + 6124 ], "nodes": [ - 5830 + 6118 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5833 + 6121 ], "bool_or": [ - 5834 + 6122 ], "count": [ - 5835 + 6123 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5848 + 6136 ], "distinct": [ 5 ], "filter": [ - 5839 + 6127 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5849 + 6137 ], "distinct": [ 5 ], "filter": [ - 5839 + 6127 ], "predicate": [ 6 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5847 + 6135 ], "distinct": [ 5 ], "filter": [ - 5839 + 6127 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_aggregate_fields": { @@ -133634,7 +139107,7 @@ export default { 40, { "columns": [ - 5847, + 6135, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -133643,79 +139116,79 @@ export default { } ], "max": [ - 5841 + 6129 ], "min": [ - 5843 + 6131 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_aggregate_order_by": { "count": [ - 3094 + 3377 ], "max": [ - 5842 + 6130 ], "min": [ - 5844 + 6132 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5840 + 6128 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_bool_exp": { "_and": [ - 5839 + 6127 ], "_not": [ - 5839 + 6127 ], "_or": [ - 5839 + 6127 ], "active_pool": [ 6 ], "id": [ - 5172 + 5460 ], "label": [ - 82 + 85 ], "map_pool": [ - 2376 + 2637 ], "map_pool_id": [ - 5172 + 5460 ], "name": [ - 82 + 85 ], "patch": [ - 82 + 85 ], "poster": [ - 82 + 85 ], "type": [ - 82 + 85 ], "workshop_map_id": [ - 82 + 85 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_insert_input": { @@ -133723,150 +139196,150 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "map_pool": [ - 2382 + 2643 ], "map_pool_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "patch": [ - 80 + 83 ], "poster": [ - 80 + 83 ], "type": [ - 80 + 83 ], "workshop_map_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_max_fields": { "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "map_pool_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "patch": [ - 80 + 83 ], "poster": [ - 80 + 83 ], "type": [ - 80 + 83 ], "workshop_map_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_max_order_by": { "id": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "map_pool_id": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "patch": [ - 3094 + 3377 ], "poster": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "workshop_map_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_min_fields": { "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "map_pool_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "patch": [ - 80 + 83 ], "poster": [ - 80 + 83 ], "type": [ - 80 + 83 ], "workshop_map_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_min_order_by": { "id": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "map_pool_id": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "patch": [ - 3094 + 3377 ], "poster": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "workshop_map_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_mutation_response": { @@ -133874,45 +139347,45 @@ export default { 40 ], "returning": [ - 5830 + 6118 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_order_by": { "active_pool": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "label": [ - 3094 + 3377 ], "map_pool": [ - 2384 + 2645 ], "map_pool_id": [ - 3094 + 3377 ], "name": [ - 3094 + 3377 ], "patch": [ - 3094 + 3377 ], "poster": [ - 3094 + 3377 ], "type": [ - 3094 + 3377 ], "workshop_map_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_select_column": {}, @@ -133923,42 +139396,42 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "map_pool_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "patch": [ - 80 + 83 ], "poster": [ - 80 + 83 ], "type": [ - 80 + 83 ], "workshop_map_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5852 + 6140 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_stream_cursor_value_input": { @@ -133966,42 +139439,42 @@ export default { 5 ], "id": [ - 5170 + 5458 ], "label": [ - 80 + 83 ], "map_pool_id": [ - 5170 + 5458 ], "name": [ - 80 + 83 ], "patch": [ - 80 + 83 ], "poster": [ - 80 + 83 ], "type": [ - 80 + 83 ], "workshop_map_id": [ - 80 + 83 ], "__typename": [ - 80 + 83 ] }, "v_pool_maps_updates": { "_set": [ - 5850 + 6138 ], "where": [ - 5839 + 6127 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status": { @@ -134018,29 +139491,29 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5856 + 6144 ], "nodes": [ - 5854 + 6142 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5857 + 6145 ], "count": [ 40, { "columns": [ - 5862, + 6150, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -134049,34 +139522,34 @@ export default { } ], "max": [ - 5859 + 6147 ], "min": [ - 5860 + 6148 ], "stddev": [ - 5863 + 6151 ], "stddev_pop": [ - 5864 + 6152 ], "stddev_samp": [ - 5865 + 6153 ], "sum": [ - 5868 + 6156 ], "var_pop": [ - 5869 + 6157 ], "var_samp": [ - 5870 + 6158 ], "variance": [ - 5871 + 6159 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_avg_fields": { @@ -134093,18 +139566,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5858 + 6146 ], "_not": [ - 5858 + 6146 ], "_or": [ - 5858 + 6146 ], "busy_accounts": [ 41 @@ -134119,7 +139592,7 @@ export default { 41 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_max_fields": { @@ -134136,7 +139609,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_min_fields": { @@ -134153,24 +139626,24 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 3094 + 3377 ], "free_accounts": [ - 3094 + 3377 ], "id": [ - 3094 + 3377 ], "total_accounts": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_select_column": {}, @@ -134188,7 +139661,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_stddev_pop_fields": { @@ -134205,7 +139678,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_stddev_samp_fields": { @@ -134222,18 +139695,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5867 + 6155 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_stream_cursor_value_input": { @@ -134250,7 +139723,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_sum_fields": { @@ -134267,7 +139740,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_var_pop_fields": { @@ -134284,7 +139757,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_var_samp_fields": { @@ -134301,7 +139774,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_steam_account_pool_status_variance_fields": { @@ -134318,7 +139791,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks": { @@ -134332,7 +139805,7 @@ export default { 40 ], "avg_faceit_level": [ - 1777 + 1841 ], "avg_premier": [ 40 @@ -134347,38 +139820,38 @@ export default { 40 ], "roster_size": [ - 264 + 268 ], "team": [ - 4621 + 4909 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_aggregate": { "aggregate": [ - 5874 + 6162 ], "nodes": [ - 5872 + 6160 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_aggregate_fields": { "avg": [ - 5875 + 6163 ], "count": [ 40, { "columns": [ - 5882, + 6170, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -134387,34 +139860,34 @@ export default { } ], "max": [ - 5878 + 6166 ], "min": [ - 5879 + 6167 ], "stddev": [ - 5883 + 6171 ], "stddev_pop": [ - 5884 + 6172 ], "stddev_samp": [ - 5885 + 6173 ], "sum": [ - 5888 + 6176 ], "var_pop": [ - 5889 + 6177 ], "var_samp": [ - 5890 + 6178 ], "variance": [ - 5891 + 6179 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_avg_fields": { @@ -134446,18 +139919,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_bool_exp": { "_and": [ - 5876 + 6164 ], "_not": [ - 5876 + 6164 ], "_or": [ - 5876 + 6164 ], "avg_duel_elo": [ 41 @@ -134469,7 +139942,7 @@ export default { 41 ], "avg_faceit_level": [ - 1778 + 1842 ], "avg_premier": [ 41 @@ -134484,16 +139957,16 @@ export default { 41 ], "roster_size": [ - 266 + 270 ], "team": [ - 4632 + 4920 ], "team_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_insert_input": { @@ -134507,7 +139980,7 @@ export default { 40 ], "avg_faceit_level": [ - 1777 + 1841 ], "avg_premier": [ 40 @@ -134522,16 +139995,16 @@ export default { 40 ], "roster_size": [ - 264 + 268 ], "team": [ - 4641 + 4929 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_max_fields": { @@ -134545,7 +140018,7 @@ export default { 40 ], "avg_faceit_level": [ - 1777 + 1841 ], "avg_premier": [ 40 @@ -134560,13 +140033,13 @@ export default { 40 ], "roster_size": [ - 264 + 268 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_min_fields": { @@ -134580,7 +140053,7 @@ export default { 40 ], "avg_faceit_level": [ - 1777 + 1841 ], "avg_premier": [ 40 @@ -134595,59 +140068,59 @@ export default { 40 ], "roster_size": [ - 264 + 268 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5877 + 6165 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_order_by": { "avg_duel_elo": [ - 3094 + 3377 ], "avg_elo": [ - 3094 + 3377 ], "avg_faceit_elo": [ - 3094 + 3377 ], "avg_faceit_level": [ - 3094 + 3377 ], "avg_premier": [ - 3094 + 3377 ], "avg_wingman_elo": [ - 3094 + 3377 ], "max_elo": [ - 3094 + 3377 ], "min_elo": [ - 3094 + 3377 ], "roster_size": [ - 3094 + 3377 ], "team": [ - 4643 + 4931 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_select_column": {}, @@ -134680,7 +140153,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_stddev_pop_fields": { @@ -134712,7 +140185,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_stddev_samp_fields": { @@ -134744,18 +140217,18 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5887 + 6175 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_stream_cursor_value_input": { @@ -134769,7 +140242,7 @@ export default { 40 ], "avg_faceit_level": [ - 1777 + 1841 ], "avg_premier": [ 40 @@ -134784,13 +140257,13 @@ export default { 40 ], "roster_size": [ - 264 + 268 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_sum_fields": { @@ -134804,7 +140277,7 @@ export default { 40 ], "avg_faceit_level": [ - 1777 + 1841 ], "avg_premier": [ 40 @@ -134819,10 +140292,10 @@ export default { 40 ], "roster_size": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_var_pop_fields": { @@ -134854,7 +140327,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_var_samp_fields": { @@ -134886,7 +140359,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_ranks_variance_fields": { @@ -134918,52 +140391,52 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation": { "late_cancels": [ - 264 + 268 ], "no_shows": [ - 264 + 268 ], "reliability_pct": [ - 3092 + 3375 ], "scrims_completed": [ - 264 + 268 ], "team": [ - 4621 + 4909 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_aggregate": { "aggregate": [ - 5894 + 6182 ], "nodes": [ - 5892 + 6180 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_aggregate_fields": { "avg": [ - 5895 + 6183 ], "count": [ 40, { "columns": [ - 5902, + 6190, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -134972,34 +140445,34 @@ export default { } ], "max": [ - 5898 + 6186 ], "min": [ - 5899 + 6187 ], "stddev": [ - 5903 + 6191 ], "stddev_pop": [ - 5904 + 6192 ], "stddev_samp": [ - 5905 + 6193 ], "sum": [ - 5908 + 6196 ], "var_pop": [ - 5909 + 6197 ], "var_samp": [ - 5910 + 6198 ], "variance": [ - 5911 + 6199 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_avg_fields": { @@ -135016,133 +140489,133 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_bool_exp": { "_and": [ - 5896 + 6184 ], "_not": [ - 5896 + 6184 ], "_or": [ - 5896 + 6184 ], "late_cancels": [ - 266 + 270 ], "no_shows": [ - 266 + 270 ], "reliability_pct": [ - 3093 + 3376 ], "scrims_completed": [ - 266 + 270 ], "team": [ - 4632 + 4920 ], "team_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_insert_input": { "late_cancels": [ - 264 + 268 ], "no_shows": [ - 264 + 268 ], "reliability_pct": [ - 3092 + 3375 ], "scrims_completed": [ - 264 + 268 ], "team": [ - 4641 + 4929 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_max_fields": { "late_cancels": [ - 264 + 268 ], "no_shows": [ - 264 + 268 ], "reliability_pct": [ - 3092 + 3375 ], "scrims_completed": [ - 264 + 268 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_min_fields": { "late_cancels": [ - 264 + 268 ], "no_shows": [ - 264 + 268 ], "reliability_pct": [ - 3092 + 3375 ], "scrims_completed": [ - 264 + 268 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5897 + 6185 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_order_by": { "late_cancels": [ - 3094 + 3377 ], "no_shows": [ - 3094 + 3377 ], "reliability_pct": [ - 3094 + 3377 ], "scrims_completed": [ - 3094 + 3377 ], "team": [ - 4643 + 4931 ], "team_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_select_column": {}, @@ -135160,7 +140633,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_stddev_pop_fields": { @@ -135177,7 +140650,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_stddev_samp_fields": { @@ -135194,55 +140667,55 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5907 + 6195 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_stream_cursor_value_input": { "late_cancels": [ - 264 + 268 ], "no_shows": [ - 264 + 268 ], "reliability_pct": [ - 3092 + 3375 ], "scrims_completed": [ - 264 + 268 ], "team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_sum_fields": { "late_cancels": [ - 264 + 268 ], "no_shows": [ - 264 + 268 ], "reliability_pct": [ - 3092 + 3375 ], "scrims_completed": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_var_pop_fields": { @@ -135259,7 +140732,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_var_samp_fields": { @@ -135276,7 +140749,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_reputation_variance_fields": { @@ -135293,7 +140766,7 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results": { @@ -135334,13 +140807,13 @@ export default { 40 ], "stage": [ - 4931 + 5219 ], "team": [ - 5064 + 5352 ], "team_kdr": [ - 1777 + 1841 ], "total_deaths": [ 40 @@ -135349,245 +140822,245 @@ export default { 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate": { "aggregate": [ - 5926 + 6214 ], "nodes": [ - 5912 + 6200 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5915 + 6203 ], "corr": [ - 5916 + 6204 ], "count": [ - 5918 + 6206 ], "covar_samp": [ - 5919 + 6207 ], "max": [ - 5921 + 6209 ], "min": [ - 5922 + 6210 ], "stddev_samp": [ - 5923 + 6211 ], "sum": [ - 5924 + 6212 ], "var_samp": [ - 5925 + 6213 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5945 + 6233 ], "distinct": [ 5 ], "filter": [ - 5931 + 6219 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5917 + 6205 ], "distinct": [ 5 ], "filter": [ - 5931 + 6219 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5946 + 6234 ], "Y": [ - 5946 + 6234 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5944 + 6232 ], "distinct": [ 5 ], "filter": [ - 5931 + 6219 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5920 + 6208 ], "distinct": [ 5 ], "filter": [ - 5931 + 6219 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5947 + 6235 ], "Y": [ - 5947 + 6235 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5948 + 6236 ], "distinct": [ 5 ], "filter": [ - 5931 + 6219 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5949 + 6237 ], "distinct": [ 5 ], "filter": [ - 5931 + 6219 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5950 + 6238 ], "distinct": [ 5 ], "filter": [ - 5931 + 6219 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5951 + 6239 ], "distinct": [ 5 ], "filter": [ - 5931 + 6219 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5952 + 6240 ], "distinct": [ 5 ], "filter": [ - 5931 + 6219 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5929 + 6217 ], "count": [ 40, { "columns": [ - 5944, + 6232, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -135596,83 +141069,83 @@ export default { } ], "max": [ - 5935 + 6223 ], "min": [ - 5937 + 6225 ], "stddev": [ - 5954 + 6242 ], "stddev_pop": [ - 5956 + 6244 ], "stddev_samp": [ - 5958 + 6246 ], "sum": [ - 5962 + 6250 ], "var_pop": [ - 5966 + 6254 ], "var_samp": [ - 5968 + 6256 ], "variance": [ - 5970 + 6258 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5930 + 6218 ], "count": [ - 3094 + 3377 ], "max": [ - 5936 + 6224 ], "min": [ - 5938 + 6226 ], "stddev": [ - 5955 + 6243 ], "stddev_pop": [ - 5957 + 6245 ], "stddev_samp": [ - 5959 + 6247 ], "sum": [ - 5963 + 6251 ], "var_pop": [ - 5967 + 6255 ], "var_samp": [ - 5969 + 6257 ], "variance": [ - 5971 + 6259 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5934 + 6222 ], "on_conflict": [ - 5941 + 6229 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_avg_fields": { @@ -135725,71 +141198,71 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_avg_order_by": { "group_number": [ - 3094 + 3377 ], "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_bool_exp": { "_and": [ - 5931 + 6219 ], "_not": [ - 5931 + 6219 ], "_or": [ - 5931 + 6219 ], "group_number": [ 41 @@ -135828,13 +141301,13 @@ export default { 41 ], "stage": [ - 4943 + 5231 ], "team": [ - 5073 + 5361 ], "team_kdr": [ - 1778 + 1842 ], "total_deaths": [ 41 @@ -135843,16 +141316,16 @@ export default { 41 ], "tournament_stage_id": [ - 5172 + 5460 ], "tournament_team_id": [ - 5172 + 5460 ], "wins": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_constraint": {}, @@ -135894,7 +141367,7 @@ export default { 40 ], "team_kdr": [ - 1777 + 1841 ], "total_deaths": [ 40 @@ -135906,7 +141379,7 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_insert_input": { @@ -135947,13 +141420,13 @@ export default { 40 ], "stage": [ - 4955 + 5243 ], "team": [ - 5082 + 5370 ], "team_kdr": [ - 1777 + 1841 ], "total_deaths": [ 40 @@ -135962,16 +141435,16 @@ export default { 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_max_fields": { @@ -136012,7 +141485,7 @@ export default { 40 ], "team_kdr": [ - 1777 + 1841 ], "total_deaths": [ 40 @@ -136021,75 +141494,75 @@ export default { 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_max_order_by": { "group_number": [ - 3094 + 3377 ], "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "tournament_stage_id": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_min_fields": { @@ -136130,7 +141603,7 @@ export default { 40 ], "team_kdr": [ - 1777 + 1841 ], "total_deaths": [ 40 @@ -136139,75 +141612,75 @@ export default { 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_min_order_by": { "group_number": [ - 3094 + 3377 ], "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "tournament_stage_id": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_mutation_response": { @@ -136215,111 +141688,111 @@ export default { 40 ], "returning": [ - 5912 + 6200 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5934 + 6222 ], "on_conflict": [ - 5941 + 6229 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_on_conflict": { "constraint": [ - 5932 + 6220 ], "update_columns": [ - 5964 + 6252 ], "where": [ - 5931 + 6219 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_order_by": { "group_number": [ - 3094 + 3377 ], "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "stage": [ - 4957 + 5245 ], "team": [ - 5084 + 5372 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "tournament_stage_id": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_select_column": {}, @@ -136369,7 +141842,7 @@ export default { 40 ], "team_kdr": [ - 1777 + 1841 ], "total_deaths": [ 40 @@ -136378,16 +141851,16 @@ export default { 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_stddev_fields": { @@ -136440,60 +141913,60 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 3094 + 3377 ], "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_stddev_pop_fields": { @@ -136546,60 +142019,60 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 3094 + 3377 ], "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_stddev_samp_fields": { @@ -136652,71 +142125,71 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 3094 + 3377 ], "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5961 + 6249 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_stream_cursor_value_input": { @@ -136757,7 +142230,7 @@ export default { 40 ], "team_kdr": [ - 1777 + 1841 ], "total_deaths": [ 40 @@ -136766,16 +142239,16 @@ export default { 40 ], "tournament_stage_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_sum_fields": { @@ -136816,7 +142289,7 @@ export default { 40 ], "team_kdr": [ - 1777 + 1841 ], "total_deaths": [ 40 @@ -136828,75 +142301,75 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_sum_order_by": { "group_number": [ - 3094 + 3377 ], "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5933 + 6221 ], "_set": [ - 5953 + 6241 ], "where": [ - 5931 + 6219 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_var_pop_fields": { @@ -136949,60 +142422,60 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 3094 + 3377 ], "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_var_samp_fields": { @@ -137055,60 +142528,60 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 3094 + 3377 ], "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_variance_fields": { @@ -137161,60 +142634,60 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_stage_results_variance_order_by": { "group_number": [ - 3094 + 3377 ], "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "placement": [ - 3094 + 3377 ], "rank": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results": { @@ -137246,10 +142719,10 @@ export default { 40 ], "team": [ - 5064 + 5352 ], "team_kdr": [ - 1777 + 1841 ], "total_deaths": [ 40 @@ -137258,248 +142731,248 @@ export default { 40 ], "tournament": [ - 5106 + 5394 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5986 + 6274 ], "nodes": [ - 5972 + 6260 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5975 + 6263 ], "corr": [ - 5976 + 6264 ], "count": [ - 5978 + 6266 ], "covar_samp": [ - 5979 + 6267 ], "max": [ - 5981 + 6269 ], "min": [ - 5982 + 6270 ], "stddev_samp": [ - 5983 + 6271 ], "sum": [ - 5984 + 6272 ], "var_samp": [ - 5985 + 6273 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5999 + 6287 ], "distinct": [ 5 ], "filter": [ - 5991 + 6279 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5977 + 6265 ], "distinct": [ 5 ], "filter": [ - 5991 + 6279 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 6000 + 6288 ], "Y": [ - 6000 + 6288 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5998 + 6286 ], "distinct": [ 5 ], "filter": [ - 5991 + 6279 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5980 + 6268 ], "distinct": [ 5 ], "filter": [ - 5991 + 6279 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 6001 + 6289 ], "Y": [ - 6001 + 6289 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 6002 + 6290 ], "distinct": [ 5 ], "filter": [ - 5991 + 6279 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 6003 + 6291 ], "distinct": [ 5 ], "filter": [ - 5991 + 6279 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 6004 + 6292 ], "distinct": [ 5 ], "filter": [ - 5991 + 6279 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 6005 + 6293 ], "distinct": [ 5 ], "filter": [ - 5991 + 6279 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 6006 + 6294 ], "distinct": [ 5 ], "filter": [ - 5991 + 6279 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5989 + 6277 ], "count": [ 40, { "columns": [ - 5998, + 6286, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -137508,80 +142981,80 @@ export default { } ], "max": [ - 5993 + 6281 ], "min": [ - 5995 + 6283 ], "stddev": [ - 6007 + 6295 ], "stddev_pop": [ - 6009 + 6297 ], "stddev_samp": [ - 6011 + 6299 ], "sum": [ - 6015 + 6303 ], "var_pop": [ - 6017 + 6305 ], "var_samp": [ - 6019 + 6307 ], "variance": [ - 6021 + 6309 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5990 + 6278 ], "count": [ - 3094 + 3377 ], "max": [ - 5994 + 6282 ], "min": [ - 5996 + 6284 ], "stddev": [ - 6008 + 6296 ], "stddev_pop": [ - 6010 + 6298 ], "stddev_samp": [ - 6012 + 6300 ], "sum": [ - 6016 + 6304 ], "var_pop": [ - 6018 + 6306 ], "var_samp": [ - 6020 + 6308 ], "variance": [ - 6022 + 6310 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5992 + 6280 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_avg_fields": { @@ -137625,62 +143098,62 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_bool_exp": { "_and": [ - 5991 + 6279 ], "_not": [ - 5991 + 6279 ], "_or": [ - 5991 + 6279 ], "head_to_head_match_wins": [ 41 @@ -137710,10 +143183,10 @@ export default { 41 ], "team": [ - 5073 + 5361 ], "team_kdr": [ - 1778 + 1842 ], "total_deaths": [ 41 @@ -137722,19 +143195,19 @@ export default { 41 ], "tournament": [ - 5127 + 5415 ], "tournament_id": [ - 5172 + 5460 ], "tournament_team_id": [ - 5172 + 5460 ], "wins": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_insert_input": { @@ -137766,10 +143239,10 @@ export default { 40 ], "team": [ - 5082 + 5370 ], "team_kdr": [ - 1777 + 1841 ], "total_deaths": [ 40 @@ -137778,19 +143251,19 @@ export default { 40 ], "tournament": [ - 5136 + 5424 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_max_fields": { @@ -137822,7 +143295,7 @@ export default { 40 ], "team_kdr": [ - 1777 + 1841 ], "total_deaths": [ 40 @@ -137831,66 +143304,66 @@ export default { 40 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_min_fields": { @@ -137922,7 +143395,7 @@ export default { 40 ], "team_kdr": [ - 1777 + 1841 ], "total_deaths": [ 40 @@ -137931,122 +143404,122 @@ export default { 40 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team": [ - 5084 + 5372 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "tournament": [ - 5138 + 5426 ], "tournament_id": [ - 3094 + 3377 ], "tournament_team_id": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_select_column": {}, @@ -138099,51 +143572,51 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_stddev_pop_fields": { @@ -138187,51 +143660,51 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_stddev_samp_fields": { @@ -138275,62 +143748,62 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 6014 + 6302 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_stream_cursor_value_input": { @@ -138362,7 +143835,7 @@ export default { 40 ], "team_kdr": [ - 1777 + 1841 ], "total_deaths": [ 40 @@ -138371,16 +143844,16 @@ export default { 40 ], "tournament_id": [ - 5170 + 5458 ], "tournament_team_id": [ - 5170 + 5458 ], "wins": [ 40 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_sum_fields": { @@ -138412,7 +143885,7 @@ export default { 40 ], "team_kdr": [ - 1777 + 1841 ], "total_deaths": [ 40 @@ -138424,51 +143897,51 @@ export default { 40 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_var_pop_fields": { @@ -138512,51 +143985,51 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_var_samp_fields": { @@ -138600,51 +144073,51 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_variance_fields": { @@ -138688,51 +144161,51 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 3094 + 3377 ], "head_to_head_rounds_won": [ - 3094 + 3377 ], "losses": [ - 3094 + 3377 ], "maps_lost": [ - 3094 + 3377 ], "maps_won": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "matches_remaining": [ - 3094 + 3377 ], "rounds_lost": [ - 3094 + 3377 ], "rounds_won": [ - 3094 + 3377 ], "team_kdr": [ - 3094 + 3377 ], "total_deaths": [ - 3094 + 3377 ], "total_kills": [ - 3094 + 3377 ], "wins": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats": { @@ -138743,13 +144216,13 @@ export default { 40 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 @@ -138758,248 +144231,248 @@ export default { 40 ], "player": [ - 4052 + 4335 ], "player_steam_id": [ - 264 + 268 ], "tournament": [ - 5106 + 5394 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 6037 + 6325 ], "nodes": [ - 6023 + 6311 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 6026 + 6314 ], "corr": [ - 6027 + 6315 ], "count": [ - 6029 + 6317 ], "covar_samp": [ - 6030 + 6318 ], "max": [ - 6032 + 6320 ], "min": [ - 6033 + 6321 ], "stddev_samp": [ - 6034 + 6322 ], "sum": [ - 6035 + 6323 ], "var_samp": [ - 6036 + 6324 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 6050 + 6338 ], "distinct": [ 5 ], "filter": [ - 6042 + 6330 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 6028 + 6316 ], "distinct": [ 5 ], "filter": [ - 6042 + 6330 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 6051 + 6339 ], "Y": [ - 6051 + 6339 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 6049 + 6337 ], "distinct": [ 5 ], "filter": [ - 6042 + 6330 ], "predicate": [ 41 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 6031 + 6319 ], "distinct": [ 5 ], "filter": [ - 6042 + 6330 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 6052 + 6340 ], "Y": [ - 6052 + 6340 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 6053 + 6341 ], "distinct": [ 5 ], "filter": [ - 6042 + 6330 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 6054 + 6342 ], "distinct": [ 5 ], "filter": [ - 6042 + 6330 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 6055 + 6343 ], "distinct": [ 5 ], "filter": [ - 6042 + 6330 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 6056 + 6344 ], "distinct": [ 5 ], "filter": [ - 6042 + 6330 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 6057 + 6345 ], "distinct": [ 5 ], "filter": [ - 6042 + 6330 ], "predicate": [ - 1778 + 1842 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 6040 + 6328 ], "count": [ 40, { "columns": [ - 6049, + 6337, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -139008,80 +144481,80 @@ export default { } ], "max": [ - 6044 + 6332 ], "min": [ - 6046 + 6334 ], "stddev": [ - 6058 + 6346 ], "stddev_pop": [ - 6060 + 6348 ], "stddev_samp": [ - 6062 + 6350 ], "sum": [ - 6066 + 6354 ], "var_pop": [ - 6068 + 6356 ], "var_samp": [ - 6070 + 6358 ], "variance": [ - 6072 + 6360 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 6041 + 6329 ], "count": [ - 3094 + 3377 ], "max": [ - 6045 + 6333 ], "min": [ - 6047 + 6335 ], "stddev": [ - 6059 + 6347 ], "stddev_pop": [ - 6061 + 6349 ], "stddev_samp": [ - 6063 + 6351 ], "sum": [ - 6067 + 6355 ], "var_pop": [ - 6069 + 6357 ], "var_samp": [ - 6071 + 6359 ], "variance": [ - 6073 + 6361 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 6043 + 6331 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_avg_fields": { @@ -139110,47 +144583,47 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_bool_exp": { "_and": [ - 6042 + 6330 ], "_not": [ - 6042 + 6330 ], "_or": [ - 6042 + 6330 ], "assists": [ 41 @@ -139159,13 +144632,13 @@ export default { 41 ], "headshot_percentage": [ - 1778 + 1842 ], "headshots": [ 41 ], "kdr": [ - 1778 + 1842 ], "kills": [ 41 @@ -139174,19 +144647,19 @@ export default { 41 ], "player": [ - 4056 + 4339 ], "player_steam_id": [ - 266 + 270 ], "tournament": [ - 5127 + 5415 ], "tournament_id": [ - 5172 + 5460 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_insert_input": { @@ -139197,13 +144670,13 @@ export default { 40 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 @@ -139212,19 +144685,19 @@ export default { 40 ], "player": [ - 4063 + 4346 ], "player_steam_id": [ - 264 + 268 ], "tournament": [ - 5136 + 5424 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_max_fields": { @@ -139235,13 +144708,13 @@ export default { 40 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 @@ -139250,45 +144723,45 @@ export default { 40 ], "player_steam_id": [ - 264 + 268 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_max_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_min_fields": { @@ -139299,13 +144772,13 @@ export default { 40 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 @@ -139314,83 +144787,83 @@ export default { 40 ], "player_steam_id": [ - 264 + 268 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_min_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player": [ - 4065 + 4348 ], "player_steam_id": [ - 3094 + 3377 ], "tournament": [ - 5138 + 5426 ], "tournament_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_select_column": {}, @@ -139428,36 +144901,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_stddev_pop_fields": { @@ -139486,36 +144959,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_stddev_samp_fields": { @@ -139544,47 +145017,47 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 6065 + 6353 ], "ordering": [ - 347 + 351 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_stream_cursor_value_input": { @@ -139595,13 +145068,13 @@ export default { 40 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 @@ -139610,13 +145083,13 @@ export default { 40 ], "player_steam_id": [ - 264 + 268 ], "tournament_id": [ - 5170 + 5458 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_sum_fields": { @@ -139627,13 +145100,13 @@ export default { 40 ], "headshot_percentage": [ - 1777 + 1841 ], "headshots": [ 40 ], "kdr": [ - 1777 + 1841 ], "kills": [ 40 @@ -139642,39 +145115,39 @@ export default { 40 ], "player_steam_id": [ - 264 + 268 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_var_pop_fields": { @@ -139703,36 +145176,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_var_samp_fields": { @@ -139761,36 +145234,36 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_variance_fields": { @@ -139819,44 +145292,44 @@ export default { 31 ], "__typename": [ - 80 + 83 ] }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 3094 + 3377 ], "deaths": [ - 3094 + 3377 ], "headshot_percentage": [ - 3094 + 3377 ], "headshots": [ - 3094 + 3377 ], "kdr": [ - 3094 + 3377 ], "kills": [ - 3094 + 3377 ], "matches_played": [ - 3094 + 3377 ], "player_steam_id": [ - 3094 + 3377 ], "__typename": [ - 80 + 83 ] }, "Query": { "_map_pool": [ - 107, + 111, { "distinct_on": [ - 119, + 123, "[_map_pool_select_column!]" ], "limit": [ @@ -139866,19 +145339,19 @@ export default { 40 ], "order_by": [ - 117, + 121, "[_map_pool_order_by!]" ], "where": [ - 110 + 114 ] } ], "_map_pool_aggregate": [ - 108, + 112, { "distinct_on": [ - 119, + 123, "[_map_pool_select_column!]" ], "limit": [ @@ -139888,32 +145361,32 @@ export default { 40 ], "order_by": [ - 117, + 121, "[_map_pool_order_by!]" ], "where": [ - 110 + 114 ] } ], "_map_pool_by_pk": [ - 107, + 111, { "map_id": [ - 5170, + 5458, "uuid!" ], "map_pool_id": [ - 5170, + 5458, "uuid!" ] } ], "abandoned_matches": [ - 126, + 130, { "distinct_on": [ - 147, + 151, "[abandoned_matches_select_column!]" ], "limit": [ @@ -139923,19 +145396,19 @@ export default { 40 ], "order_by": [ - 145, + 149, "[abandoned_matches_order_by!]" ], "where": [ - 135 + 139 ] } ], "abandoned_matches_aggregate": [ - 127, + 131, { "distinct_on": [ - 147, + 151, "[abandoned_matches_select_column!]" ], "limit": [ @@ -139945,28 +145418,28 @@ export default { 40 ], "order_by": [ - 145, + 149, "[abandoned_matches_order_by!]" ], "where": [ - 135 + 139 ] } ], "abandoned_matches_by_pk": [ - 126, + 130, { "id": [ - 5170, + 5458, "uuid!" ] } ], "api_keys": [ - 167, + 171, { "distinct_on": [ - 181, + 185, "[api_keys_select_column!]" ], "limit": [ @@ -139976,19 +145449,19 @@ export default { 40 ], "order_by": [ - 179, + 183, "[api_keys_order_by!]" ], "where": [ - 171 + 175 ] } ], "api_keys_aggregate": [ - 168, + 172, { "distinct_on": [ - 181, + 185, "[api_keys_select_column!]" ], "limit": [ @@ -139998,28 +145471,28 @@ export default { 40 ], "order_by": [ - 179, + 183, "[api_keys_order_by!]" ], "where": [ - 171 + 175 ] } ], "api_keys_by_pk": [ - 167, + 171, { "id": [ - 5170, + 5458, "uuid!" ] } ], "award_recipients": [ - 195, + 199, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -140029,19 +145502,19 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "award_recipients_aggregate": [ - 196, + 200, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -140051,28 +145524,28 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "award_recipients_by_pk": [ - 195, + 199, { "id": [ - 5170, + 5458, "uuid!" ] } ], "awards": [ - 236, + 240, { "distinct_on": [ - 251, + 255, "[awards_select_column!]" ], "limit": [ @@ -140082,19 +145555,19 @@ export default { 40 ], "order_by": [ - 249, + 253, "[awards_order_by!]" ], "where": [ - 240 + 244 ] } ], "awards_aggregate": [ - 237, + 241, { "distinct_on": [ - 251, + 255, "[awards_select_column!]" ], "limit": [ @@ -140104,28 +145577,28 @@ export default { 40 ], "order_by": [ - 249, + 253, "[awards_order_by!]" ], "where": [ - 240 + 244 ] } ], "awards_by_pk": [ - 236, + 240, { "id": [ - 5170, + 5458, "uuid!" ] } ], "chat_read_state": [ - 269, + 273, { "distinct_on": [ - 283, + 287, "[chat_read_state_select_column!]" ], "limit": [ @@ -140135,19 +145608,19 @@ export default { 40 ], "order_by": [ - 281, + 285, "[chat_read_state_order_by!]" ], "where": [ - 273 + 277 ] } ], "chat_read_state_aggregate": [ - 270, + 274, { "distinct_on": [ - 283, + 287, "[chat_read_state_select_column!]" ], "limit": [ @@ -140157,32 +145630,32 @@ export default { 40 ], "order_by": [ - 281, + 285, "[chat_read_state_order_by!]" ], "where": [ - 273 + 277 ] } ], "chat_read_state_by_pk": [ - 269, + 273, { "steam_id": [ - 264, + 268, "bigint!" ], "thread": [ - 80, + 83, "String!" ] } ], "clip_render_jobs": [ - 296, + 300, { "distinct_on": [ - 324, + 328, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -140192,19 +145665,19 @@ export default { 40 ], "order_by": [ - 321, + 325, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 312 ] } ], "clip_render_jobs_aggregate": [ - 297, + 301, { "distinct_on": [ - 324, + 328, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -140214,28 +145687,28 @@ export default { 40 ], "order_by": [ - 321, + 325, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 312 ] } ], "clip_render_jobs_by_pk": [ - 296, + 300, { "id": [ - 5170, + 5458, "uuid!" ] } ], "custom_pages": [ - 348, + 352, { "distinct_on": [ - 367, + 371, "[custom_pages_select_column!]" ], "limit": [ @@ -140245,19 +145718,19 @@ export default { 40 ], "order_by": [ - 364, + 368, "[custom_pages_order_by!]" ], "where": [ - 353 + 357 ] } ], "custom_pages_aggregate": [ - 349, + 353, { "distinct_on": [ - 367, + 371, "[custom_pages_select_column!]" ], "limit": [ @@ -140267,19 +145740,19 @@ export default { 40 ], "order_by": [ - 364, + 368, "[custom_pages_order_by!]" ], "where": [ - 353 + 357 ] } ], "custom_pages_by_pk": [ - 348, + 352, { "id": [ - 5170, + 5458, "uuid!" ] } @@ -140288,10 +145761,10 @@ export default { 19 ], "db_backups": [ - 380, + 384, { "distinct_on": [ - 394, + 398, "[db_backups_select_column!]" ], "limit": [ @@ -140301,19 +145774,19 @@ export default { 40 ], "order_by": [ - 392, + 396, "[db_backups_order_by!]" ], "where": [ - 384 + 388 ] } ], "db_backups_aggregate": [ - 381, + 385, { "distinct_on": [ - 394, + 398, "[db_backups_select_column!]" ], "limit": [ @@ -140323,28 +145796,28 @@ export default { 40 ], "order_by": [ - 392, + 396, "[db_backups_order_by!]" ], "where": [ - 384 + 388 ] } ], "db_backups_by_pk": [ - 380, + 384, { "id": [ - 5170, + 5458, "uuid!" ] } ], "direct_conversations": [ - 407, + 411, { "distinct_on": [ - 421, + 425, "[direct_conversations_select_column!]" ], "limit": [ @@ -140354,19 +145827,19 @@ export default { 40 ], "order_by": [ - 419, + 423, "[direct_conversations_order_by!]" ], "where": [ - 411 + 415 ] } ], "direct_conversations_aggregate": [ - 408, + 412, { "distinct_on": [ - 421, + 425, "[direct_conversations_select_column!]" ], "limit": [ @@ -140376,32 +145849,32 @@ export default { 40 ], "order_by": [ - 419, + 423, "[direct_conversations_order_by!]" ], "where": [ - 411 + 415 ] } ], "direct_conversations_by_pk": [ - 407, + 411, { "room_id": [ - 80, + 83, "String!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "direct_messages": [ - 434, + 438, { "distinct_on": [ - 448, + 452, "[direct_messages_select_column!]" ], "limit": [ @@ -140411,19 +145884,19 @@ export default { 40 ], "order_by": [ - 446, + 450, "[direct_messages_order_by!]" ], "where": [ - 438 + 442 ] } ], "direct_messages_aggregate": [ - 435, + 439, { "distinct_on": [ - 448, + 452, "[direct_messages_select_column!]" ], "limit": [ @@ -140433,28 +145906,28 @@ export default { 40 ], "order_by": [ - 446, + 450, "[direct_messages_order_by!]" ], "where": [ - 438 + 442 ] } ], "direct_messages_by_pk": [ - 434, + 438, { "id": [ - 5170, + 5458, "uuid!" ] } ], "draft_game_picks": [ - 461, + 465, { "distinct_on": [ - 484, + 488, "[draft_game_picks_select_column!]" ], "limit": [ @@ -140464,19 +145937,19 @@ export default { 40 ], "order_by": [ - 482, + 486, "[draft_game_picks_order_by!]" ], "where": [ - 472 + 476 ] } ], "draft_game_picks_aggregate": [ - 462, + 466, { "distinct_on": [ - 484, + 488, "[draft_game_picks_select_column!]" ], "limit": [ @@ -140486,28 +145959,28 @@ export default { 40 ], "order_by": [ - 482, + 486, "[draft_game_picks_order_by!]" ], "where": [ - 472 + 476 ] } ], "draft_game_picks_by_pk": [ - 461, + 465, { "id": [ - 5170, + 5458, "uuid!" ] } ], "draft_game_players": [ - 506, + 510, { "distinct_on": [ - 529, + 533, "[draft_game_players_select_column!]" ], "limit": [ @@ -140517,19 +145990,19 @@ export default { 40 ], "order_by": [ - 527, + 531, "[draft_game_players_order_by!]" ], "where": [ - 517 + 521 ] } ], "draft_game_players_aggregate": [ - 507, + 511, { "distinct_on": [ - 529, + 533, "[draft_game_players_select_column!]" ], "limit": [ @@ -140539,32 +146012,32 @@ export default { 40 ], "order_by": [ - 527, + 531, "[draft_game_players_order_by!]" ], "where": [ - 517 + 521 ] } ], "draft_game_players_by_pk": [ - 506, + 510, { "draft_game_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "draft_games": [ - 551, + 555, { "distinct_on": [ - 575, + 579, "[draft_games_select_column!]" ], "limit": [ @@ -140574,19 +146047,19 @@ export default { 40 ], "order_by": [ - 573, + 577, "[draft_games_order_by!]" ], "where": [ - 562 + 566 ] } ], "draft_games_aggregate": [ - 552, + 556, { "distinct_on": [ - 575, + 579, "[draft_games_select_column!]" ], "limit": [ @@ -140596,28 +146069,28 @@ export default { 40 ], "order_by": [ - 573, + 577, "[draft_games_order_by!]" ], "where": [ - 562 + 566 ] } ], "draft_games_by_pk": [ - 551, + 555, { "id": [ - 5170, + 5458, "uuid!" ] } ], "e_award_sources": [ - 597, + 601, { "distinct_on": [ - 611, + 615, "[e_award_sources_select_column!]" ], "limit": [ @@ -140627,19 +146100,19 @@ export default { 40 ], "order_by": [ - 609, + 613, "[e_award_sources_order_by!]" ], "where": [ - 600 + 604 ] } ], "e_award_sources_aggregate": [ - 598, + 602, { "distinct_on": [ - 611, + 615, "[e_award_sources_select_column!]" ], "limit": [ @@ -140649,28 +146122,28 @@ export default { 40 ], "order_by": [ - 609, + 613, "[e_award_sources_order_by!]" ], "where": [ - 600 + 604 ] } ], "e_award_sources_by_pk": [ - 597, + 601, { "value": [ - 80, + 83, "String!" ] } ], "e_award_tiers": [ - 617, + 621, { "distinct_on": [ - 631, + 635, "[e_award_tiers_select_column!]" ], "limit": [ @@ -140680,19 +146153,19 @@ export default { 40 ], "order_by": [ - 629, + 633, "[e_award_tiers_order_by!]" ], "where": [ - 620 + 624 ] } ], "e_award_tiers_aggregate": [ - 618, + 622, { "distinct_on": [ - 631, + 635, "[e_award_tiers_select_column!]" ], "limit": [ @@ -140702,28 +146175,28 @@ export default { 40 ], "order_by": [ - 629, + 633, "[e_award_tiers_order_by!]" ], "where": [ - 620 + 624 ] } ], "e_award_tiers_by_pk": [ - 617, + 621, { "value": [ - 80, + 83, "String!" ] } ], "e_check_in_settings": [ - 637, + 641, { "distinct_on": [ - 651, + 655, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -140733,19 +146206,19 @@ export default { 40 ], "order_by": [ - 649, + 653, "[e_check_in_settings_order_by!]" ], "where": [ - 640 + 644 ] } ], "e_check_in_settings_aggregate": [ - 638, + 642, { "distinct_on": [ - 651, + 655, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -140755,28 +146228,28 @@ export default { 40 ], "order_by": [ - 649, + 653, "[e_check_in_settings_order_by!]" ], "where": [ - 640 + 644 ] } ], "e_check_in_settings_by_pk": [ - 637, + 641, { "value": [ - 80, + 83, "String!" ] } ], "e_draft_game_captain_selection": [ - 657, + 661, { "distinct_on": [ - 672, + 676, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -140786,19 +146259,19 @@ export default { 40 ], "order_by": [ - 670, + 674, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 660 + 664 ] } ], "e_draft_game_captain_selection_aggregate": [ - 658, + 662, { "distinct_on": [ - 672, + 676, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -140808,28 +146281,28 @@ export default { 40 ], "order_by": [ - 670, + 674, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 660 + 664 ] } ], "e_draft_game_captain_selection_by_pk": [ - 657, + 661, { "value": [ - 80, + 83, "String!" ] } ], "e_draft_game_draft_order": [ - 678, + 682, { "distinct_on": [ - 693, + 697, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -140839,19 +146312,19 @@ export default { 40 ], "order_by": [ - 691, + 695, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 681 + 685 ] } ], "e_draft_game_draft_order_aggregate": [ - 679, + 683, { "distinct_on": [ - 693, + 697, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -140861,28 +146334,28 @@ export default { 40 ], "order_by": [ - 691, + 695, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 681 + 685 ] } ], "e_draft_game_draft_order_by_pk": [ - 678, + 682, { "value": [ - 80, + 83, "String!" ] } ], "e_draft_game_mode": [ - 699, + 703, { "distinct_on": [ - 714, + 718, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -140892,19 +146365,19 @@ export default { 40 ], "order_by": [ - 712, + 716, "[e_draft_game_mode_order_by!]" ], "where": [ - 702 + 706 ] } ], "e_draft_game_mode_aggregate": [ - 700, + 704, { "distinct_on": [ - 714, + 718, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -140914,28 +146387,28 @@ export default { 40 ], "order_by": [ - 712, + 716, "[e_draft_game_mode_order_by!]" ], "where": [ - 702 + 706 ] } ], "e_draft_game_mode_by_pk": [ - 699, + 703, { "value": [ - 80, + 83, "String!" ] } ], "e_draft_game_player_status": [ - 720, + 724, { "distinct_on": [ - 735, + 739, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -140945,19 +146418,19 @@ export default { 40 ], "order_by": [ - 733, + 737, "[e_draft_game_player_status_order_by!]" ], "where": [ - 723 + 727 ] } ], "e_draft_game_player_status_aggregate": [ - 721, + 725, { "distinct_on": [ - 735, + 739, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -140967,28 +146440,28 @@ export default { 40 ], "order_by": [ - 733, + 737, "[e_draft_game_player_status_order_by!]" ], "where": [ - 723 + 727 ] } ], "e_draft_game_player_status_by_pk": [ - 720, + 724, { "value": [ - 80, + 83, "String!" ] } ], "e_draft_game_status": [ - 741, + 745, { "distinct_on": [ - 756, + 760, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -140998,19 +146471,19 @@ export default { 40 ], "order_by": [ - 754, + 758, "[e_draft_game_status_order_by!]" ], "where": [ - 744 + 748 ] } ], "e_draft_game_status_aggregate": [ - 742, + 746, { "distinct_on": [ - 756, + 760, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -141020,28 +146493,28 @@ export default { 40 ], "order_by": [ - 754, + 758, "[e_draft_game_status_order_by!]" ], "where": [ - 744 + 748 ] } ], "e_draft_game_status_by_pk": [ - 741, + 745, { "value": [ - 80, + 83, "String!" ] } ], "e_event_media_access": [ - 762, + 766, { "distinct_on": [ - 776, + 780, "[e_event_media_access_select_column!]" ], "limit": [ @@ -141051,19 +146524,19 @@ export default { 40 ], "order_by": [ - 774, + 778, "[e_event_media_access_order_by!]" ], "where": [ - 765 + 769 ] } ], "e_event_media_access_aggregate": [ - 763, + 767, { "distinct_on": [ - 776, + 780, "[e_event_media_access_select_column!]" ], "limit": [ @@ -141073,28 +146546,28 @@ export default { 40 ], "order_by": [ - 774, + 778, "[e_event_media_access_order_by!]" ], "where": [ - 765 + 769 ] } ], "e_event_media_access_by_pk": [ - 762, + 766, { "value": [ - 80, + 83, "String!" ] } ], "e_event_visibility": [ - 782, + 786, { "distinct_on": [ - 796, + 800, "[e_event_visibility_select_column!]" ], "limit": [ @@ -141104,19 +146577,19 @@ export default { 40 ], "order_by": [ - 794, + 798, "[e_event_visibility_order_by!]" ], "where": [ - 785 + 789 ] } ], "e_event_visibility_aggregate": [ - 783, + 787, { "distinct_on": [ - 796, + 800, "[e_event_visibility_select_column!]" ], "limit": [ @@ -141126,28 +146599,28 @@ export default { 40 ], "order_by": [ - 794, + 798, "[e_event_visibility_order_by!]" ], "where": [ - 785 + 789 ] } ], "e_event_visibility_by_pk": [ - 782, + 786, { "value": [ - 80, + 83, "String!" ] } ], "e_friend_status": [ - 802, + 806, { "distinct_on": [ - 817, + 821, "[e_friend_status_select_column!]" ], "limit": [ @@ -141157,19 +146630,19 @@ export default { 40 ], "order_by": [ - 815, + 819, "[e_friend_status_order_by!]" ], "where": [ - 805 + 809 ] } ], "e_friend_status_aggregate": [ - 803, + 807, { "distinct_on": [ - 817, + 821, "[e_friend_status_select_column!]" ], "limit": [ @@ -141179,28 +146652,28 @@ export default { 40 ], "order_by": [ - 815, + 819, "[e_friend_status_order_by!]" ], "where": [ - 805 + 809 ] } ], "e_friend_status_by_pk": [ - 802, + 806, { "value": [ - 80, + 83, "String!" ] } ], "e_game_cfg_types": [ - 823, + 827, { "distinct_on": [ - 837, + 841, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -141210,19 +146683,19 @@ export default { 40 ], "order_by": [ - 835, + 839, "[e_game_cfg_types_order_by!]" ], "where": [ - 826 + 830 ] } ], "e_game_cfg_types_aggregate": [ - 824, + 828, { "distinct_on": [ - 837, + 841, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -141232,28 +146705,187 @@ export default { 40 ], "order_by": [ - 835, + 839, "[e_game_cfg_types_order_by!]" ], "where": [ - 826 + 830 ] } ], "e_game_cfg_types_by_pk": [ - 823, + 827, + { + "value": [ + 83, + "String!" + ] + } + ], + "e_game_plugin_channels": [ + 847, + { + "distinct_on": [ + 861, + "[e_game_plugin_channels_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 859, + "[e_game_plugin_channels_order_by!]" + ], + "where": [ + 850 + ] + } + ], + "e_game_plugin_channels_aggregate": [ + 848, + { + "distinct_on": [ + 861, + "[e_game_plugin_channels_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 859, + "[e_game_plugin_channels_order_by!]" + ], + "where": [ + 850 + ] + } + ], + "e_game_plugin_channels_by_pk": [ + 847, + { + "value": [ + 83, + "String!" + ] + } + ], + "e_game_plugin_install_statuses": [ + 867, + { + "distinct_on": [ + 881, + "[e_game_plugin_install_statuses_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 879, + "[e_game_plugin_install_statuses_order_by!]" + ], + "where": [ + 870 + ] + } + ], + "e_game_plugin_install_statuses_aggregate": [ + 868, + { + "distinct_on": [ + 881, + "[e_game_plugin_install_statuses_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 879, + "[e_game_plugin_install_statuses_order_by!]" + ], + "where": [ + 870 + ] + } + ], + "e_game_plugin_install_statuses_by_pk": [ + 867, + { + "value": [ + 83, + "String!" + ] + } + ], + "e_game_plugin_kinds": [ + 887, + { + "distinct_on": [ + 901, + "[e_game_plugin_kinds_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 899, + "[e_game_plugin_kinds_order_by!]" + ], + "where": [ + 890 + ] + } + ], + "e_game_plugin_kinds_aggregate": [ + 888, + { + "distinct_on": [ + 901, + "[e_game_plugin_kinds_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 899, + "[e_game_plugin_kinds_order_by!]" + ], + "where": [ + 890 + ] + } + ], + "e_game_plugin_kinds_by_pk": [ + 887, { "value": [ - 80, + 83, "String!" ] } ], "e_game_server_node_statuses": [ - 843, + 907, { "distinct_on": [ - 858, + 922, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -141263,19 +146895,19 @@ export default { 40 ], "order_by": [ - 856, + 920, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 846 + 910 ] } ], "e_game_server_node_statuses_aggregate": [ - 844, + 908, { "distinct_on": [ - 858, + 922, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -141285,28 +146917,28 @@ export default { 40 ], "order_by": [ - 856, + 920, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 846 + 910 ] } ], "e_game_server_node_statuses_by_pk": [ - 843, + 907, { "value": [ - 80, + 83, "String!" ] } ], "e_league_movement_types": [ - 864, + 928, { "distinct_on": [ - 879, + 943, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -141316,19 +146948,19 @@ export default { 40 ], "order_by": [ - 877, + 941, "[e_league_movement_types_order_by!]" ], "where": [ - 867 + 931 ] } ], "e_league_movement_types_aggregate": [ - 865, + 929, { "distinct_on": [ - 879, + 943, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -141338,28 +146970,28 @@ export default { 40 ], "order_by": [ - 877, + 941, "[e_league_movement_types_order_by!]" ], "where": [ - 867 + 931 ] } ], "e_league_movement_types_by_pk": [ - 864, + 928, { "value": [ - 80, + 83, "String!" ] } ], "e_league_proposal_statuses": [ - 885, + 949, { "distinct_on": [ - 900, + 964, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -141369,19 +147001,19 @@ export default { 40 ], "order_by": [ - 898, + 962, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 888 + 952 ] } ], "e_league_proposal_statuses_aggregate": [ - 886, + 950, { "distinct_on": [ - 900, + 964, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -141391,28 +147023,28 @@ export default { 40 ], "order_by": [ - 898, + 962, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 888 + 952 ] } ], "e_league_proposal_statuses_by_pk": [ - 885, + 949, { "value": [ - 80, + 83, "String!" ] } ], "e_league_registration_statuses": [ - 906, + 970, { "distinct_on": [ - 921, + 985, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -141422,19 +147054,19 @@ export default { 40 ], "order_by": [ - 919, + 983, "[e_league_registration_statuses_order_by!]" ], "where": [ - 909 + 973 ] } ], "e_league_registration_statuses_aggregate": [ - 907, + 971, { "distinct_on": [ - 921, + 985, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -141444,28 +147076,28 @@ export default { 40 ], "order_by": [ - 919, + 983, "[e_league_registration_statuses_order_by!]" ], "where": [ - 909 + 973 ] } ], "e_league_registration_statuses_by_pk": [ - 906, + 970, { "value": [ - 80, + 83, "String!" ] } ], "e_league_season_statuses": [ - 927, + 991, { "distinct_on": [ - 942, + 1006, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -141475,19 +147107,19 @@ export default { 40 ], "order_by": [ - 940, + 1004, "[e_league_season_statuses_order_by!]" ], "where": [ - 930 + 994 ] } ], "e_league_season_statuses_aggregate": [ - 928, + 992, { "distinct_on": [ - 942, + 1006, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -141497,28 +147129,28 @@ export default { 40 ], "order_by": [ - 940, + 1004, "[e_league_season_statuses_order_by!]" ], "where": [ - 930 + 994 ] } ], "e_league_season_statuses_by_pk": [ - 927, + 991, { "value": [ - 80, + 83, "String!" ] } ], "e_lobby_access": [ - 948, + 1012, { "distinct_on": [ - 963, + 1027, "[e_lobby_access_select_column!]" ], "limit": [ @@ -141528,19 +147160,19 @@ export default { 40 ], "order_by": [ - 961, + 1025, "[e_lobby_access_order_by!]" ], "where": [ - 951 + 1015 ] } ], "e_lobby_access_aggregate": [ - 949, + 1013, { "distinct_on": [ - 963, + 1027, "[e_lobby_access_select_column!]" ], "limit": [ @@ -141550,28 +147182,28 @@ export default { 40 ], "order_by": [ - 961, + 1025, "[e_lobby_access_order_by!]" ], "where": [ - 951 + 1015 ] } ], "e_lobby_access_by_pk": [ - 948, + 1012, { "value": [ - 80, + 83, "String!" ] } ], "e_lobby_player_status": [ - 969, + 1033, { "distinct_on": [ - 983, + 1047, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -141581,19 +147213,19 @@ export default { 40 ], "order_by": [ - 981, + 1045, "[e_lobby_player_status_order_by!]" ], "where": [ - 972 + 1036 ] } ], "e_lobby_player_status_aggregate": [ - 970, + 1034, { "distinct_on": [ - 983, + 1047, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -141603,28 +147235,28 @@ export default { 40 ], "order_by": [ - 981, + 1045, "[e_lobby_player_status_order_by!]" ], "where": [ - 972 + 1036 ] } ], "e_lobby_player_status_by_pk": [ - 969, + 1033, { "value": [ - 80, + 83, "String!" ] } ], "e_map_pool_types": [ - 989, + 1053, { "distinct_on": [ - 1004, + 1068, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -141634,19 +147266,19 @@ export default { 40 ], "order_by": [ - 1002, + 1066, "[e_map_pool_types_order_by!]" ], "where": [ - 992 + 1056 ] } ], "e_map_pool_types_aggregate": [ - 990, + 1054, { "distinct_on": [ - 1004, + 1068, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -141656,28 +147288,28 @@ export default { 40 ], "order_by": [ - 1002, + 1066, "[e_map_pool_types_order_by!]" ], "where": [ - 992 + 1056 ] } ], "e_map_pool_types_by_pk": [ - 989, + 1053, { "value": [ - 80, + 83, "String!" ] } ], "e_match_clip_visibility": [ - 1010, + 1074, { "distinct_on": [ - 1024, + 1088, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -141687,19 +147319,19 @@ export default { 40 ], "order_by": [ - 1022, + 1086, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1013 + 1077 ] } ], "e_match_clip_visibility_aggregate": [ - 1011, + 1075, { "distinct_on": [ - 1024, + 1088, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -141709,28 +147341,28 @@ export default { 40 ], "order_by": [ - 1022, + 1086, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1013 + 1077 ] } ], "e_match_clip_visibility_by_pk": [ - 1010, + 1074, { "value": [ - 80, + 83, "String!" ] } ], "e_match_map_status": [ - 1030, + 1094, { "distinct_on": [ - 1045, + 1109, "[e_match_map_status_select_column!]" ], "limit": [ @@ -141740,19 +147372,19 @@ export default { 40 ], "order_by": [ - 1043, + 1107, "[e_match_map_status_order_by!]" ], "where": [ - 1033 + 1097 ] } ], "e_match_map_status_aggregate": [ - 1031, + 1095, { "distinct_on": [ - 1045, + 1109, "[e_match_map_status_select_column!]" ], "limit": [ @@ -141762,28 +147394,28 @@ export default { 40 ], "order_by": [ - 1043, + 1107, "[e_match_map_status_order_by!]" ], "where": [ - 1033 + 1097 ] } ], "e_match_map_status_by_pk": [ - 1030, + 1094, { "value": [ - 80, + 83, "String!" ] } ], "e_match_mode": [ - 1051, + 1115, { "distinct_on": [ - 1065, + 1129, "[e_match_mode_select_column!]" ], "limit": [ @@ -141793,19 +147425,19 @@ export default { 40 ], "order_by": [ - 1063, + 1127, "[e_match_mode_order_by!]" ], "where": [ - 1054 + 1118 ] } ], "e_match_mode_aggregate": [ - 1052, + 1116, { "distinct_on": [ - 1065, + 1129, "[e_match_mode_select_column!]" ], "limit": [ @@ -141815,28 +147447,28 @@ export default { 40 ], "order_by": [ - 1063, + 1127, "[e_match_mode_order_by!]" ], "where": [ - 1054 + 1118 ] } ], "e_match_mode_by_pk": [ - 1051, + 1115, { "value": [ - 80, + 83, "String!" ] } ], "e_match_party_sources": [ - 1071, + 1135, { "distinct_on": [ - 1085, + 1149, "[e_match_party_sources_select_column!]" ], "limit": [ @@ -141846,19 +147478,19 @@ export default { 40 ], "order_by": [ - 1083, + 1147, "[e_match_party_sources_order_by!]" ], "where": [ - 1074 + 1138 ] } ], "e_match_party_sources_aggregate": [ - 1072, + 1136, { "distinct_on": [ - 1085, + 1149, "[e_match_party_sources_select_column!]" ], "limit": [ @@ -141868,28 +147500,28 @@ export default { 40 ], "order_by": [ - 1083, + 1147, "[e_match_party_sources_order_by!]" ], "where": [ - 1074 + 1138 ] } ], "e_match_party_sources_by_pk": [ - 1071, + 1135, { "value": [ - 80, + 83, "String!" ] } ], "e_match_status": [ - 1091, + 1155, { "distinct_on": [ - 1106, + 1170, "[e_match_status_select_column!]" ], "limit": [ @@ -141899,19 +147531,19 @@ export default { 40 ], "order_by": [ - 1104, + 1168, "[e_match_status_order_by!]" ], "where": [ - 1094 + 1158 ] } ], "e_match_status_aggregate": [ - 1092, + 1156, { "distinct_on": [ - 1106, + 1170, "[e_match_status_select_column!]" ], "limit": [ @@ -141921,28 +147553,28 @@ export default { 40 ], "order_by": [ - 1104, + 1168, "[e_match_status_order_by!]" ], "where": [ - 1094 + 1158 ] } ], "e_match_status_by_pk": [ - 1091, + 1155, { "value": [ - 80, + 83, "String!" ] } ], "e_match_types": [ - 1112, + 1176, { "distinct_on": [ - 1127, + 1191, "[e_match_types_select_column!]" ], "limit": [ @@ -141952,19 +147584,19 @@ export default { 40 ], "order_by": [ - 1125, + 1189, "[e_match_types_order_by!]" ], "where": [ - 1115 + 1179 ] } ], "e_match_types_aggregate": [ - 1113, + 1177, { "distinct_on": [ - 1127, + 1191, "[e_match_types_select_column!]" ], "limit": [ @@ -141974,28 +147606,28 @@ export default { 40 ], "order_by": [ - 1125, + 1189, "[e_match_types_order_by!]" ], "where": [ - 1115 + 1179 ] } ], "e_match_types_by_pk": [ - 1112, + 1176, { "value": [ - 80, + 83, "String!" ] } ], "e_notification_types": [ - 1133, + 1197, { "distinct_on": [ - 1147, + 1211, "[e_notification_types_select_column!]" ], "limit": [ @@ -142005,19 +147637,19 @@ export default { 40 ], "order_by": [ - 1145, + 1209, "[e_notification_types_order_by!]" ], "where": [ - 1136 + 1200 ] } ], "e_notification_types_aggregate": [ - 1134, + 1198, { "distinct_on": [ - 1147, + 1211, "[e_notification_types_select_column!]" ], "limit": [ @@ -142027,28 +147659,28 @@ export default { 40 ], "order_by": [ - 1145, + 1209, "[e_notification_types_order_by!]" ], "where": [ - 1136 + 1200 ] } ], "e_notification_types_by_pk": [ - 1133, + 1197, { "value": [ - 80, + 83, "String!" ] } ], "e_objective_types": [ - 1153, + 1217, { "distinct_on": [ - 1167, + 1231, "[e_objective_types_select_column!]" ], "limit": [ @@ -142058,19 +147690,19 @@ export default { 40 ], "order_by": [ - 1165, + 1229, "[e_objective_types_order_by!]" ], "where": [ - 1156 + 1220 ] } ], "e_objective_types_aggregate": [ - 1154, + 1218, { "distinct_on": [ - 1167, + 1231, "[e_objective_types_select_column!]" ], "limit": [ @@ -142080,28 +147712,28 @@ export default { 40 ], "order_by": [ - 1165, + 1229, "[e_objective_types_order_by!]" ], "where": [ - 1156 + 1220 ] } ], "e_objective_types_by_pk": [ - 1153, + 1217, { "value": [ - 80, + 83, "String!" ] } ], "e_player_roles": [ - 1173, + 1237, { "distinct_on": [ - 1187, + 1251, "[e_player_roles_select_column!]" ], "limit": [ @@ -142111,19 +147743,19 @@ export default { 40 ], "order_by": [ - 1185, + 1249, "[e_player_roles_order_by!]" ], "where": [ - 1176 + 1240 ] } ], "e_player_roles_aggregate": [ - 1174, + 1238, { "distinct_on": [ - 1187, + 1251, "[e_player_roles_select_column!]" ], "limit": [ @@ -142133,28 +147765,28 @@ export default { 40 ], "order_by": [ - 1185, + 1249, "[e_player_roles_order_by!]" ], "where": [ - 1176 + 1240 ] } ], "e_player_roles_by_pk": [ - 1173, + 1237, { "value": [ - 80, + 83, "String!" ] } ], "e_plugin_runtimes": [ - 1193, + 1257, { "distinct_on": [ - 1207, + 1271, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -142164,19 +147796,19 @@ export default { 40 ], "order_by": [ - 1205, + 1269, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1196 + 1260 ] } ], "e_plugin_runtimes_aggregate": [ - 1194, + 1258, { "distinct_on": [ - 1207, + 1271, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -142186,28 +147818,28 @@ export default { 40 ], "order_by": [ - 1205, + 1269, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1196 + 1260 ] } ], "e_plugin_runtimes_by_pk": [ - 1193, + 1257, { "value": [ - 80, + 83, "String!" ] } ], "e_ready_settings": [ - 1213, + 1277, { "distinct_on": [ - 1227, + 1291, "[e_ready_settings_select_column!]" ], "limit": [ @@ -142217,19 +147849,19 @@ export default { 40 ], "order_by": [ - 1225, + 1289, "[e_ready_settings_order_by!]" ], "where": [ - 1216 + 1280 ] } ], "e_ready_settings_aggregate": [ - 1214, + 1278, { "distinct_on": [ - 1227, + 1291, "[e_ready_settings_select_column!]" ], "limit": [ @@ -142239,28 +147871,28 @@ export default { 40 ], "order_by": [ - 1225, + 1289, "[e_ready_settings_order_by!]" ], "where": [ - 1216 + 1280 ] } ], "e_ready_settings_by_pk": [ - 1213, + 1277, { "value": [ - 80, + 83, "String!" ] } ], "e_sanction_types": [ - 1233, + 1297, { "distinct_on": [ - 1248, + 1312, "[e_sanction_types_select_column!]" ], "limit": [ @@ -142270,19 +147902,19 @@ export default { 40 ], "order_by": [ - 1246, + 1310, "[e_sanction_types_order_by!]" ], "where": [ - 1236 + 1300 ] } ], "e_sanction_types_aggregate": [ - 1234, + 1298, { "distinct_on": [ - 1248, + 1312, "[e_sanction_types_select_column!]" ], "limit": [ @@ -142292,28 +147924,28 @@ export default { 40 ], "order_by": [ - 1246, + 1310, "[e_sanction_types_order_by!]" ], "where": [ - 1236 + 1300 ] } ], "e_sanction_types_by_pk": [ - 1233, + 1297, { "value": [ - 80, + 83, "String!" ] } ], "e_scrim_request_statuses": [ - 1254, + 1318, { "distinct_on": [ - 1268, + 1332, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -142323,19 +147955,19 @@ export default { 40 ], "order_by": [ - 1266, + 1330, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1257 + 1321 ] } ], "e_scrim_request_statuses_aggregate": [ - 1255, + 1319, { "distinct_on": [ - 1268, + 1332, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -142345,28 +147977,28 @@ export default { 40 ], "order_by": [ - 1266, + 1330, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1257 + 1321 ] } ], "e_scrim_request_statuses_by_pk": [ - 1254, + 1318, { "value": [ - 80, + 83, "String!" ] } ], "e_server_types": [ - 1274, + 1338, { "distinct_on": [ - 1288, + 1352, "[e_server_types_select_column!]" ], "limit": [ @@ -142376,19 +148008,19 @@ export default { 40 ], "order_by": [ - 1286, + 1350, "[e_server_types_order_by!]" ], "where": [ - 1277 + 1341 ] } ], "e_server_types_aggregate": [ - 1275, + 1339, { "distinct_on": [ - 1288, + 1352, "[e_server_types_select_column!]" ], "limit": [ @@ -142398,28 +148030,28 @@ export default { 40 ], "order_by": [ - 1286, + 1350, "[e_server_types_order_by!]" ], "where": [ - 1277 + 1341 ] } ], "e_server_types_by_pk": [ - 1274, + 1338, { "value": [ - 80, + 83, "String!" ] } ], "e_sides": [ - 1294, + 1358, { "distinct_on": [ - 1308, + 1372, "[e_sides_select_column!]" ], "limit": [ @@ -142429,19 +148061,19 @@ export default { 40 ], "order_by": [ - 1306, + 1370, "[e_sides_order_by!]" ], "where": [ - 1297 + 1361 ] } ], "e_sides_aggregate": [ - 1295, + 1359, { "distinct_on": [ - 1308, + 1372, "[e_sides_select_column!]" ], "limit": [ @@ -142451,28 +148083,28 @@ export default { 40 ], "order_by": [ - 1306, + 1370, "[e_sides_order_by!]" ], "where": [ - 1297 + 1361 ] } ], "e_sides_by_pk": [ - 1294, + 1358, { "value": [ - 80, + 83, "String!" ] } ], "e_system_alert_types": [ - 1314, + 1378, { "distinct_on": [ - 1328, + 1392, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -142482,19 +148114,19 @@ export default { 40 ], "order_by": [ - 1326, + 1390, "[e_system_alert_types_order_by!]" ], "where": [ - 1317 + 1381 ] } ], "e_system_alert_types_aggregate": [ - 1315, + 1379, { "distinct_on": [ - 1328, + 1392, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -142504,28 +148136,28 @@ export default { 40 ], "order_by": [ - 1326, + 1390, "[e_system_alert_types_order_by!]" ], "where": [ - 1317 + 1381 ] } ], "e_system_alert_types_by_pk": [ - 1314, + 1378, { "value": [ - 80, + 83, "String!" ] } ], "e_team_roles": [ - 1334, + 1398, { "distinct_on": [ - 1349, + 1413, "[e_team_roles_select_column!]" ], "limit": [ @@ -142535,19 +148167,19 @@ export default { 40 ], "order_by": [ - 1347, + 1411, "[e_team_roles_order_by!]" ], "where": [ - 1337 + 1401 ] } ], "e_team_roles_aggregate": [ - 1335, + 1399, { "distinct_on": [ - 1349, + 1413, "[e_team_roles_select_column!]" ], "limit": [ @@ -142557,28 +148189,28 @@ export default { 40 ], "order_by": [ - 1347, + 1411, "[e_team_roles_order_by!]" ], "where": [ - 1337 + 1401 ] } ], "e_team_roles_by_pk": [ - 1334, + 1398, { "value": [ - 80, + 83, "String!" ] } ], "e_team_roster_statuses": [ - 1355, + 1419, { "distinct_on": [ - 1369, + 1433, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -142588,19 +148220,19 @@ export default { 40 ], "order_by": [ - 1367, + 1431, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1358 + 1422 ] } ], "e_team_roster_statuses_aggregate": [ - 1356, + 1420, { "distinct_on": [ - 1369, + 1433, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -142610,28 +148242,28 @@ export default { 40 ], "order_by": [ - 1367, + 1431, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1358 + 1422 ] } ], "e_team_roster_statuses_by_pk": [ - 1355, + 1419, { "value": [ - 80, + 83, "String!" ] } ], "e_timeout_settings": [ - 1375, + 1439, { "distinct_on": [ - 1389, + 1453, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -142641,19 +148273,19 @@ export default { 40 ], "order_by": [ - 1387, + 1451, "[e_timeout_settings_order_by!]" ], "where": [ - 1378 + 1442 ] } ], "e_timeout_settings_aggregate": [ - 1376, + 1440, { "distinct_on": [ - 1389, + 1453, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -142663,28 +148295,28 @@ export default { 40 ], "order_by": [ - 1387, + 1451, "[e_timeout_settings_order_by!]" ], "where": [ - 1378 + 1442 ] } ], "e_timeout_settings_by_pk": [ - 1375, + 1439, { "value": [ - 80, + 83, "String!" ] } ], "e_tournament_categories": [ - 1395, + 1459, { "distinct_on": [ - 1410, + 1474, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -142694,19 +148326,19 @@ export default { 40 ], "order_by": [ - 1408, + 1472, "[e_tournament_categories_order_by!]" ], "where": [ - 1398 + 1462 ] } ], "e_tournament_categories_aggregate": [ - 1396, + 1460, { "distinct_on": [ - 1410, + 1474, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -142716,28 +148348,28 @@ export default { 40 ], "order_by": [ - 1408, + 1472, "[e_tournament_categories_order_by!]" ], "where": [ - 1398 + 1462 ] } ], "e_tournament_categories_by_pk": [ - 1395, + 1459, { "value": [ - 80, + 83, "String!" ] } ], "e_tournament_stage_types": [ - 1416, + 1480, { "distinct_on": [ - 1431, + 1495, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -142747,19 +148379,19 @@ export default { 40 ], "order_by": [ - 1429, + 1493, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1419 + 1483 ] } ], "e_tournament_stage_types_aggregate": [ - 1417, + 1481, { "distinct_on": [ - 1431, + 1495, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -142769,28 +148401,28 @@ export default { 40 ], "order_by": [ - 1429, + 1493, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1419 + 1483 ] } ], "e_tournament_stage_types_by_pk": [ - 1416, + 1480, { "value": [ - 80, + 83, "String!" ] } ], "e_tournament_status": [ - 1437, + 1501, { "distinct_on": [ - 1452, + 1516, "[e_tournament_status_select_column!]" ], "limit": [ @@ -142800,19 +148432,19 @@ export default { 40 ], "order_by": [ - 1450, + 1514, "[e_tournament_status_order_by!]" ], "where": [ - 1440 + 1504 ] } ], "e_tournament_status_aggregate": [ - 1438, + 1502, { "distinct_on": [ - 1452, + 1516, "[e_tournament_status_select_column!]" ], "limit": [ @@ -142822,28 +148454,28 @@ export default { 40 ], "order_by": [ - 1450, + 1514, "[e_tournament_status_order_by!]" ], "where": [ - 1440 + 1504 ] } ], "e_tournament_status_by_pk": [ - 1437, + 1501, { "value": [ - 80, + 83, "String!" ] } ], "e_utility_types": [ - 1458, + 1522, { "distinct_on": [ - 1472, + 1536, "[e_utility_types_select_column!]" ], "limit": [ @@ -142853,19 +148485,19 @@ export default { 40 ], "order_by": [ - 1470, + 1534, "[e_utility_types_order_by!]" ], "where": [ - 1461 + 1525 ] } ], "e_utility_types_aggregate": [ - 1459, + 1523, { "distinct_on": [ - 1472, + 1536, "[e_utility_types_select_column!]" ], "limit": [ @@ -142875,28 +148507,28 @@ export default { 40 ], "order_by": [ - 1470, + 1534, "[e_utility_types_order_by!]" ], "where": [ - 1461 + 1525 ] } ], "e_utility_types_by_pk": [ - 1458, + 1522, { "value": [ - 80, + 83, "String!" ] } ], "e_veto_pick_types": [ - 1478, + 1542, { "distinct_on": [ - 1492, + 1556, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -142906,19 +148538,19 @@ export default { 40 ], "order_by": [ - 1490, + 1554, "[e_veto_pick_types_order_by!]" ], "where": [ - 1481 + 1545 ] } ], "e_veto_pick_types_aggregate": [ - 1479, + 1543, { "distinct_on": [ - 1492, + 1556, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -142928,28 +148560,28 @@ export default { 40 ], "order_by": [ - 1490, + 1554, "[e_veto_pick_types_order_by!]" ], "where": [ - 1481 + 1545 ] } ], "e_veto_pick_types_by_pk": [ - 1478, + 1542, { "value": [ - 80, + 83, "String!" ] } ], "e_winning_reasons": [ - 1498, + 1562, { "distinct_on": [ - 1512, + 1576, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -142959,19 +148591,19 @@ export default { 40 ], "order_by": [ - 1510, + 1574, "[e_winning_reasons_order_by!]" ], "where": [ - 1501 + 1565 ] } ], "e_winning_reasons_aggregate": [ - 1499, + 1563, { "distinct_on": [ - 1512, + 1576, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -142981,28 +148613,28 @@ export default { 40 ], "order_by": [ - 1510, + 1574, "[e_winning_reasons_order_by!]" ], "where": [ - 1501 + 1565 ] } ], "e_winning_reasons_by_pk": [ - 1498, + 1562, { "value": [ - 80, + 83, "String!" ] } ], "event_match_links": [ - 1518, + 1582, { "distinct_on": [ - 1530, + 1594, "[event_match_links_select_column!]" ], "limit": [ @@ -143012,19 +148644,19 @@ export default { 40 ], "order_by": [ - 1528, + 1592, "[event_match_links_order_by!]" ], "where": [ - 1521 + 1585 ] } ], "event_match_links_aggregate": [ - 1519, + 1583, { "distinct_on": [ - 1530, + 1594, "[event_match_links_select_column!]" ], "limit": [ @@ -143034,32 +148666,32 @@ export default { 40 ], "order_by": [ - 1528, + 1592, "[event_match_links_order_by!]" ], "where": [ - 1521 + 1585 ] } ], "event_match_links_by_pk": [ - 1518, + 1582, { "event_id": [ - 5170, + 5458, "uuid!" ], "match_id": [ - 5170, + 5458, "uuid!" ] } ], "event_media": [ - 1536, + 1600, { "distinct_on": [ - 1599, + 1663, "[event_media_select_column!]" ], "limit": [ @@ -143069,19 +148701,19 @@ export default { 40 ], "order_by": [ - 1556, + 1620, "[event_media_order_by!]" ], "where": [ - 1545 + 1609 ] } ], "event_media_aggregate": [ - 1537, + 1601, { "distinct_on": [ - 1599, + 1663, "[event_media_select_column!]" ], "limit": [ @@ -143091,28 +148723,28 @@ export default { 40 ], "order_by": [ - 1556, + 1620, "[event_media_order_by!]" ], "where": [ - 1545 + 1609 ] } ], "event_media_by_pk": [ - 1536, + 1600, { "id": [ - 5170, + 5458, "uuid!" ] } ], "event_media_players": [ - 1558, + 1622, { "distinct_on": [ - 1579, + 1643, "[event_media_players_select_column!]" ], "limit": [ @@ -143122,19 +148754,19 @@ export default { 40 ], "order_by": [ - 1577, + 1641, "[event_media_players_order_by!]" ], "where": [ - 1567 + 1631 ] } ], "event_media_players_aggregate": [ - 1559, + 1623, { "distinct_on": [ - 1579, + 1643, "[event_media_players_select_column!]" ], "limit": [ @@ -143144,32 +148776,32 @@ export default { 40 ], "order_by": [ - 1577, + 1641, "[event_media_players_order_by!]" ], "where": [ - 1567 + 1631 ] } ], "event_media_players_by_pk": [ - 1558, + 1622, { "media_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "event_organizers": [ - 1619, + 1683, { "distinct_on": [ - 1640, + 1704, "[event_organizers_select_column!]" ], "limit": [ @@ -143179,19 +148811,19 @@ export default { 40 ], "order_by": [ - 1638, + 1702, "[event_organizers_order_by!]" ], "where": [ - 1628 + 1692 ] } ], "event_organizers_aggregate": [ - 1620, + 1684, { "distinct_on": [ - 1640, + 1704, "[event_organizers_select_column!]" ], "limit": [ @@ -143201,32 +148833,32 @@ export default { 40 ], "order_by": [ - 1638, + 1702, "[event_organizers_order_by!]" ], "where": [ - 1628 + 1692 ] } ], "event_organizers_by_pk": [ - 1619, + 1683, { "event_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "event_players": [ - 1660, + 1724, { "distinct_on": [ - 1681, + 1745, "[event_players_select_column!]" ], "limit": [ @@ -143236,19 +148868,19 @@ export default { 40 ], "order_by": [ - 1679, + 1743, "[event_players_order_by!]" ], "where": [ - 1669 + 1733 ] } ], "event_players_aggregate": [ - 1661, + 1725, { "distinct_on": [ - 1681, + 1745, "[event_players_select_column!]" ], "limit": [ @@ -143258,32 +148890,32 @@ export default { 40 ], "order_by": [ - 1679, + 1743, "[event_players_order_by!]" ], "where": [ - 1669 + 1733 ] } ], "event_players_by_pk": [ - 1660, + 1724, { "event_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "event_teams": [ - 1701, + 1765, { "distinct_on": [ - 1719, + 1783, "[event_teams_select_column!]" ], "limit": [ @@ -143293,19 +148925,19 @@ export default { 40 ], "order_by": [ - 1717, + 1781, "[event_teams_order_by!]" ], "where": [ - 1708 + 1772 ] } ], "event_teams_aggregate": [ - 1702, + 1766, { "distinct_on": [ - 1719, + 1783, "[event_teams_select_column!]" ], "limit": [ @@ -143315,32 +148947,32 @@ export default { 40 ], "order_by": [ - 1717, + 1781, "[event_teams_order_by!]" ], "where": [ - 1708 + 1772 ] } ], "event_teams_by_pk": [ - 1701, + 1765, { "event_id": [ - 5170, + 5458, "uuid!" ], "team_id": [ - 5170, + 5458, "uuid!" ] } ], "event_tournaments": [ - 1725, + 1789, { "distinct_on": [ - 1743, + 1807, "[event_tournaments_select_column!]" ], "limit": [ @@ -143350,19 +148982,19 @@ export default { 40 ], "order_by": [ - 1741, + 1805, "[event_tournaments_order_by!]" ], "where": [ - 1732 + 1796 ] } ], "event_tournaments_aggregate": [ - 1726, + 1790, { "distinct_on": [ - 1743, + 1807, "[event_tournaments_select_column!]" ], "limit": [ @@ -143372,32 +149004,32 @@ export default { 40 ], "order_by": [ - 1741, + 1805, "[event_tournaments_order_by!]" ], "where": [ - 1732 + 1796 ] } ], "event_tournaments_by_pk": [ - 1725, + 1789, { "event_id": [ - 5170, + 5458, "uuid!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "events": [ - 1749, + 1813, { "distinct_on": [ - 1764, + 1828, "[events_select_column!]" ], "limit": [ @@ -143407,19 +149039,19 @@ export default { 40 ], "order_by": [ - 1762, + 1826, "[events_order_by!]" ], "where": [ - 1753 + 1817 ] } ], "events_aggregate": [ - 1750, + 1814, { "distinct_on": [ - 1764, + 1828, "[events_select_column!]" ], "limit": [ @@ -143429,28 +149061,28 @@ export default { 40 ], "order_by": [ - 1762, + 1826, "[events_order_by!]" ], "where": [ - 1753 + 1817 ] } ], "events_by_pk": [ - 1749, + 1813, { "id": [ - 5170, + 5458, "uuid!" ] } ], "friends": [ - 1779, + 1843, { "distinct_on": [ - 1793, + 1857, "[friends_select_column!]" ], "limit": [ @@ -143460,19 +149092,19 @@ export default { 40 ], "order_by": [ - 1791, + 1855, "[friends_order_by!]" ], "where": [ - 1783 + 1847 ] } ], "friends_aggregate": [ - 1780, + 1844, { "distinct_on": [ - 1793, + 1857, "[friends_select_column!]" ], "limit": [ @@ -143482,32 +149114,362 @@ export default { 40 ], "order_by": [ - 1791, + 1855, "[friends_order_by!]" ], "where": [ - 1783 + 1847 ] } ], "friends_by_pk": [ - 1779, + 1843, { "other_player_steam_id": [ - 264, + 268, "bigint!" ], "player_steam_id": [ - 264, + 268, "bigint!" ] } ], + "game_mode_plugins": [ + 1870, + { + "distinct_on": [ + 1898, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1895, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1882 + ] + } + ], + "game_mode_plugins_aggregate": [ + 1871, + { + "distinct_on": [ + 1898, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1895, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1882 + ] + } + ], + "game_mode_plugins_by_pk": [ + 1870, + { + "game_mode_id": [ + 5458, + "uuid!" + ], + "plugin_slug": [ + 83, + "String!" + ] + } + ], + "game_modes": [ + 1920, + { + "distinct_on": [ + 1938, + "[game_modes_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1935, + "[game_modes_order_by!]" + ], + "where": [ + 1924 + ] + } + ], + "game_modes_aggregate": [ + 1921, + { + "distinct_on": [ + 1938, + "[game_modes_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1935, + "[game_modes_order_by!]" + ], + "where": [ + 1924 + ] + } + ], + "game_modes_by_pk": [ + 1920, + { + "id": [ + 5458, + "uuid!" + ] + } + ], + "game_plugin_installs": [ + 1944, + { + "distinct_on": [ + 1956, + "[game_plugin_installs_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1954, + "[game_plugin_installs_order_by!]" + ], + "where": [ + 1947 + ] + } + ], + "game_plugin_installs_aggregate": [ + 1945, + { + "distinct_on": [ + 1956, + "[game_plugin_installs_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1954, + "[game_plugin_installs_order_by!]" + ], + "where": [ + 1947 + ] + } + ], + "game_plugin_installs_by_pk": [ + 1944, + { + "plugin_slug": [ + 83, + "String!" + ] + } + ], + "game_plugin_versions": [ + 1962, + { + "distinct_on": [ + 1985, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1983, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 1973 + ] + } + ], + "game_plugin_versions_aggregate": [ + 1963, + { + "distinct_on": [ + 1985, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1983, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 1973 + ] + } + ], + "game_plugin_versions_by_pk": [ + 1962, + { + "plugin_slug": [ + 83, + "String!" + ], + "runtime": [ + 1262, + "e_plugin_runtimes_enum!" + ], + "version": [ + 83, + "String!" + ] + } + ], + "game_plugins": [ + 2007, + { + "distinct_on": [ + 2026, + "[game_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2023, + "[game_plugins_order_by!]" + ], + "where": [ + 2012 + ] + } + ], + "game_plugins_aggregate": [ + 2008, + { + "distinct_on": [ + 2026, + "[game_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2023, + "[game_plugins_order_by!]" + ], + "where": [ + 2012 + ] + } + ], + "game_plugins_by_pk": [ + 2007, + { + "slug": [ + 83, + "String!" + ] + } + ], + "game_server_node_plugins": [ + 2039, + { + "distinct_on": [ + 2059, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2057, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2048 + ] + } + ], + "game_server_node_plugins_aggregate": [ + 2040, + { + "distinct_on": [ + 2059, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2057, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2048 + ] + } + ], + "game_server_node_plugins_by_pk": [ + 2039, + { + "id": [ + 5458, + "uuid!" + ] + } + ], "game_server_nodes": [ - 1806, + 2067, { "distinct_on": [ - 1835, + 2096, "[game_server_nodes_select_column!]" ], "limit": [ @@ -143517,19 +149479,19 @@ export default { 40 ], "order_by": [ - 1832, + 2093, "[game_server_nodes_order_by!]" ], "where": [ - 1818 + 2079 ] } ], "game_server_nodes_aggregate": [ - 1807, + 2068, { "distinct_on": [ - 1835, + 2096, "[game_server_nodes_select_column!]" ], "limit": [ @@ -143539,28 +149501,28 @@ export default { 40 ], "order_by": [ - 1832, + 2093, "[game_server_nodes_order_by!]" ], "where": [ - 1818 + 2079 ] } ], "game_server_nodes_by_pk": [ - 1806, + 2067, { "id": [ - 80, + 83, "String!" ] } ], "game_versions": [ - 1857, + 2118, { "distinct_on": [ - 1877, + 2138, "[game_versions_select_column!]" ], "limit": [ @@ -143570,19 +149532,19 @@ export default { 40 ], "order_by": [ - 1874, + 2135, "[game_versions_order_by!]" ], "where": [ - 1862 + 2123 ] } ], "game_versions_aggregate": [ - 1858, + 2119, { "distinct_on": [ - 1877, + 2138, "[game_versions_select_column!]" ], "limit": [ @@ -143592,16 +149554,16 @@ export default { 40 ], "order_by": [ - 1874, + 2135, "[game_versions_order_by!]" ], "where": [ - 1862 + 2123 ] } ], "game_versions_by_pk": [ - 1857, + 2118, { "build_id": [ 40, @@ -143610,10 +149572,10 @@ export default { } ], "gamedata_signature_validations": [ - 1890, + 2151, { "distinct_on": [ - 1909, + 2170, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -143623,19 +149585,19 @@ export default { 40 ], "order_by": [ - 1906, + 2167, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1895 + 2156 ] } ], "gamedata_signature_validations_aggregate": [ - 1891, + 2152, { "distinct_on": [ - 1909, + 2170, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -143645,19 +149607,19 @@ export default { 40 ], "order_by": [ - 1906, + 2167, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1895 + 2156 ] } ], "gamedata_signature_validations_by_pk": [ - 1890, + 2151, { "id": [ - 5170, + 5458, "uuid!" ] } @@ -143681,10 +149643,10 @@ export default { 20 ], "getDedicatedServerPlayers": [ - 70, + 73, { "serverId": [ - 80, + 83, "String!" ] } @@ -143693,11 +149655,11 @@ export default { 36, { "match_map_id": [ - 5170, + 5458, "uuid!" ], "target_steam_id": [ - 80, + 83, "String!" ] } @@ -143706,7 +149668,7 @@ export default { 38, { "schemas": [ - 80, + 83, "[String!]" ] } @@ -143715,7 +149677,7 @@ export default { 39, { "schemas": [ - 80, + 83, "[String!]" ] } @@ -143724,68 +149686,68 @@ export default { 52, { "node": [ - 80, + 83, "String!" ] } ], "getQueryDetail": [ - 58, + 60, { "queryid": [ - 80, + 83, "String!" ] } ], "getQueryStats": [ - 59 + 61 ], "getSchemas": [ - 80 + 83 ], "getServiceStats": [ - 56 + 57 ], "getStorageStats": [ - 78, + 81, { "schemas": [ - 80, + 83, "[String!]" ] } ], "getTableIOStats": [ - 84, + 88, { "schemas": [ - 80, + 83, "[String!]" ] } ], "getTableStats": [ - 86, + 90, { "schemas": [ - 80, + 83, "[String!]" ] } ], "getTimescaleStats": [ - 101 + 105 ], "get_event_leaderboard": [ - 1933, + 2194, { "args": [ - 1922, + 2183, "get_event_leaderboard_args!" ], "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -143795,23 +149757,23 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "get_event_leaderboard_aggregate": [ - 1934, + 2195, { "args": [ - 1922, + 2183, "get_event_leaderboard_args!" ], "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -143821,23 +149783,23 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "get_leaderboard": [ - 1933, + 2194, { "args": [ - 1923, + 2184, "get_leaderboard_args!" ], "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -143847,23 +149809,23 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "get_leaderboard_aggregate": [ - 1934, + 2195, { "args": [ - 1923, + 2184, "get_leaderboard_args!" ], "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -143873,23 +149835,23 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "get_league_season_leaderboard": [ - 1933, + 2194, { "args": [ - 1924, + 2185, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -143899,23 +149861,23 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "get_league_season_leaderboard_aggregate": [ - 1934, + 2195, { "args": [ - 1924, + 2185, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -143925,23 +149887,23 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "get_player_leaderboard_rank": [ - 3535, + 3818, { "args": [ - 1925, + 2186, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3546, + 3829, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -143951,23 +149913,23 @@ export default { 40 ], "order_by": [ - 3545, + 3828, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3822 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3536, + 3819, { "args": [ - 1925, + 2186, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3546, + 3829, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -143977,19 +149939,19 @@ export default { 40 ], "order_by": [ - 3545, + 3828, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3822 ] } ], "leaderboard_entries": [ - 1933, + 2194, { "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -143999,19 +149961,19 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "leaderboard_entries_aggregate": [ - 1934, + 2195, { "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -144021,19 +149983,19 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "league_divisions": [ - 1957, + 2218, { "distinct_on": [ - 1972, + 2233, "[league_divisions_select_column!]" ], "limit": [ @@ -144043,19 +150005,19 @@ export default { 40 ], "order_by": [ - 1970, + 2231, "[league_divisions_order_by!]" ], "where": [ - 1961 + 2222 ] } ], "league_divisions_aggregate": [ - 1958, + 2219, { "distinct_on": [ - 1972, + 2233, "[league_divisions_select_column!]" ], "limit": [ @@ -144065,28 +150027,28 @@ export default { 40 ], "order_by": [ - 1970, + 2231, "[league_divisions_order_by!]" ], "where": [ - 1961 + 2222 ] } ], "league_divisions_by_pk": [ - 1957, + 2218, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_match_weeks": [ - 1985, + 2246, { "distinct_on": [ - 2006, + 2267, "[league_match_weeks_select_column!]" ], "limit": [ @@ -144096,19 +150058,19 @@ export default { 40 ], "order_by": [ - 2004, + 2265, "[league_match_weeks_order_by!]" ], "where": [ - 1994 + 2255 ] } ], "league_match_weeks_aggregate": [ - 1986, + 2247, { "distinct_on": [ - 2006, + 2267, "[league_match_weeks_select_column!]" ], "limit": [ @@ -144118,28 +150080,28 @@ export default { 40 ], "order_by": [ - 2004, + 2265, "[league_match_weeks_order_by!]" ], "where": [ - 1994 + 2255 ] } ], "league_match_weeks_by_pk": [ - 1985, + 2246, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_relegation_playoffs": [ - 2026, + 2287, { "distinct_on": [ - 2047, + 2308, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -144149,19 +150111,19 @@ export default { 40 ], "order_by": [ - 2045, + 2306, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2035 + 2296 ] } ], "league_relegation_playoffs_aggregate": [ - 2027, + 2288, { "distinct_on": [ - 2047, + 2308, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -144171,28 +150133,28 @@ export default { 40 ], "order_by": [ - 2045, + 2306, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2035 + 2296 ] } ], "league_relegation_playoffs_by_pk": [ - 2026, + 2287, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_scheduling_proposals": [ - 2067, + 2328, { "distinct_on": [ - 2088, + 2349, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -144202,19 +150164,19 @@ export default { 40 ], "order_by": [ - 2086, + 2347, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2076 + 2337 ] } ], "league_scheduling_proposals_aggregate": [ - 2068, + 2329, { "distinct_on": [ - 2088, + 2349, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -144224,28 +150186,28 @@ export default { 40 ], "order_by": [ - 2086, + 2347, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2076 + 2337 ] } ], "league_scheduling_proposals_by_pk": [ - 2067, + 2328, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_season_divisions": [ - 2108, + 2369, { "distinct_on": [ - 2127, + 2388, "[league_season_divisions_select_column!]" ], "limit": [ @@ -144255,19 +150217,19 @@ export default { 40 ], "order_by": [ - 2125, + 2386, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2376 ] } ], "league_season_divisions_aggregate": [ - 2109, + 2370, { "distinct_on": [ - 2127, + 2388, "[league_season_divisions_select_column!]" ], "limit": [ @@ -144277,28 +150239,28 @@ export default { 40 ], "order_by": [ - 2125, + 2386, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2376 ] } ], "league_season_divisions_by_pk": [ - 2108, + 2369, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_seasons": [ - 2133, + 2394, { "distinct_on": [ - 2153, + 2414, "[league_seasons_select_column!]" ], "limit": [ @@ -144308,19 +150270,19 @@ export default { 40 ], "order_by": [ - 2150, + 2411, "[league_seasons_order_by!]" ], "where": [ - 2138 + 2399 ] } ], "league_seasons_aggregate": [ - 2134, + 2395, { "distinct_on": [ - 2153, + 2414, "[league_seasons_select_column!]" ], "limit": [ @@ -144330,28 +150292,28 @@ export default { 40 ], "order_by": [ - 2150, + 2411, "[league_seasons_order_by!]" ], "where": [ - 2138 + 2399 ] } ], "league_seasons_by_pk": [ - 2133, + 2394, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_team_movements": [ - 2166, + 2427, { "distinct_on": [ - 2187, + 2448, "[league_team_movements_select_column!]" ], "limit": [ @@ -144361,19 +150323,19 @@ export default { 40 ], "order_by": [ - 2185, + 2446, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2436 ] } ], "league_team_movements_aggregate": [ - 2167, + 2428, { "distinct_on": [ - 2187, + 2448, "[league_team_movements_select_column!]" ], "limit": [ @@ -144383,28 +150345,28 @@ export default { 40 ], "order_by": [ - 2185, + 2446, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2436 ] } ], "league_team_movements_by_pk": [ - 2166, + 2427, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_team_rosters": [ - 2207, + 2468, { "distinct_on": [ - 2228, + 2489, "[league_team_rosters_select_column!]" ], "limit": [ @@ -144414,19 +150376,19 @@ export default { 40 ], "order_by": [ - 2226, + 2487, "[league_team_rosters_order_by!]" ], "where": [ - 2216 + 2477 ] } ], "league_team_rosters_aggregate": [ - 2208, + 2469, { "distinct_on": [ - 2228, + 2489, "[league_team_rosters_select_column!]" ], "limit": [ @@ -144436,32 +150398,32 @@ export default { 40 ], "order_by": [ - 2226, + 2487, "[league_team_rosters_order_by!]" ], "where": [ - 2216 + 2477 ] } ], "league_team_rosters_by_pk": [ - 2207, + 2468, { "league_team_season_id": [ - 5170, + 5458, "uuid!" ], "player_steam_id": [ - 264, + 268, "bigint!" ] } ], "league_team_seasons": [ - 2248, + 2509, { "distinct_on": [ - 2270, + 2531, "[league_team_seasons_select_column!]" ], "limit": [ @@ -144471,19 +150433,19 @@ export default { 40 ], "order_by": [ - 2268, + 2529, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2518 ] } ], "league_team_seasons_aggregate": [ - 2249, + 2510, { "distinct_on": [ - 2270, + 2531, "[league_team_seasons_select_column!]" ], "limit": [ @@ -144493,28 +150455,28 @@ export default { 40 ], "order_by": [ - 2268, + 2529, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2518 ] } ], "league_team_seasons_by_pk": [ - 2248, + 2509, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_teams": [ - 2290, + 2551, { "distinct_on": [ - 2303, + 2564, "[league_teams_select_column!]" ], "limit": [ @@ -144524,19 +150486,19 @@ export default { 40 ], "order_by": [ - 2301, + 2562, "[league_teams_order_by!]" ], "where": [ - 2293 + 2554 ] } ], "league_teams_aggregate": [ - 2291, + 2552, { "distinct_on": [ - 2303, + 2564, "[league_teams_select_column!]" ], "limit": [ @@ -144546,19 +150508,19 @@ export default { 40 ], "order_by": [ - 2301, + 2562, "[league_teams_order_by!]" ], "where": [ - 2293 + 2554 ] } ], "league_teams_by_pk": [ - 2290, + 2551, { "id": [ - 5170, + 5458, "uuid!" ] } @@ -144567,22 +150529,22 @@ export default { 30, { "node_id": [ - 80, + 83, "String!" ], "path": [ - 80 + 83 ], "server_id": [ - 80 + 83 ] } ], "lobbies": [ - 2309, + 2570, { "distinct_on": [ - 2322, + 2583, "[lobbies_select_column!]" ], "limit": [ @@ -144592,19 +150554,19 @@ export default { 40 ], "order_by": [ - 2320, + 2581, "[lobbies_order_by!]" ], "where": [ - 2312 + 2573 ] } ], "lobbies_aggregate": [ - 2310, + 2571, { "distinct_on": [ - 2322, + 2583, "[lobbies_select_column!]" ], "limit": [ @@ -144614,28 +150576,28 @@ export default { 40 ], "order_by": [ - 2320, + 2581, "[lobbies_order_by!]" ], "where": [ - 2312 + 2573 ] } ], "lobbies_by_pk": [ - 2309, + 2570, { "id": [ - 5170, + 5458, "uuid!" ] } ], "lobby_players": [ - 2328, + 2589, { "distinct_on": [ - 2351, + 2612, "[lobby_players_select_column!]" ], "limit": [ @@ -144645,19 +150607,19 @@ export default { 40 ], "order_by": [ - 2349, + 2610, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2600 ] } ], "lobby_players_aggregate": [ - 2329, + 2590, { "distinct_on": [ - 2351, + 2612, "[lobby_players_select_column!]" ], "limit": [ @@ -144667,32 +150629,32 @@ export default { 40 ], "order_by": [ - 2349, + 2610, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2600 ] } ], "lobby_players_by_pk": [ - 2328, + 2589, { "lobby_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "map_pools": [ - 2373, + 2634, { "distinct_on": [ - 2386, + 2647, "[map_pools_select_column!]" ], "limit": [ @@ -144702,19 +150664,19 @@ export default { 40 ], "order_by": [ - 2384, + 2645, "[map_pools_order_by!]" ], "where": [ - 2376 + 2637 ] } ], "map_pools_aggregate": [ - 2374, + 2635, { "distinct_on": [ - 2386, + 2647, "[map_pools_select_column!]" ], "limit": [ @@ -144724,28 +150686,28 @@ export default { 40 ], "order_by": [ - 2384, + 2645, "[map_pools_order_by!]" ], "where": [ - 2376 + 2637 ] } ], "map_pools_by_pk": [ - 2373, + 2634, { "id": [ - 5170, + 5458, "uuid!" ] } ], "maps": [ - 2392, + 2653, { "distinct_on": [ - 2413, + 2674, "[maps_select_column!]" ], "limit": [ @@ -144755,19 +150717,19 @@ export default { 40 ], "order_by": [ - 2411, + 2672, "[maps_order_by!]" ], "where": [ - 2401 + 2662 ] } ], "maps_aggregate": [ - 2393, + 2654, { "distinct_on": [ - 2413, + 2674, "[maps_select_column!]" ], "limit": [ @@ -144777,28 +150739,28 @@ export default { 40 ], "order_by": [ - 2411, + 2672, "[maps_order_by!]" ], "where": [ - 2401 + 2662 ] } ], "maps_by_pk": [ - 2392, + 2653, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_clips": [ - 2421, + 2682, { "distinct_on": [ - 2443, + 2704, "[match_clips_select_column!]" ], "limit": [ @@ -144808,19 +150770,19 @@ export default { 40 ], "order_by": [ - 2441, + 2702, "[match_clips_order_by!]" ], "where": [ - 2430 + 2691 ] } ], "match_clips_aggregate": [ - 2422, + 2683, { "distinct_on": [ - 2443, + 2704, "[match_clips_select_column!]" ], "limit": [ @@ -144830,28 +150792,28 @@ export default { 40 ], "order_by": [ - 2441, + 2702, "[match_clips_order_by!]" ], "where": [ - 2430 + 2691 ] } ], "match_clips_by_pk": [ - 2421, + 2682, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_demo_sessions": [ - 2463, + 2724, { "distinct_on": [ - 2489, + 2750, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -144861,19 +150823,19 @@ export default { 40 ], "order_by": [ - 2486, + 2747, "[match_demo_sessions_order_by!]" ], "where": [ - 2473 + 2734 ] } ], "match_demo_sessions_aggregate": [ - 2464, + 2725, { "distinct_on": [ - 2489, + 2750, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -144883,28 +150845,28 @@ export default { 40 ], "order_by": [ - 2486, + 2747, "[match_demo_sessions_order_by!]" ], "where": [ - 2473 + 2734 ] } ], "match_demo_sessions_by_pk": [ - 2463, + 2724, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_lineup_players": [ - 2509, + 2770, { "distinct_on": [ - 2532, + 2793, "[match_lineup_players_select_column!]" ], "limit": [ @@ -144914,19 +150876,19 @@ export default { 40 ], "order_by": [ - 2530, + 2791, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2781 ] } ], "match_lineup_players_aggregate": [ - 2510, + 2771, { "distinct_on": [ - 2532, + 2793, "[match_lineup_players_select_column!]" ], "limit": [ @@ -144936,28 +150898,28 @@ export default { 40 ], "order_by": [ - 2530, + 2791, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2781 ] } ], "match_lineup_players_by_pk": [ - 2509, + 2770, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_lineups": [ - 2554, + 2815, { "distinct_on": [ - 2576, + 2837, "[match_lineups_select_column!]" ], "limit": [ @@ -144967,19 +150929,19 @@ export default { 40 ], "order_by": [ - 2574, + 2835, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2824 ] } ], "match_lineups_aggregate": [ - 2555, + 2816, { "distinct_on": [ - 2576, + 2837, "[match_lineups_select_column!]" ], "limit": [ @@ -144989,28 +150951,28 @@ export default { 40 ], "order_by": [ - 2574, + 2835, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2824 ] } ], "match_lineups_by_pk": [ - 2554, + 2815, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_map_demos": [ - 2596, + 2857, { "distinct_on": [ - 2625, + 2886, "[match_map_demos_select_column!]" ], "limit": [ @@ -145020,19 +150982,19 @@ export default { 40 ], "order_by": [ - 2622, + 2883, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2869 ] } ], "match_map_demos_aggregate": [ - 2597, + 2858, { "distinct_on": [ - 2625, + 2886, "[match_map_demos_select_column!]" ], "limit": [ @@ -145042,28 +151004,28 @@ export default { 40 ], "order_by": [ - 2622, + 2883, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2869 ] } ], "match_map_demos_by_pk": [ - 2596, + 2857, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_map_rounds": [ - 2647, + 2908, { "distinct_on": [ - 2668, + 2929, "[match_map_rounds_select_column!]" ], "limit": [ @@ -145073,19 +151035,19 @@ export default { 40 ], "order_by": [ - 2666, + 2927, "[match_map_rounds_order_by!]" ], "where": [ - 2656 + 2917 ] } ], "match_map_rounds_aggregate": [ - 2648, + 2909, { "distinct_on": [ - 2668, + 2929, "[match_map_rounds_select_column!]" ], "limit": [ @@ -145095,28 +151057,28 @@ export default { 40 ], "order_by": [ - 2666, + 2927, "[match_map_rounds_order_by!]" ], "where": [ - 2656 + 2917 ] } ], "match_map_rounds_by_pk": [ - 2647, + 2908, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_map_veto_picks": [ - 2688, + 2949, { "distinct_on": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -145126,19 +151088,19 @@ export default { 40 ], "order_by": [ - 2706, + 2967, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2958 ] } ], "match_map_veto_picks_aggregate": [ - 2689, + 2950, { "distinct_on": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -145148,28 +151110,28 @@ export default { 40 ], "order_by": [ - 2706, + 2967, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2958 ] } ], "match_map_veto_picks_by_pk": [ - 2688, + 2949, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_maps": [ - 2716, + 2977, { "distinct_on": [ - 2738, + 2999, "[match_maps_select_column!]" ], "limit": [ @@ -145179,19 +151141,19 @@ export default { 40 ], "order_by": [ - 2736, + 2997, "[match_maps_order_by!]" ], "where": [ - 2725 + 2986 ] } ], "match_maps_aggregate": [ - 2717, + 2978, { "distinct_on": [ - 2738, + 2999, "[match_maps_select_column!]" ], "limit": [ @@ -145201,28 +151163,28 @@ export default { 40 ], "order_by": [ - 2736, + 2997, "[match_maps_order_by!]" ], "where": [ - 2725 + 2986 ] } ], "match_maps_by_pk": [ - 2716, + 2977, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_options": [ - 2758, + 3019, { "distinct_on": [ - 2773, + 3043, "[match_options_select_column!]" ], "limit": [ @@ -145232,19 +151194,19 @@ export default { 40 ], "order_by": [ - 2771, + 3041, "[match_options_order_by!]" ], "where": [ - 2762 + 3030 ] } ], "match_options_aggregate": [ - 2759, + 3020, { "distinct_on": [ - 2773, + 3043, "[match_options_select_column!]" ], "limit": [ @@ -145254,28 +151216,28 @@ export default { 40 ], "order_by": [ - 2771, + 3041, "[match_options_order_by!]" ], "where": [ - 2762 + 3030 ] } ], "match_options_by_pk": [ - 2758, + 3019, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_region_veto_picks": [ - 2786, + 3065, { "distinct_on": [ - 2806, + 3085, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -145285,19 +151247,19 @@ export default { 40 ], "order_by": [ - 2804, + 3083, "[match_region_veto_picks_order_by!]" ], "where": [ - 2795 + 3074 ] } ], "match_region_veto_picks_aggregate": [ - 2787, + 3066, { "distinct_on": [ - 2806, + 3085, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -145307,28 +151269,28 @@ export default { 40 ], "order_by": [ - 2804, + 3083, "[match_region_veto_picks_order_by!]" ], "where": [ - 2795 + 3074 ] } ], "match_region_veto_picks_by_pk": [ - 2786, + 3065, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_streams": [ - 2814, + 3093, { "distinct_on": [ - 2842, + 3121, "[match_streams_select_column!]" ], "limit": [ @@ -145338,19 +151300,19 @@ export default { 40 ], "order_by": [ - 2839, + 3118, "[match_streams_order_by!]" ], "where": [ - 2826 + 3105 ] } ], "match_streams_aggregate": [ - 2815, + 3094, { "distinct_on": [ - 2842, + 3121, "[match_streams_select_column!]" ], "limit": [ @@ -145360,28 +151322,28 @@ export default { 40 ], "order_by": [ - 2839, + 3118, "[match_streams_order_by!]" ], "where": [ - 2826 + 3105 ] } ], "match_streams_by_pk": [ - 2814, + 3093, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_type_cfgs": [ - 2864, + 3143, { "distinct_on": [ - 2876, + 3155, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -145391,19 +151353,19 @@ export default { 40 ], "order_by": [ - 2874, + 3153, "[match_type_cfgs_order_by!]" ], "where": [ - 2867 + 3146 ] } ], "match_type_cfgs_aggregate": [ - 2865, + 3144, { "distinct_on": [ - 2876, + 3155, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -145413,28 +151375,28 @@ export default { 40 ], "order_by": [ - 2874, + 3153, "[match_type_cfgs_order_by!]" ], "where": [ - 2867 + 3146 ] } ], "match_type_cfgs_by_pk": [ - 2864, + 3143, { "type": [ - 828, + 832, "e_game_cfg_types_enum!" ] } ], "matches": [ - 2882, + 3161, { "distinct_on": [ - 2904, + 3185, "[matches_select_column!]" ], "limit": [ @@ -145444,19 +151406,19 @@ export default { 40 ], "order_by": [ - 2902, + 3183, "[matches_order_by!]" ], "where": [ - 2891 + 3172 ] } ], "matches_aggregate": [ - 2883, + 3162, { "distinct_on": [ - 2904, + 3185, "[matches_select_column!]" ], "limit": [ @@ -145466,19 +151428,19 @@ export default { 40 ], "order_by": [ - 2902, + 3183, "[matches_order_by!]" ], "where": [ - 2891 + 3172 ] } ], "matches_by_pk": [ - 2882, + 3161, { "id": [ - 5170, + 5458, "uuid!" ] } @@ -145487,10 +151449,10 @@ export default { 47 ], "migration_hashes_hashes": [ - 2924, + 3207, { "distinct_on": [ - 2936, + 3219, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -145500,19 +151462,19 @@ export default { 40 ], "order_by": [ - 2934, + 3217, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2927 + 3210 ] } ], "migration_hashes_hashes_aggregate": [ - 2925, + 3208, { "distinct_on": [ - 2936, + 3219, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -145522,28 +151484,28 @@ export default { 40 ], "order_by": [ - 2934, + 3217, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2927 + 3210 ] } ], "migration_hashes_hashes_by_pk": [ - 2924, + 3207, { "name": [ - 80, + 83, "String!" ] } ], "my_friends": [ - 2942, + 3225, { "distinct_on": [ - 2967, + 3250, "[my_friends_select_column!]" ], "limit": [ @@ -145553,19 +151515,19 @@ export default { 40 ], "order_by": [ - 2965, + 3248, "[my_friends_order_by!]" ], "where": [ - 2954 + 3237 ] } ], "my_friends_aggregate": [ - 2943, + 3226, { "distinct_on": [ - 2967, + 3250, "[my_friends_select_column!]" ], "limit": [ @@ -145575,11 +151537,11 @@ export default { 40 ], "order_by": [ - 2965, + 3248, "[my_friends_order_by!]" ], "where": [ - 2954 + 3237 ] } ], @@ -145587,7 +151549,7 @@ export default { 50, { "id": [ - 5170, + 5458, "uuid!" ] } @@ -145596,10 +151558,10 @@ export default { 50 ], "news_articles": [ - 2988, + 3271, { "distinct_on": [ - 3002, + 3285, "[news_articles_select_column!]" ], "limit": [ @@ -145609,19 +151571,19 @@ export default { 40 ], "order_by": [ - 3000, + 3283, "[news_articles_order_by!]" ], "where": [ - 2992 + 3275 ] } ], "news_articles_aggregate": [ - 2989, + 3272, { "distinct_on": [ - 3002, + 3285, "[news_articles_select_column!]" ], "limit": [ @@ -145631,28 +151593,28 @@ export default { 40 ], "order_by": [ - 3000, + 3283, "[news_articles_order_by!]" ], "where": [ - 2992 + 3275 ] } ], "news_articles_by_pk": [ - 2988, + 3271, { "id": [ - 5170, + 5458, "uuid!" ] } ], "notification_preferences": [ - 3015, + 3298, { "distinct_on": [ - 3029, + 3312, "[notification_preferences_select_column!]" ], "limit": [ @@ -145662,19 +151624,19 @@ export default { 40 ], "order_by": [ - 3027, + 3310, "[notification_preferences_order_by!]" ], "where": [ - 3019 + 3302 ] } ], "notification_preferences_aggregate": [ - 3016, + 3299, { "distinct_on": [ - 3029, + 3312, "[notification_preferences_select_column!]" ], "limit": [ @@ -145684,36 +151646,36 @@ export default { 40 ], "order_by": [ - 3027, + 3310, "[notification_preferences_order_by!]" ], "where": [ - 3019 + 3302 ] } ], "notification_preferences_by_pk": [ - 3015, + 3298, { "channel": [ - 80, + 83, "String!" ], "key": [ - 80, + 83, "String!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "notifications": [ - 3042, + 3325, { "distinct_on": [ - 3070, + 3353, "[notifications_select_column!]" ], "limit": [ @@ -145723,19 +151685,19 @@ export default { 40 ], "order_by": [ - 3067, + 3350, "[notifications_order_by!]" ], "where": [ - 3054 + 3337 ] } ], "notifications_aggregate": [ - 3043, + 3326, { "distinct_on": [ - 3070, + 3353, "[notifications_select_column!]" ], "limit": [ @@ -145745,28 +151707,28 @@ export default { 40 ], "order_by": [ - 3067, + 3350, "[notifications_order_by!]" ], "where": [ - 3054 + 3337 ] } ], "notifications_by_pk": [ - 3042, + 3325, { "id": [ - 5170, + 5458, "uuid!" ] } ], "pending_match_import_players": [ - 3095, + 3378, { "distinct_on": [ - 3116, + 3399, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -145776,19 +151738,19 @@ export default { 40 ], "order_by": [ - 3114, + 3397, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3387 ] } ], "pending_match_import_players_aggregate": [ - 3096, + 3379, { "distinct_on": [ - 3116, + 3399, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -145798,32 +151760,32 @@ export default { 40 ], "order_by": [ - 3114, + 3397, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3387 ] } ], "pending_match_import_players_by_pk": [ - 3095, + 3378, { "steam_id": [ - 264, + 268, "bigint!" ], "valve_match_id": [ - 3092, + 3375, "numeric!" ] } ], "pending_match_imports": [ - 3136, + 3419, { "distinct_on": [ - 3151, + 3434, "[pending_match_imports_select_column!]" ], "limit": [ @@ -145833,19 +151795,19 @@ export default { 40 ], "order_by": [ - 3149, + 3432, "[pending_match_imports_order_by!]" ], "where": [ - 3140 + 3423 ] } ], "pending_match_imports_aggregate": [ - 3137, + 3420, { "distinct_on": [ - 3151, + 3434, "[pending_match_imports_select_column!]" ], "limit": [ @@ -145855,28 +151817,28 @@ export default { 40 ], "order_by": [ - 3149, + 3432, "[pending_match_imports_order_by!]" ], "where": [ - 3140 + 3423 ] } ], "pending_match_imports_by_pk": [ - 3136, + 3419, { "valve_match_id": [ - 3092, + 3375, "numeric!" ] } ], "player_aim_stats_demo": [ - 3164, + 3447, { "distinct_on": [ - 3178, + 3461, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -145886,19 +151848,19 @@ export default { 40 ], "order_by": [ - 3176, + 3459, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3168 + 3451 ] } ], "player_aim_stats_demo_aggregate": [ - 3165, + 3448, { "distinct_on": [ - 3178, + 3461, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -145908,32 +151870,32 @@ export default { 40 ], "order_by": [ - 3176, + 3459, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3168 + 3451 ] } ], "player_aim_stats_demo_by_pk": [ - 3164, + 3447, { "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ] } ], "player_aim_weapon_stats": [ - 3191, + 3474, { "distinct_on": [ - 3212, + 3495, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -145943,19 +151905,19 @@ export default { 40 ], "order_by": [ - 3210, + 3493, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3200 + 3483 ] } ], "player_aim_weapon_stats_aggregate": [ - 3192, + 3475, { "distinct_on": [ - 3212, + 3495, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -145965,36 +151927,36 @@ export default { 40 ], "order_by": [ - 3210, + 3493, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3200 + 3483 ] } ], "player_aim_weapon_stats_by_pk": [ - 3191, + 3474, { "match_map_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ], "weapon_class": [ - 80, + 83, "String!" ] } ], "player_assists": [ - 3232, + 3515, { "distinct_on": [ - 3255, + 3538, "[player_assists_select_column!]" ], "limit": [ @@ -146004,19 +151966,19 @@ export default { 40 ], "order_by": [ - 3253, + 3536, "[player_assists_order_by!]" ], "where": [ - 3243 + 3526 ] } ], "player_assists_aggregate": [ - 3233, + 3516, { "distinct_on": [ - 3255, + 3538, "[player_assists_select_column!]" ], "limit": [ @@ -146026,40 +151988,40 @@ export default { 40 ], "order_by": [ - 3253, + 3536, "[player_assists_order_by!]" ], "where": [ - 3243 + 3526 ] } ], "player_assists_by_pk": [ - 3232, + 3515, { "attacked_steam_id": [ - 264, + 268, "bigint!" ], "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "player_career_stats_v": [ - 3277, + 3560, { "distinct_on": [ - 3285, + 3568, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -146069,19 +152031,19 @@ export default { 40 ], "order_by": [ - 3284, + 3567, "[player_career_stats_v_order_by!]" ], "where": [ - 3281 + 3564 ] } ], "player_career_stats_v_aggregate": [ - 3278, + 3561, { "distinct_on": [ - 3285, + 3568, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -146091,19 +152053,19 @@ export default { 40 ], "order_by": [ - 3284, + 3567, "[player_career_stats_v_order_by!]" ], "where": [ - 3281 + 3564 ] } ], "player_damages": [ - 3295, + 3578, { "distinct_on": [ - 3316, + 3599, "[player_damages_select_column!]" ], "limit": [ @@ -146113,19 +152075,19 @@ export default { 40 ], "order_by": [ - 3314, + 3597, "[player_damages_order_by!]" ], "where": [ - 3304 + 3587 ] } ], "player_damages_aggregate": [ - 3296, + 3579, { "distinct_on": [ - 3316, + 3599, "[player_damages_select_column!]" ], "limit": [ @@ -146135,36 +152097,36 @@ export default { 40 ], "order_by": [ - 3314, + 3597, "[player_damages_order_by!]" ], "where": [ - 3304 + 3587 ] } ], "player_damages_by_pk": [ - 3295, + 3578, { "id": [ - 5170, + 5458, "uuid!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "player_elo": [ - 3336, + 3619, { "distinct_on": [ - 3350, + 3633, "[player_elo_select_column!]" ], "limit": [ @@ -146174,19 +152136,19 @@ export default { 40 ], "order_by": [ - 3348, + 3631, "[player_elo_order_by!]" ], "where": [ - 3340 + 3623 ] } ], "player_elo_aggregate": [ - 3337, + 3620, { "distinct_on": [ - 3350, + 3633, "[player_elo_select_column!]" ], "limit": [ @@ -146196,36 +152158,36 @@ export default { 40 ], "order_by": [ - 3348, + 3631, "[player_elo_order_by!]" ], "where": [ - 3340 + 3623 ] } ], "player_elo_by_pk": [ - 3336, + 3619, { "match_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ], "type": [ - 1117, + 1181, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 3363, + 3646, { "distinct_on": [ - 3384, + 3667, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -146235,19 +152197,19 @@ export default { 40 ], "order_by": [ - 3382, + 3665, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3372 + 3655 ] } ], "player_faceit_rank_history_aggregate": [ - 3364, + 3647, { "distinct_on": [ - 3384, + 3667, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -146257,28 +152219,28 @@ export default { 40 ], "order_by": [ - 3382, + 3665, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3372 + 3655 ] } ], "player_faceit_rank_history_by_pk": [ - 3363, + 3646, { "id": [ - 5170, + 5458, "uuid!" ] } ], "player_flashes": [ - 3404, + 3687, { "distinct_on": [ - 3427, + 3710, "[player_flashes_select_column!]" ], "limit": [ @@ -146288,19 +152250,19 @@ export default { 40 ], "order_by": [ - 3425, + 3708, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3698 ] } ], "player_flashes_aggregate": [ - 3405, + 3688, { "distinct_on": [ - 3427, + 3710, "[player_flashes_select_column!]" ], "limit": [ @@ -146310,40 +152272,40 @@ export default { 40 ], "order_by": [ - 3425, + 3708, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3698 ] } ], "player_flashes_by_pk": [ - 3404, + 3687, { "attacked_steam_id": [ - 264, + 268, "bigint!" ], "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "player_kills": [ - 3449, + 3732, { "distinct_on": [ - 3513, + 3796, "[player_kills_select_column!]" ], "limit": [ @@ -146353,19 +152315,19 @@ export default { 40 ], "order_by": [ - 3511, + 3794, "[player_kills_order_by!]" ], "where": [ - 3460 + 3743 ] } ], "player_kills_aggregate": [ - 3450, + 3733, { "distinct_on": [ - 3513, + 3796, "[player_kills_select_column!]" ], "limit": [ @@ -146375,40 +152337,40 @@ export default { 40 ], "order_by": [ - 3511, + 3794, "[player_kills_order_by!]" ], "where": [ - 3460 + 3743 ] } ], "player_kills_by_pk": [ - 3449, + 3732, { "attacked_steam_id": [ - 264, + 268, "bigint!" ], "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3461, + 3744, { "distinct_on": [ - 3482, + 3765, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -146418,19 +152380,19 @@ export default { 40 ], "order_by": [ - 3480, + 3763, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3470 + 3753 ] } ], "player_kills_by_weapon_aggregate": [ - 3462, + 3745, { "distinct_on": [ - 3482, + 3765, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -146440,32 +152402,32 @@ export default { 40 ], "order_by": [ - 3480, + 3763, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3470 + 3753 ] } ], "player_kills_by_weapon_by_pk": [ - 3461, + 3744, { "player_steam_id": [ - 264, + 268, "bigint!" ], "with": [ - 80, + 83, "String!" ] } ], "player_leaderboard_rank": [ - 3535, + 3818, { "distinct_on": [ - 3546, + 3829, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -146475,19 +152437,19 @@ export default { 40 ], "order_by": [ - 3545, + 3828, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3822 ] } ], "player_leaderboard_rank_aggregate": [ - 3536, + 3819, { "distinct_on": [ - 3546, + 3829, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -146497,19 +152459,19 @@ export default { 40 ], "order_by": [ - 3545, + 3828, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3822 ] } ], "player_match_map_stats": [ - 3558, + 3841, { "distinct_on": [ - 3579, + 3862, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -146519,19 +152481,19 @@ export default { 40 ], "order_by": [ - 3577, + 3860, "[player_match_map_stats_order_by!]" ], "where": [ - 3567 + 3850 ] } ], "player_match_map_stats_aggregate": [ - 3559, + 3842, { "distinct_on": [ - 3579, + 3862, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -146541,32 +152503,32 @@ export default { 40 ], "order_by": [ - 3577, + 3860, "[player_match_map_stats_order_by!]" ], "where": [ - 3567 + 3850 ] } ], "player_match_map_stats_by_pk": [ - 3558, + 3841, { "match_map_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "player_match_performance_v": [ - 3599, + 3882, { "distinct_on": [ - 3607, + 3890, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -146576,19 +152538,19 @@ export default { 40 ], "order_by": [ - 3606, + 3889, "[player_match_performance_v_order_by!]" ], "where": [ - 3603 + 3886 ] } ], "player_match_performance_v_aggregate": [ - 3600, + 3883, { "distinct_on": [ - 3607, + 3890, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -146598,19 +152560,19 @@ export default { 40 ], "order_by": [ - 3606, + 3889, "[player_match_performance_v_order_by!]" ], "where": [ - 3603 + 3886 ] } ], "player_match_stats_v": [ - 3617, + 3900, { "distinct_on": [ - 3633, + 3916, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -146620,19 +152582,19 @@ export default { 40 ], "order_by": [ - 3632, + 3915, "[player_match_stats_v_order_by!]" ], "where": [ - 3626 + 3909 ] } ], "player_match_stats_v_aggregate": [ - 3618, + 3901, { "distinct_on": [ - 3633, + 3916, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -146642,19 +152604,19 @@ export default { 40 ], "order_by": [ - 3632, + 3915, "[player_match_stats_v_order_by!]" ], "where": [ - 3626 + 3909 ] } ], "player_objectives": [ - 3650, + 3933, { "distinct_on": [ - 3671, + 3954, "[player_objectives_select_column!]" ], "limit": [ @@ -146664,19 +152626,19 @@ export default { 40 ], "order_by": [ - 3669, + 3952, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3942 ] } ], "player_objectives_aggregate": [ - 3651, + 3934, { "distinct_on": [ - 3671, + 3954, "[player_objectives_select_column!]" ], "limit": [ @@ -146686,36 +152648,36 @@ export default { 40 ], "order_by": [ - 3669, + 3952, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3942 ] } ], "player_objectives_by_pk": [ - 3650, + 3933, { "match_map_id": [ - 5170, + 5458, "uuid!" ], "player_steam_id": [ - 264, + 268, "bigint!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "player_performance_v": [ - 3691, + 3974, { "distinct_on": [ - 3699, + 3982, "[player_performance_v_select_column!]" ], "limit": [ @@ -146725,19 +152687,19 @@ export default { 40 ], "order_by": [ - 3698, + 3981, "[player_performance_v_order_by!]" ], "where": [ - 3695 + 3978 ] } ], "player_performance_v_aggregate": [ - 3692, + 3975, { "distinct_on": [ - 3699, + 3982, "[player_performance_v_select_column!]" ], "limit": [ @@ -146747,19 +152709,19 @@ export default { 40 ], "order_by": [ - 3698, + 3981, "[player_performance_v_order_by!]" ], "where": [ - 3695 + 3978 ] } ], "player_premier_rank_history": [ - 3709, + 3992, { "distinct_on": [ - 3730, + 4013, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -146769,19 +152731,19 @@ export default { 40 ], "order_by": [ - 3728, + 4011, "[player_premier_rank_history_order_by!]" ], "where": [ - 3718 + 4001 ] } ], "player_premier_rank_history_aggregate": [ - 3710, + 3993, { "distinct_on": [ - 3730, + 4013, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -146791,28 +152753,28 @@ export default { 40 ], "order_by": [ - 3728, + 4011, "[player_premier_rank_history_order_by!]" ], "where": [ - 3718 + 4001 ] } ], "player_premier_rank_history_by_pk": [ - 3709, + 3992, { "id": [ - 5170, + 5458, "uuid!" ] } ], "player_sanctions": [ - 3750, + 4033, { "distinct_on": [ - 3771, + 4054, "[player_sanctions_select_column!]" ], "limit": [ @@ -146822,19 +152784,19 @@ export default { 40 ], "order_by": [ - 3769, + 4052, "[player_sanctions_order_by!]" ], "where": [ - 3759 + 4042 ] } ], "player_sanctions_aggregate": [ - 3751, + 4034, { "distinct_on": [ - 3771, + 4054, "[player_sanctions_select_column!]" ], "limit": [ @@ -146844,32 +152806,32 @@ export default { 40 ], "order_by": [ - 3769, + 4052, "[player_sanctions_order_by!]" ], "where": [ - 3759 + 4042 ] } ], "player_sanctions_by_pk": [ - 3750, + 4033, { "created_at": [ - 4670, + 4958, "timestamptz!" ], "id": [ - 5170, + 5458, "uuid!" ] } ], "player_season_stats": [ - 3791, + 4074, { "distinct_on": [ - 3822, + 4105, "[player_season_stats_select_column!]" ], "limit": [ @@ -146879,19 +152841,19 @@ export default { 40 ], "order_by": [ - 3820, + 4103, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4093 ] } ], "player_season_stats_aggregate": [ - 3792, + 4075, { "distinct_on": [ - 3822, + 4105, "[player_season_stats_select_column!]" ], "limit": [ @@ -146901,32 +152863,32 @@ export default { 40 ], "order_by": [ - 3820, + 4103, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4093 ] } ], "player_season_stats_by_pk": [ - 3791, + 4074, { "player_steam_id": [ - 264, + 268, "bigint!" ], "season_id": [ - 5170, + 5458, "uuid!" ] } ], "player_stats": [ - 3850, + 4133, { "distinct_on": [ - 3865, + 4148, "[player_stats_select_column!]" ], "limit": [ @@ -146936,19 +152898,19 @@ export default { 40 ], "order_by": [ - 3863, + 4146, "[player_stats_order_by!]" ], "where": [ - 3854 + 4137 ] } ], "player_stats_aggregate": [ - 3851, + 4134, { "distinct_on": [ - 3865, + 4148, "[player_stats_select_column!]" ], "limit": [ @@ -146958,28 +152920,28 @@ export default { 40 ], "order_by": [ - 3863, + 4146, "[player_stats_order_by!]" ], "where": [ - 3854 + 4137 ] } ], "player_stats_by_pk": [ - 3850, + 4133, { "player_steam_id": [ - 264, + 268, "bigint!" ] } ], "player_steam_bot_friend": [ - 3878, + 4161, { "distinct_on": [ - 3897, + 4180, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -146989,19 +152951,19 @@ export default { 40 ], "order_by": [ - 3894, + 4177, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3883 + 4166 ] } ], "player_steam_bot_friend_aggregate": [ - 3879, + 4162, { "distinct_on": [ - 3897, + 4180, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -147011,28 +152973,28 @@ export default { 40 ], "order_by": [ - 3894, + 4177, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3883 + 4166 ] } ], "player_steam_bot_friend_by_pk": [ - 3878, + 4161, { "steam_id": [ - 264, + 268, "bigint!" ] } ], "player_steam_match_auth": [ - 3910, + 4193, { "distinct_on": [ - 3924, + 4207, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -147042,19 +153004,19 @@ export default { 40 ], "order_by": [ - 3922, + 4205, "[player_steam_match_auth_order_by!]" ], "where": [ - 3914 + 4197 ] } ], "player_steam_match_auth_aggregate": [ - 3911, + 4194, { "distinct_on": [ - 3924, + 4207, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -147064,28 +153026,28 @@ export default { 40 ], "order_by": [ - 3922, + 4205, "[player_steam_match_auth_order_by!]" ], "where": [ - 3914 + 4197 ] } ], "player_steam_match_auth_by_pk": [ - 3910, + 4193, { "steam_id": [ - 264, + 268, "bigint!" ] } ], "player_unused_utility": [ - 3937, + 4220, { "distinct_on": [ - 3958, + 4241, "[player_unused_utility_select_column!]" ], "limit": [ @@ -147095,19 +153057,19 @@ export default { 40 ], "order_by": [ - 3956, + 4239, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4229 ] } ], "player_unused_utility_aggregate": [ - 3938, + 4221, { "distinct_on": [ - 3958, + 4241, "[player_unused_utility_select_column!]" ], "limit": [ @@ -147117,32 +153079,32 @@ export default { 40 ], "order_by": [ - 3956, + 4239, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4229 ] } ], "player_unused_utility_by_pk": [ - 3937, + 4220, { "match_map_id": [ - 5170, + 5458, "uuid!" ], "player_steam_id": [ - 264, + 268, "bigint!" ] } ], "player_utility": [ - 3978, + 4261, { "distinct_on": [ - 3999, + 4282, "[player_utility_select_column!]" ], "limit": [ @@ -147152,19 +153114,19 @@ export default { 40 ], "order_by": [ - 3997, + 4280, "[player_utility_order_by!]" ], "where": [ - 3987 + 4270 ] } ], "player_utility_aggregate": [ - 3979, + 4262, { "distinct_on": [ - 3999, + 4282, "[player_utility_select_column!]" ], "limit": [ @@ -147174,36 +153136,36 @@ export default { 40 ], "order_by": [ - 3997, + 4280, "[player_utility_order_by!]" ], "where": [ - 3987 + 4270 ] } ], "player_utility_by_pk": [ - 3978, + 4261, { "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 4019, + 4302, { "distinct_on": [ - 4035, + 4318, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -147213,19 +153175,19 @@ export default { 40 ], "order_by": [ - 4034, + 4317, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4028 + 4311 ] } ], "player_weapon_stats_v_aggregate": [ - 4020, + 4303, { "distinct_on": [ - 4035, + 4318, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -147235,19 +153197,19 @@ export default { 40 ], "order_by": [ - 4034, + 4317, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4028 + 4311 ] } ], "players": [ - 4052, + 4335, { "distinct_on": [ - 4067, + 4350, "[players_select_column!]" ], "limit": [ @@ -147257,19 +153219,19 @@ export default { 40 ], "order_by": [ - 4065, + 4348, "[players_order_by!]" ], "where": [ - 4056 + 4339 ] } ], "players_aggregate": [ - 4053, + 4336, { "distinct_on": [ - 4067, + 4350, "[players_select_column!]" ], "limit": [ @@ -147279,28 +153241,28 @@ export default { 40 ], "order_by": [ - 4065, + 4348, "[players_order_by!]" ], "where": [ - 4056 + 4339 ] } ], "players_by_pk": [ - 4052, + 4335, { "steam_id": [ - 264, + 268, "bigint!" ] } ], "plugin_versions": [ - 4080, + 4363, { "distinct_on": [ - 4094, + 4377, "[plugin_versions_select_column!]" ], "limit": [ @@ -147310,19 +153272,19 @@ export default { 40 ], "order_by": [ - 4092, + 4375, "[plugin_versions_order_by!]" ], "where": [ - 4084 + 4367 ] } ], "plugin_versions_aggregate": [ - 4081, + 4364, { "distinct_on": [ - 4094, + 4377, "[plugin_versions_select_column!]" ], "limit": [ @@ -147332,32 +153294,32 @@ export default { 40 ], "order_by": [ - 4092, + 4375, "[plugin_versions_order_by!]" ], "where": [ - 4084 + 4367 ] } ], "plugin_versions_by_pk": [ - 4080, + 4363, { "runtime": [ - 1198, + 1262, "e_plugin_runtimes_enum!" ], "version": [ - 80, + 83, "String!" ] } ], "push_subscriptions": [ - 4107, + 4390, { "distinct_on": [ - 4121, + 4404, "[push_subscriptions_select_column!]" ], "limit": [ @@ -147367,19 +153329,19 @@ export default { 40 ], "order_by": [ - 4119, + 4402, "[push_subscriptions_order_by!]" ], "where": [ - 4111 + 4394 ] } ], "push_subscriptions_aggregate": [ - 4108, + 4391, { "distinct_on": [ - 4121, + 4404, "[push_subscriptions_select_column!]" ], "limit": [ @@ -147389,19 +153351,19 @@ export default { 40 ], "order_by": [ - 4119, + 4402, "[push_subscriptions_order_by!]" ], "where": [ - 4111 + 4394 ] } ], "push_subscriptions_by_pk": [ - 4107, + 4390, { "id": [ - 5170, + 5458, "uuid!" ] } @@ -147410,23 +153372,23 @@ export default { 28, { "file_path": [ - 80, + 83, "String!" ], "node_id": [ - 80, + 83, "String!" ], "server_id": [ - 80 + 83 ] } ], "seasons": [ - 4138, + 4421, { "distinct_on": [ - 4153, + 4436, "[seasons_select_column!]" ], "limit": [ @@ -147436,19 +153398,19 @@ export default { 40 ], "order_by": [ - 4151, + 4434, "[seasons_order_by!]" ], "where": [ - 4142 + 4425 ] } ], "seasons_aggregate": [ - 4139, + 4422, { "distinct_on": [ - 4153, + 4436, "[seasons_select_column!]" ], "limit": [ @@ -147458,28 +153420,28 @@ export default { 40 ], "order_by": [ - 4151, + 4434, "[seasons_order_by!]" ], "where": [ - 4142 + 4425 ] } ], "seasons_by_pk": [ - 4138, + 4421, { "id": [ - 5170, + 5458, "uuid!" ] } ], "server_regions": [ - 4166, + 4449, { "distinct_on": [ - 4180, + 4463, "[server_regions_select_column!]" ], "limit": [ @@ -147489,19 +153451,19 @@ export default { 40 ], "order_by": [ - 4178, + 4461, "[server_regions_order_by!]" ], "where": [ - 4170 + 4453 ] } ], "server_regions_aggregate": [ - 4167, + 4450, { "distinct_on": [ - 4180, + 4463, "[server_regions_select_column!]" ], "limit": [ @@ -147511,28 +153473,28 @@ export default { 40 ], "order_by": [ - 4178, + 4461, "[server_regions_order_by!]" ], "where": [ - 4170 + 4453 ] } ], "server_regions_by_pk": [ - 4166, + 4449, { "value": [ - 80, + 83, "String!" ] } ], "servers": [ - 4193, + 4476, { "distinct_on": [ - 4217, + 4505, "[servers_select_column!]" ], "limit": [ @@ -147542,19 +153504,19 @@ export default { 40 ], "order_by": [ - 4215, + 4502, "[servers_order_by!]" ], "where": [ - 4204 + 4488 ] } ], "servers_aggregate": [ - 4194, + 4477, { "distinct_on": [ - 4217, + 4505, "[servers_select_column!]" ], "limit": [ @@ -147564,28 +153526,28 @@ export default { 40 ], "order_by": [ - 4215, + 4502, "[servers_order_by!]" ], "where": [ - 4204 + 4488 ] } ], "servers_by_pk": [ - 4193, + 4476, { "id": [ - 5170, + 5458, "uuid!" ] } ], "settings": [ - 4239, + 4527, { "distinct_on": [ - 4251, + 4539, "[settings_select_column!]" ], "limit": [ @@ -147595,19 +153557,19 @@ export default { 40 ], "order_by": [ - 4249, + 4537, "[settings_order_by!]" ], "where": [ - 4242 + 4530 ] } ], "settings_aggregate": [ - 4240, + 4528, { "distinct_on": [ - 4251, + 4539, "[settings_select_column!]" ], "limit": [ @@ -147617,31 +153579,31 @@ export default { 40 ], "order_by": [ - 4249, + 4537, "[settings_order_by!]" ], "where": [ - 4242 + 4530 ] } ], "settings_by_pk": [ - 4239, + 4527, { "name": [ - 80, + 83, "String!" ] } ], "steamPresenceAdminStatus": [ - 74 + 77 ], "steam_account_claims": [ - 4259, + 4547, { "distinct_on": [ - 4277, + 4565, "[steam_account_claims_select_column!]" ], "limit": [ @@ -147651,19 +153613,19 @@ export default { 40 ], "order_by": [ - 4275, + 4563, "[steam_account_claims_order_by!]" ], "where": [ - 4266 + 4554 ] } ], "steam_account_claims_aggregate": [ - 4260, + 4548, { "distinct_on": [ - 4277, + 4565, "[steam_account_claims_select_column!]" ], "limit": [ @@ -147673,28 +153635,28 @@ export default { 40 ], "order_by": [ - 4275, + 4563, "[steam_account_claims_order_by!]" ], "where": [ - 4266 + 4554 ] } ], "steam_account_claims_by_pk": [ - 4259, + 4547, { "id": [ - 5170, + 5458, "uuid!" ] } ], "steam_accounts": [ - 4283, + 4571, { "distinct_on": [ - 4298, + 4586, "[steam_accounts_select_column!]" ], "limit": [ @@ -147704,19 +153666,19 @@ export default { 40 ], "order_by": [ - 4296, + 4584, "[steam_accounts_order_by!]" ], "where": [ - 4287 + 4575 ] } ], "steam_accounts_aggregate": [ - 4284, + 4572, { "distinct_on": [ - 4298, + 4586, "[steam_accounts_select_column!]" ], "limit": [ @@ -147726,28 +153688,28 @@ export default { 40 ], "order_by": [ - 4296, + 4584, "[steam_accounts_order_by!]" ], "where": [ - 4287 + 4575 ] } ], "steam_accounts_by_pk": [ - 4283, + 4571, { "id": [ - 5170, + 5458, "uuid!" ] } ], "system_alerts": [ - 4311, + 4599, { "distinct_on": [ - 4325, + 4613, "[system_alerts_select_column!]" ], "limit": [ @@ -147757,19 +153719,19 @@ export default { 40 ], "order_by": [ - 4323, + 4611, "[system_alerts_order_by!]" ], "where": [ - 4315 + 4603 ] } ], "system_alerts_aggregate": [ - 4312, + 4600, { "distinct_on": [ - 4325, + 4613, "[system_alerts_select_column!]" ], "limit": [ @@ -147779,37 +153741,37 @@ export default { 40 ], "order_by": [ - 4323, + 4611, "[system_alerts_order_by!]" ], "where": [ - 4315 + 4603 ] } ], "system_alerts_by_pk": [ - 4311, + 4599, { "id": [ - 5170, + 5458, "uuid!" ] } ], "teamCalendarUrl": [ - 87, + 91, { "team_id": [ - 5170, + 5458, "uuid!" ] } ], "team_invites": [ - 4338, + 4626, { "distinct_on": [ - 4359, + 4647, "[team_invites_select_column!]" ], "limit": [ @@ -147819,19 +153781,19 @@ export default { 40 ], "order_by": [ - 4357, + 4645, "[team_invites_order_by!]" ], "where": [ - 4347 + 4635 ] } ], "team_invites_aggregate": [ - 4339, + 4627, { "distinct_on": [ - 4359, + 4647, "[team_invites_select_column!]" ], "limit": [ @@ -147841,28 +153803,28 @@ export default { 40 ], "order_by": [ - 4357, + 4645, "[team_invites_order_by!]" ], "where": [ - 4347 + 4635 ] } ], "team_invites_by_pk": [ - 4338, + 4626, { "id": [ - 5170, + 5458, "uuid!" ] } ], "team_roster": [ - 4379, + 4667, { "distinct_on": [ - 4402, + 4690, "[team_roster_select_column!]" ], "limit": [ @@ -147872,19 +153834,19 @@ export default { 40 ], "order_by": [ - 4400, + 4688, "[team_roster_order_by!]" ], "where": [ - 4390 + 4678 ] } ], "team_roster_aggregate": [ - 4380, + 4668, { "distinct_on": [ - 4402, + 4690, "[team_roster_select_column!]" ], "limit": [ @@ -147894,32 +153856,32 @@ export default { 40 ], "order_by": [ - 4400, + 4688, "[team_roster_order_by!]" ], "where": [ - 4390 + 4678 ] } ], "team_roster_by_pk": [ - 4379, + 4667, { "player_steam_id": [ - 264, + 268, "bigint!" ], "team_id": [ - 5170, + 5458, "uuid!" ] } ], "team_scrim_alerts": [ - 4424, + 4712, { "distinct_on": [ - 4438, + 4726, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -147929,19 +153891,19 @@ export default { 40 ], "order_by": [ - 4436, + 4724, "[team_scrim_alerts_order_by!]" ], "where": [ - 4428 + 4716 ] } ], "team_scrim_alerts_aggregate": [ - 4425, + 4713, { "distinct_on": [ - 4438, + 4726, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -147951,28 +153913,28 @@ export default { 40 ], "order_by": [ - 4436, + 4724, "[team_scrim_alerts_order_by!]" ], "where": [ - 4428 + 4716 ] } ], "team_scrim_alerts_by_pk": [ - 4424, + 4712, { "id": [ - 5170, + 5458, "uuid!" ] } ], "team_scrim_availability": [ - 4451, + 4739, { "distinct_on": [ - 4471, + 4759, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -147982,19 +153944,19 @@ export default { 40 ], "order_by": [ - 4469, + 4757, "[team_scrim_availability_order_by!]" ], "where": [ - 4460 + 4748 ] } ], "team_scrim_availability_aggregate": [ - 4452, + 4740, { "distinct_on": [ - 4471, + 4759, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -148004,28 +153966,28 @@ export default { 40 ], "order_by": [ - 4469, + 4757, "[team_scrim_availability_order_by!]" ], "where": [ - 4460 + 4748 ] } ], "team_scrim_availability_by_pk": [ - 4451, + 4739, { "id": [ - 5170, + 5458, "uuid!" ] } ], "team_scrim_request_proposals": [ - 4479, + 4767, { "distinct_on": [ - 4500, + 4788, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -148035,19 +153997,19 @@ export default { 40 ], "order_by": [ - 4498, + 4786, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4488 + 4776 ] } ], "team_scrim_request_proposals_aggregate": [ - 4480, + 4768, { "distinct_on": [ - 4500, + 4788, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -148057,28 +154019,28 @@ export default { 40 ], "order_by": [ - 4498, + 4786, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4488 + 4776 ] } ], "team_scrim_request_proposals_by_pk": [ - 4479, + 4767, { "id": [ - 5170, + 5458, "uuid!" ] } ], "team_scrim_requests": [ - 4520, + 4808, { "distinct_on": [ - 4544, + 4832, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -148088,19 +154050,19 @@ export default { 40 ], "order_by": [ - 4542, + 4830, "[team_scrim_requests_order_by!]" ], "where": [ - 4531 + 4819 ] } ], "team_scrim_requests_aggregate": [ - 4521, + 4809, { "distinct_on": [ - 4544, + 4832, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -148110,28 +154072,28 @@ export default { 40 ], "order_by": [ - 4542, + 4830, "[team_scrim_requests_order_by!]" ], "where": [ - 4531 + 4819 ] } ], "team_scrim_requests_by_pk": [ - 4520, + 4808, { "id": [ - 5170, + 5458, "uuid!" ] } ], "team_scrim_settings": [ - 4566, + 4854, { "distinct_on": [ - 4581, + 4869, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -148141,19 +154103,19 @@ export default { 40 ], "order_by": [ - 4579, + 4867, "[team_scrim_settings_order_by!]" ], "where": [ - 4570 + 4858 ] } ], "team_scrim_settings_aggregate": [ - 4567, + 4855, { "distinct_on": [ - 4581, + 4869, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -148163,28 +154125,28 @@ export default { 40 ], "order_by": [ - 4579, + 4867, "[team_scrim_settings_order_by!]" ], "where": [ - 4570 + 4858 ] } ], "team_scrim_settings_by_pk": [ - 4566, + 4854, { "id": [ - 5170, + 5458, "uuid!" ] } ], "team_suggestions": [ - 4594, + 4882, { "distinct_on": [ - 4608, + 4896, "[team_suggestions_select_column!]" ], "limit": [ @@ -148194,19 +154156,19 @@ export default { 40 ], "order_by": [ - 4606, + 4894, "[team_suggestions_order_by!]" ], "where": [ - 4598 + 4886 ] } ], "team_suggestions_aggregate": [ - 4595, + 4883, { "distinct_on": [ - 4608, + 4896, "[team_suggestions_select_column!]" ], "limit": [ @@ -148216,28 +154178,28 @@ export default { 40 ], "order_by": [ - 4606, + 4894, "[team_suggestions_order_by!]" ], "where": [ - 4598 + 4886 ] } ], "team_suggestions_by_pk": [ - 4594, + 4882, { "id": [ - 5170, + 5458, "uuid!" ] } ], "teams": [ - 4621, + 4909, { "distinct_on": [ - 4645, + 4933, "[teams_select_column!]" ], "limit": [ @@ -148247,19 +154209,19 @@ export default { 40 ], "order_by": [ - 4643, + 4931, "[teams_order_by!]" ], "where": [ - 4632 + 4920 ] } ], "teams_aggregate": [ - 4622, + 4910, { "distinct_on": [ - 4645, + 4933, "[teams_select_column!]" ], "limit": [ @@ -148269,31 +154231,31 @@ export default { 40 ], "order_by": [ - 4643, + 4931, "[teams_order_by!]" ], "where": [ - 4632 + 4920 ] } ], "teams_by_pk": [ - 4621, + 4909, { "id": [ - 5170, + 5458, "uuid!" ] } ], "telemetryStats": [ - 97 + 101 ], "tournament_awards": [ - 4672, + 4960, { "distinct_on": [ - 4694, + 4982, "[tournament_awards_select_column!]" ], "limit": [ @@ -148303,19 +154265,19 @@ export default { 40 ], "order_by": [ - 4692, + 4980, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4969 ] } ], "tournament_awards_aggregate": [ - 4673, + 4961, { "distinct_on": [ - 4694, + 4982, "[tournament_awards_select_column!]" ], "limit": [ @@ -148325,28 +154287,28 @@ export default { 40 ], "order_by": [ - 4692, + 4980, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4969 ] } ], "tournament_awards_by_pk": [ - 4672, + 4960, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_brackets": [ - 4714, + 5002, { "distinct_on": [ - 4738, + 5026, "[tournament_brackets_select_column!]" ], "limit": [ @@ -148356,19 +154318,19 @@ export default { 40 ], "order_by": [ - 4736, + 5024, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5013 ] } ], "tournament_brackets_aggregate": [ - 4715, + 5003, { "distinct_on": [ - 4738, + 5026, "[tournament_brackets_select_column!]" ], "limit": [ @@ -148378,28 +154340,28 @@ export default { 40 ], "order_by": [ - 4736, + 5024, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5013 ] } ], "tournament_brackets_by_pk": [ - 4714, + 5002, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_categories": [ - 4760, + 5048, { "distinct_on": [ - 4778, + 5066, "[tournament_categories_select_column!]" ], "limit": [ @@ -148409,19 +154371,19 @@ export default { 40 ], "order_by": [ - 4776, + 5064, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5055 ] } ], "tournament_categories_aggregate": [ - 4761, + 5049, { "distinct_on": [ - 4778, + 5066, "[tournament_categories_select_column!]" ], "limit": [ @@ -148431,32 +154393,32 @@ export default { 40 ], "order_by": [ - 4776, + 5064, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5055 ] } ], "tournament_categories_by_pk": [ - 4760, + 5048, { "category": [ - 1400, + 1464, "e_tournament_categories_enum!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_organizer_teams": [ - 4784, + 5072, { "distinct_on": [ - 4802, + 5090, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -148466,19 +154428,19 @@ export default { 40 ], "order_by": [ - 4800, + 5088, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4791 + 5079 ] } ], "tournament_organizer_teams_aggregate": [ - 4785, + 5073, { "distinct_on": [ - 4802, + 5090, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -148488,32 +154450,32 @@ export default { 40 ], "order_by": [ - 4800, + 5088, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4791 + 5079 ] } ], "tournament_organizer_teams_by_pk": [ - 4784, + 5072, { "team_id": [ - 5170, + 5458, "uuid!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_organizers": [ - 4808, + 5096, { "distinct_on": [ - 4829, + 5117, "[tournament_organizers_select_column!]" ], "limit": [ @@ -148523,19 +154485,19 @@ export default { 40 ], "order_by": [ - 4827, + 5115, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5105 ] } ], "tournament_organizers_aggregate": [ - 4809, + 5097, { "distinct_on": [ - 4829, + 5117, "[tournament_organizers_select_column!]" ], "limit": [ @@ -148545,32 +154507,32 @@ export default { 40 ], "order_by": [ - 4827, + 5115, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5105 ] } ], "tournament_organizers_by_pk": [ - 4808, + 5096, { "steam_id": [ - 264, + 268, "bigint!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_prizes": [ - 4849, + 5137, { "distinct_on": [ - 4870, + 5158, "[tournament_prizes_select_column!]" ], "limit": [ @@ -148580,19 +154542,19 @@ export default { 40 ], "order_by": [ - 4868, + 5156, "[tournament_prizes_order_by!]" ], "where": [ - 4858 + 5146 ] } ], "tournament_prizes_aggregate": [ - 4850, + 5138, { "distinct_on": [ - 4870, + 5158, "[tournament_prizes_select_column!]" ], "limit": [ @@ -148602,28 +154564,28 @@ export default { 40 ], "order_by": [ - 4868, + 5156, "[tournament_prizes_order_by!]" ], "where": [ - 4858 + 5146 ] } ], "tournament_prizes_by_pk": [ - 4849, + 5137, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_stage_windows": [ - 4890, + 5178, { "distinct_on": [ - 4911, + 5199, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -148633,19 +154595,19 @@ export default { 40 ], "order_by": [ - 4909, + 5197, "[tournament_stage_windows_order_by!]" ], "where": [ - 4899 + 5187 ] } ], "tournament_stage_windows_aggregate": [ - 4891, + 5179, { "distinct_on": [ - 4911, + 5199, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -148655,28 +154617,28 @@ export default { 40 ], "order_by": [ - 4909, + 5197, "[tournament_stage_windows_order_by!]" ], "where": [ - 4899 + 5187 ] } ], "tournament_stage_windows_by_pk": [ - 4890, + 5178, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_stages": [ - 4931, + 5219, { "distinct_on": [ - 4960, + 5248, "[tournament_stages_select_column!]" ], "limit": [ @@ -148686,19 +154648,19 @@ export default { 40 ], "order_by": [ - 4957, + 5245, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5231 ] } ], "tournament_stages_aggregate": [ - 4932, + 5220, { "distinct_on": [ - 4960, + 5248, "[tournament_stages_select_column!]" ], "limit": [ @@ -148708,28 +154670,28 @@ export default { 40 ], "order_by": [ - 4957, + 5245, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5231 ] } ], "tournament_stages_by_pk": [ - 4931, + 5219, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_team_invites": [ - 4982, + 5270, { "distinct_on": [ - 5003, + 5291, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -148739,19 +154701,19 @@ export default { 40 ], "order_by": [ - 5001, + 5289, "[tournament_team_invites_order_by!]" ], "where": [ - 4991 + 5279 ] } ], "tournament_team_invites_aggregate": [ - 4983, + 5271, { "distinct_on": [ - 5003, + 5291, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -148761,28 +154723,28 @@ export default { 40 ], "order_by": [ - 5001, + 5289, "[tournament_team_invites_order_by!]" ], "where": [ - 4991 + 5279 ] } ], "tournament_team_invites_by_pk": [ - 4982, + 5270, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_team_roster": [ - 5023, + 5311, { "distinct_on": [ - 5044, + 5332, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -148792,19 +154754,19 @@ export default { 40 ], "order_by": [ - 5042, + 5330, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5320 ] } ], "tournament_team_roster_aggregate": [ - 5024, + 5312, { "distinct_on": [ - 5044, + 5332, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -148814,32 +154776,32 @@ export default { 40 ], "order_by": [ - 5042, + 5330, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5320 ] } ], "tournament_team_roster_by_pk": [ - 5023, + 5311, { "player_steam_id": [ - 264, + 268, "bigint!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_teams": [ - 5064, + 5352, { "distinct_on": [ - 5086, + 5374, "[tournament_teams_select_column!]" ], "limit": [ @@ -148849,19 +154811,19 @@ export default { 40 ], "order_by": [ - 5084, + 5372, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5361 ] } ], "tournament_teams_aggregate": [ - 5065, + 5353, { "distinct_on": [ - 5086, + 5374, "[tournament_teams_select_column!]" ], "limit": [ @@ -148871,28 +154833,28 @@ export default { 40 ], "order_by": [ - 5084, + 5372, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5361 ] } ], "tournament_teams_by_pk": [ - 5064, + 5352, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournaments": [ - 5106, + 5394, { "distinct_on": [ - 5140, + 5428, "[tournaments_select_column!]" ], "limit": [ @@ -148902,19 +154864,19 @@ export default { 40 ], "order_by": [ - 5138, + 5426, "[tournaments_order_by!]" ], "where": [ - 5127 + 5415 ] } ], "tournaments_aggregate": [ - 5107, + 5395, { "distinct_on": [ - 5140, + 5428, "[tournaments_select_column!]" ], "limit": [ @@ -148924,28 +154886,28 @@ export default { 40 ], "order_by": [ - 5138, + 5426, "[tournaments_order_by!]" ], "where": [ - 5127 + 5415 ] } ], "tournaments_by_pk": [ - 5106, + 5394, { "id": [ - 5170, + 5458, "uuid!" ] } ], "v_event_player_stats": [ - 5173, + 5461, { "distinct_on": [ - 5199, + 5487, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -148955,19 +154917,19 @@ export default { 40 ], "order_by": [ - 5198, + 5486, "[v_event_player_stats_order_by!]" ], "where": [ - 5192 + 5480 ] } ], "v_event_player_stats_aggregate": [ - 5174, + 5462, { "distinct_on": [ - 5199, + 5487, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -148977,19 +154939,19 @@ export default { 40 ], "order_by": [ - 5198, + 5486, "[v_event_player_stats_order_by!]" ], "where": [ - 5192 + 5480 ] } ], "v_gpu_pool_status": [ - 5224, + 5512, { "distinct_on": [ - 5232, + 5520, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -148999,19 +154961,19 @@ export default { 40 ], "order_by": [ - 5231, + 5519, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5228 + 5516 ] } ], "v_gpu_pool_status_aggregate": [ - 5225, + 5513, { "distinct_on": [ - 5232, + 5520, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -149021,19 +154983,19 @@ export default { 40 ], "order_by": [ - 5231, + 5519, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5228 + 5516 ] } ], "v_league_division_standings": [ - 5242, + 5530, { "distinct_on": [ - 5258, + 5546, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -149043,19 +155005,19 @@ export default { 40 ], "order_by": [ - 5257, + 5545, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5539 ] } ], "v_league_division_standings_aggregate": [ - 5243, + 5531, { "distinct_on": [ - 5258, + 5546, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -149065,19 +155027,19 @@ export default { 40 ], "order_by": [ - 5257, + 5545, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5539 ] } ], "v_league_season_player_stats": [ - 5275, + 5563, { "distinct_on": [ - 5301, + 5589, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -149087,19 +155049,19 @@ export default { 40 ], "order_by": [ - 5300, + 5588, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5294 + 5582 ] } ], "v_league_season_player_stats_aggregate": [ - 5276, + 5564, { "distinct_on": [ - 5301, + 5589, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -149109,19 +155071,19 @@ export default { 40 ], "order_by": [ - 5300, + 5588, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5294 + 5582 ] } ], "v_match_captains": [ - 5326, + 5614, { "distinct_on": [ - 5338, + 5626, "[v_match_captains_select_column!]" ], "limit": [ @@ -149131,19 +155093,19 @@ export default { 40 ], "order_by": [ - 5337, + 5625, "[v_match_captains_order_by!]" ], "where": [ - 5330 + 5618 ] } ], "v_match_captains_aggregate": [ - 5327, + 5615, { "distinct_on": [ - 5338, + 5626, "[v_match_captains_select_column!]" ], "limit": [ @@ -149153,19 +155115,19 @@ export default { 40 ], "order_by": [ - 5337, + 5625, "[v_match_captains_order_by!]" ], "where": [ - 5330 + 5618 ] } ], "v_match_clutches": [ - 5350, + 5638, { "distinct_on": [ - 5366, + 5654, "[v_match_clutches_select_column!]" ], "limit": [ @@ -149175,19 +155137,19 @@ export default { 40 ], "order_by": [ - 5365, + 5653, "[v_match_clutches_order_by!]" ], "where": [ - 5359 + 5647 ] } ], "v_match_clutches_aggregate": [ - 5351, + 5639, { "distinct_on": [ - 5366, + 5654, "[v_match_clutches_select_column!]" ], "limit": [ @@ -149197,19 +155159,19 @@ export default { 40 ], "order_by": [ - 5365, + 5653, "[v_match_clutches_order_by!]" ], "where": [ - 5359 + 5647 ] } ], "v_match_kill_pairs": [ - 5383, + 5671, { "distinct_on": [ - 5391, + 5679, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -149219,19 +155181,19 @@ export default { 40 ], "order_by": [ - 5390, + 5678, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5387 + 5675 ] } ], "v_match_kill_pairs_aggregate": [ - 5384, + 5672, { "distinct_on": [ - 5391, + 5679, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -149241,19 +155203,19 @@ export default { 40 ], "order_by": [ - 5390, + 5678, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5387 + 5675 ] } ], "v_match_lineup_buy_types": [ - 5401, + 5689, { "distinct_on": [ - 5409, + 5697, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -149263,19 +155225,19 @@ export default { 40 ], "order_by": [ - 5408, + 5696, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5405 + 5693 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5402, + 5690, { "distinct_on": [ - 5409, + 5697, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -149285,19 +155247,19 @@ export default { 40 ], "order_by": [ - 5408, + 5696, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5405 + 5693 ] } ], "v_match_lineup_map_stats": [ - 5419, + 5707, { "distinct_on": [ - 5427, + 5715, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -149307,19 +155269,19 @@ export default { 40 ], "order_by": [ - 5426, + 5714, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5423 + 5711 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5420, + 5708, { "distinct_on": [ - 5427, + 5715, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -149329,19 +155291,19 @@ export default { 40 ], "order_by": [ - 5426, + 5714, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5423 + 5711 ] } ], "v_match_map_backup_rounds": [ - 5437, + 5725, { "distinct_on": [ - 5448, + 5736, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -149351,19 +155313,19 @@ export default { 40 ], "order_by": [ - 5447, + 5735, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5441 + 5729 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5438, + 5726, { "distinct_on": [ - 5448, + 5736, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -149373,19 +155335,19 @@ export default { 40 ], "order_by": [ - 5447, + 5735, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5441 + 5729 ] } ], "v_match_player_buy_types": [ - 5460, + 5748, { "distinct_on": [ - 5468, + 5756, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -149395,19 +155357,19 @@ export default { 40 ], "order_by": [ - 5467, + 5755, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5464 + 5752 ] } ], "v_match_player_buy_types_aggregate": [ - 5461, + 5749, { "distinct_on": [ - 5468, + 5756, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -149417,19 +155379,19 @@ export default { 40 ], "order_by": [ - 5467, + 5755, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5464 + 5752 ] } ], "v_match_player_opening_duels": [ - 5478, + 5766, { "distinct_on": [ - 5494, + 5782, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -149439,19 +155401,19 @@ export default { 40 ], "order_by": [ - 5493, + 5781, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5487 + 5775 ] } ], "v_match_player_opening_duels_aggregate": [ - 5479, + 5767, { "distinct_on": [ - 5494, + 5782, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -149461,19 +155423,19 @@ export default { 40 ], "order_by": [ - 5493, + 5781, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5487 + 5775 ] } ], "v_player_arch_nemesis": [ - 5511, + 5799, { "distinct_on": [ - 5519, + 5807, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -149483,19 +155445,19 @@ export default { 40 ], "order_by": [ - 5518, + 5806, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5515 + 5803 ] } ], "v_player_arch_nemesis_aggregate": [ - 5512, + 5800, { "distinct_on": [ - 5519, + 5807, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -149505,19 +155467,19 @@ export default { 40 ], "order_by": [ - 5518, + 5806, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5515 + 5803 ] } ], "v_player_damage": [ - 5529, + 5817, { "distinct_on": [ - 5537, + 5825, "[v_player_damage_select_column!]" ], "limit": [ @@ -149527,19 +155489,19 @@ export default { 40 ], "order_by": [ - 5536, + 5824, "[v_player_damage_order_by!]" ], "where": [ - 5533 + 5821 ] } ], "v_player_damage_aggregate": [ - 5530, + 5818, { "distinct_on": [ - 5537, + 5825, "[v_player_damage_select_column!]" ], "limit": [ @@ -149549,19 +155511,19 @@ export default { 40 ], "order_by": [ - 5536, + 5824, "[v_player_damage_order_by!]" ], "where": [ - 5533 + 5821 ] } ], "v_player_elo": [ - 5547, + 5835, { "distinct_on": [ - 5573, + 5861, "[v_player_elo_select_column!]" ], "limit": [ @@ -149571,19 +155533,19 @@ export default { 40 ], "order_by": [ - 5572, + 5860, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5854 ] } ], "v_player_elo_aggregate": [ - 5548, + 5836, { "distinct_on": [ - 5573, + 5861, "[v_player_elo_select_column!]" ], "limit": [ @@ -149593,19 +155555,19 @@ export default { 40 ], "order_by": [ - 5572, + 5860, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5854 ] } ], "v_player_map_losses": [ - 5598, + 5886, { "distinct_on": [ - 5606, + 5894, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -149615,19 +155577,19 @@ export default { 40 ], "order_by": [ - 5605, + 5893, "[v_player_map_losses_order_by!]" ], "where": [ - 5602 + 5890 ] } ], "v_player_map_losses_aggregate": [ - 5599, + 5887, { "distinct_on": [ - 5606, + 5894, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -149637,19 +155599,19 @@ export default { 40 ], "order_by": [ - 5605, + 5893, "[v_player_map_losses_order_by!]" ], "where": [ - 5602 + 5890 ] } ], "v_player_map_wins": [ - 5616, + 5904, { "distinct_on": [ - 5624, + 5912, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -149659,19 +155621,19 @@ export default { 40 ], "order_by": [ - 5623, + 5911, "[v_player_map_wins_order_by!]" ], "where": [ - 5620 + 5908 ] } ], "v_player_map_wins_aggregate": [ - 5617, + 5905, { "distinct_on": [ - 5624, + 5912, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -149681,19 +155643,19 @@ export default { 40 ], "order_by": [ - 5623, + 5911, "[v_player_map_wins_order_by!]" ], "where": [ - 5620 + 5908 ] } ], "v_player_match_head_to_head": [ - 5634, + 5922, { "distinct_on": [ - 5642, + 5930, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -149703,19 +155665,19 @@ export default { 40 ], "order_by": [ - 5641, + 5929, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5638 + 5926 ] } ], "v_player_match_head_to_head_aggregate": [ - 5635, + 5923, { "distinct_on": [ - 5642, + 5930, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -149725,19 +155687,19 @@ export default { 40 ], "order_by": [ - 5641, + 5929, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5638 + 5926 ] } ], "v_player_match_map_hltv": [ - 5652, + 5940, { "distinct_on": [ - 5670, + 5958, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -149747,19 +155709,19 @@ export default { 40 ], "order_by": [ - 5669, + 5957, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5661 + 5949 ] } ], "v_player_match_map_hltv_aggregate": [ - 5653, + 5941, { "distinct_on": [ - 5670, + 5958, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -149769,19 +155731,19 @@ export default { 40 ], "order_by": [ - 5669, + 5957, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5661 + 5949 ] } ], "v_player_match_map_roles": [ - 5689, + 5977, { "distinct_on": [ - 5697, + 5985, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -149791,19 +155753,19 @@ export default { 40 ], "order_by": [ - 5696, + 5984, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5693 + 5981 ] } ], "v_player_match_map_roles_aggregate": [ - 5690, + 5978, { "distinct_on": [ - 5697, + 5985, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -149813,19 +155775,19 @@ export default { 40 ], "order_by": [ - 5696, + 5984, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5693 + 5981 ] } ], "v_player_match_performance": [ - 5707, + 5995, { "distinct_on": [ - 5715, + 6003, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -149835,19 +155797,19 @@ export default { 40 ], "order_by": [ - 5714, + 6002, "[v_player_match_performance_order_by!]" ], "where": [ - 5711 + 5999 ] } ], "v_player_match_performance_aggregate": [ - 5708, + 5996, { "distinct_on": [ - 5715, + 6003, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -149857,19 +155819,19 @@ export default { 40 ], "order_by": [ - 5714, + 6002, "[v_player_match_performance_order_by!]" ], "where": [ - 5711 + 5999 ] } ], "v_player_match_rating": [ - 5725, + 6013, { "distinct_on": [ - 5733, + 6021, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -149879,19 +155841,19 @@ export default { 40 ], "order_by": [ - 5732, + 6020, "[v_player_match_rating_order_by!]" ], "where": [ - 5729 + 6017 ] } ], "v_player_match_rating_aggregate": [ - 5726, + 6014, { "distinct_on": [ - 5733, + 6021, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -149901,19 +155863,19 @@ export default { 40 ], "order_by": [ - 5732, + 6020, "[v_player_match_rating_order_by!]" ], "where": [ - 5729 + 6017 ] } ], "v_player_multi_kills": [ - 5743, + 6031, { "distinct_on": [ - 5759, + 6047, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -149923,19 +155885,19 @@ export default { 40 ], "order_by": [ - 5758, + 6046, "[v_player_multi_kills_order_by!]" ], "where": [ - 5752 + 6040 ] } ], "v_player_multi_kills_aggregate": [ - 5744, + 6032, { "distinct_on": [ - 5759, + 6047, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -149945,19 +155907,19 @@ export default { 40 ], "order_by": [ - 5758, + 6046, "[v_player_multi_kills_order_by!]" ], "where": [ - 5752 + 6040 ] } ], "v_player_queue_partners": [ - 5776, + 6064, { "distinct_on": [ - 5784, + 6072, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -149967,19 +155929,19 @@ export default { 40 ], "order_by": [ - 5783, + 6071, "[v_player_queue_partners_order_by!]" ], "where": [ - 5780 + 6068 ] } ], "v_player_queue_partners_aggregate": [ - 5777, + 6065, { "distinct_on": [ - 5784, + 6072, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -149989,19 +155951,19 @@ export default { 40 ], "order_by": [ - 5783, + 6071, "[v_player_queue_partners_order_by!]" ], "where": [ - 5780 + 6068 ] } ], "v_player_weapon_damage": [ - 5794, + 6082, { "distinct_on": [ - 5802, + 6090, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -150011,19 +155973,19 @@ export default { 40 ], "order_by": [ - 5801, + 6089, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5798 + 6086 ] } ], "v_player_weapon_damage_aggregate": [ - 5795, + 6083, { "distinct_on": [ - 5802, + 6090, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -150033,19 +155995,19 @@ export default { 40 ], "order_by": [ - 5801, + 6089, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5798 + 6086 ] } ], "v_player_weapon_kills": [ - 5812, + 6100, { "distinct_on": [ - 5820, + 6108, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -150055,19 +156017,19 @@ export default { 40 ], "order_by": [ - 5819, + 6107, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5816 + 6104 ] } ], "v_player_weapon_kills_aggregate": [ - 5813, + 6101, { "distinct_on": [ - 5820, + 6108, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -150077,19 +156039,19 @@ export default { 40 ], "order_by": [ - 5819, + 6107, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5816 + 6104 ] } ], "v_pool_maps": [ - 5830, + 6118, { "distinct_on": [ - 5847, + 6135, "[v_pool_maps_select_column!]" ], "limit": [ @@ -150099,19 +156061,19 @@ export default { 40 ], "order_by": [ - 5846, + 6134, "[v_pool_maps_order_by!]" ], "where": [ - 5839 + 6127 ] } ], "v_pool_maps_aggregate": [ - 5831, + 6119, { "distinct_on": [ - 5847, + 6135, "[v_pool_maps_select_column!]" ], "limit": [ @@ -150121,19 +156083,19 @@ export default { 40 ], "order_by": [ - 5846, + 6134, "[v_pool_maps_order_by!]" ], "where": [ - 5839 + 6127 ] } ], "v_steam_account_pool_status": [ - 5854, + 6142, { "distinct_on": [ - 5862, + 6150, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -150143,19 +156105,19 @@ export default { 40 ], "order_by": [ - 5861, + 6149, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5858 + 6146 ] } ], "v_steam_account_pool_status_aggregate": [ - 5855, + 6143, { "distinct_on": [ - 5862, + 6150, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -150165,19 +156127,19 @@ export default { 40 ], "order_by": [ - 5861, + 6149, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5858 + 6146 ] } ], "v_team_ranks": [ - 5872, + 6160, { "distinct_on": [ - 5882, + 6170, "[v_team_ranks_select_column!]" ], "limit": [ @@ -150187,19 +156149,19 @@ export default { 40 ], "order_by": [ - 5881, + 6169, "[v_team_ranks_order_by!]" ], "where": [ - 5876 + 6164 ] } ], "v_team_ranks_aggregate": [ - 5873, + 6161, { "distinct_on": [ - 5882, + 6170, "[v_team_ranks_select_column!]" ], "limit": [ @@ -150209,19 +156171,19 @@ export default { 40 ], "order_by": [ - 5881, + 6169, "[v_team_ranks_order_by!]" ], "where": [ - 5876 + 6164 ] } ], "v_team_reputation": [ - 5892, + 6180, { "distinct_on": [ - 5902, + 6190, "[v_team_reputation_select_column!]" ], "limit": [ @@ -150231,19 +156193,19 @@ export default { 40 ], "order_by": [ - 5901, + 6189, "[v_team_reputation_order_by!]" ], "where": [ - 5896 + 6184 ] } ], "v_team_reputation_aggregate": [ - 5893, + 6181, { "distinct_on": [ - 5902, + 6190, "[v_team_reputation_select_column!]" ], "limit": [ @@ -150253,19 +156215,19 @@ export default { 40 ], "order_by": [ - 5901, + 6189, "[v_team_reputation_order_by!]" ], "where": [ - 5896 + 6184 ] } ], "v_team_stage_results": [ - 5912, + 6200, { "distinct_on": [ - 5944, + 6232, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -150275,19 +156237,19 @@ export default { 40 ], "order_by": [ - 5942, + 6230, "[v_team_stage_results_order_by!]" ], "where": [ - 5931 + 6219 ] } ], "v_team_stage_results_aggregate": [ - 5913, + 6201, { "distinct_on": [ - 5944, + 6232, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -150297,32 +156259,32 @@ export default { 40 ], "order_by": [ - 5942, + 6230, "[v_team_stage_results_order_by!]" ], "where": [ - 5931 + 6219 ] } ], "v_team_stage_results_by_pk": [ - 5912, + 6200, { "tournament_stage_id": [ - 5170, + 5458, "uuid!" ], "tournament_team_id": [ - 5170, + 5458, "uuid!" ] } ], "v_team_tournament_results": [ - 5972, + 6260, { "distinct_on": [ - 5998, + 6286, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -150332,19 +156294,19 @@ export default { 40 ], "order_by": [ - 5997, + 6285, "[v_team_tournament_results_order_by!]" ], "where": [ - 5991 + 6279 ] } ], "v_team_tournament_results_aggregate": [ - 5973, + 6261, { "distinct_on": [ - 5998, + 6286, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -150354,19 +156316,19 @@ export default { 40 ], "order_by": [ - 5997, + 6285, "[v_team_tournament_results_order_by!]" ], "where": [ - 5991 + 6279 ] } ], "v_tournament_player_stats": [ - 6023, + 6311, { "distinct_on": [ - 6049, + 6337, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -150376,19 +156338,19 @@ export default { 40 ], "order_by": [ - 6048, + 6336, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6042 + 6330 ] } ], "v_tournament_player_stats_aggregate": [ - 6024, + 6312, { "distinct_on": [ - 6049, + 6337, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -150398,116 +156360,116 @@ export default { 40 ], "order_by": [ - 6048, + 6336, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6042 + 6330 ] } ], "webPushStatus": [ - 106 + 110 ], "__typename": [ - 80 + 83 ] }, "Mutation": { "PreviewTournamentMatchReset": [ - 57, + 59, { "match_id": [ - 5170, + 5458, "uuid!" ] } ], "ResetTournamentMatch": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ], "reset_status": [ - 80 + 83 ], "scheduled_at": [ - 4670 + 4958 ], "winning_lineup_id": [ - 5170 + 5458 ] } ], "acceptInvite": [ - 83, + 86, { "invite_id": [ - 5170, + 5458, "uuid!" ], "type": [ - 80, + 83, "String!" ] } ], "addDraftPlayer": [ - 83, + 86, { "draftGameId": [ - 5170, + 5458, "uuid!" ], "lineup": [ 40 ], "steamId": [ - 80, + 83, "String!" ] } ], "addSteamPresenceBotAccount": [ - 83, + 86, { "bot_secret": [ - 80, + 83, "String!" ], "friend_capacity": [ 40 ], "username": [ - 80, + 83, "String!" ] } ], "approveNameChange": [ - 83, + 86, { "name": [ - 80, + 83, "String!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "approve_league_season_movements": [ - 2166, + 2427, { "args": [ - 194, + 198, "approve_league_season_movements_args!" ], "distinct_on": [ - 2187, + 2448, "[league_team_movements_select_column!]" ], "limit": [ @@ -150517,146 +156479,146 @@ export default { 40 ], "order_by": [ - 2185, + 2446, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2436 ] } ], "assignSteamPresenceBot": [ - 76 + 79 ], "attachDemo": [ - 104 + 108 ], "backfillSeasonElo": [ - 60, + 62, { "season_id": [ - 80, + 83, "String!" ] } ], "backfillSeasonEloStatus": [ - 69 + 72 ], "bakeShaders": [ - 83, + 86, { "game_server_node_id": [ - 5170, + 5458, "uuid!" ] } ], "callForOrganizer": [ - 83, + 86, { "match_id": [ - 80, + 83, "String!" ] } ], "cancelBackfillSeasonElo": [ - 83 + 86 ], "cancelBakeShaders": [ - 83, + 86, { "game_server_node_id": [ - 5170, + 5458, "uuid!" ] } ], "cancelClipRender": [ - 83, + 86, { "job_id": [ - 5170, + 5458, "uuid!" ] } ], "cancelClipRenderBatch": [ - 83, + 86, { "match_map_id": [ - 5170, + 5458, "uuid!" ] } ], "cancelMatch": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ] } ], "cancelRecomputePlayerElo": [ - 83 + 86 ], "cancelRefreshAllPlayers": [ - 83 + 86 ], "cancelReparseAllDemos": [ - 83 + 86 ], "cancelScrimRequest": [ - 83, + 86, { "request_id": [ - 5170, + 5458, "uuid!" ] } ], "checkIntoMatch": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ] } ], "clearClipRenderBatch": [ - 83, + 86, { "match_map_id": [ - 5170, + 5458, "uuid!" ] } ], "clearFinishedClipRenders": [ - 83 + 86 ], "clearPendingMatchImport": [ 55, { "valve_match_id": [ - 80, + 83, "String!" ] } ], "clone_league_season": [ - 2133, + 2394, { "args": [ - 346, + 350, "clone_league_season_args!" ], "distinct_on": [ - 2153, + 2414, "[league_seasons_select_column!]" ], "limit": [ @@ -150666,23 +156628,23 @@ export default { 40 ], "order_by": [ - 2150, + 2411, "[league_seasons_order_by!]" ], "where": [ - 2138 + 2399 ] } ], "counterScrimRequest": [ - 83, + 86, { "proposed_scheduled_at": [ - 4670, + 4958, "timestamptz!" ], "request_id": [ - 5170, + 5458, "uuid!" ] } @@ -150691,7 +156653,7 @@ export default { 2, { "label": [ - 80, + 83, "String!" ] } @@ -150703,25 +156665,25 @@ export default { 40 ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "preset": [ - 80, + 83, "String!" ], "resolution": [ - 80 + 83 ], "target_name": [ - 80 + 83 ], "target_steam_id": [ - 80, + 83, "String!" ], "title": [ - 80 + 83 ] } ], @@ -150735,10 +156697,10 @@ export default { } ], "createClips": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ] } @@ -150747,7 +156709,7 @@ export default { 16, { "settings": [ - 1930, + 2191, "jsonb!" ] } @@ -150756,71 +156718,71 @@ export default { 17, { "lineup_1": [ - 68, + 71, "ScheduledLineupInput!" ], "lineup_2": [ - 68, + 71, "ScheduledLineupInput!" ], "options": [ - 1930, + 2191, "jsonb!" ], "scheduled_at": [ - 80, + 83, "String!" ] } ], "createServerDirectory": [ - 83, + 86, { "dir_path": [ - 80, + 83, "String!" ], "node_id": [ - 80, + 83, "String!" ], "server_id": [ - 80 + 83 ] } ], "deleteAward": [ - 83, + 86, { "id": [ - 5170, + 5458, "uuid!" ] } ], "deleteClip": [ - 83, + 86, { "clip_id": [ - 5170, + 5458, "uuid!" ] } ], "deleteMatch": [ - 83, + 86, { "match_id": [ - 80, + 83, "String!" ] } ], "deleteNewsPost": [ - 83, + 86, { "id": [ - 5170, + 5458, "uuid!" ] } @@ -150829,1333 +156791,1507 @@ export default { 21, { "keys": [ - 80, + 83, "[String!]" ] } ], "deleteServerItem": [ - 83, + 86, { "node_id": [ - 80, + 83, "String!" ], "path": [ - 80, + 83, "String!" ], "server_id": [ - 80 + 83 ] } ], "deleteTournament": [ - 83, + 86, { "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "delete__map_pool": [ - 115, + 119, { "where": [ - 110, + 114, "_map_pool_bool_exp!" ] } ], "delete__map_pool_by_pk": [ - 107, + 111, { "map_id": [ - 5170, + 5458, "uuid!" ], "map_pool_id": [ - 5170, + 5458, "uuid!" ] } ], "delete_abandoned_matches": [ - 143, + 147, { "where": [ - 135, + 139, "abandoned_matches_bool_exp!" ] } ], "delete_abandoned_matches_by_pk": [ - 126, + 130, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_api_keys": [ - 177, + 181, { "where": [ - 171, + 175, "api_keys_bool_exp!" ] } ], "delete_api_keys_by_pk": [ - 167, + 171, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_award_recipients": [ - 212, + 216, { "where": [ - 204, + 208, "award_recipients_bool_exp!" ] } ], "delete_award_recipients_by_pk": [ - 195, + 199, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_awards": [ - 246, + 250, { "where": [ - 240, + 244, "awards_bool_exp!" ] } ], "delete_awards_by_pk": [ - 236, + 240, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_chat_read_state": [ - 279, + 283, { "where": [ - 273, + 277, "chat_read_state_bool_exp!" ] } ], "delete_chat_read_state_by_pk": [ - 269, + 273, { "steam_id": [ - 264, + 268, "bigint!" ], "thread": [ - 80, + 83, "String!" ] } ], "delete_clip_render_jobs": [ - 319, + 323, { "where": [ - 308, + 312, "clip_render_jobs_bool_exp!" ] } ], "delete_clip_render_jobs_by_pk": [ - 296, + 300, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_custom_pages": [ - 362, + 366, { "where": [ - 353, + 357, "custom_pages_bool_exp!" ] } ], "delete_custom_pages_by_pk": [ - 348, + 352, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_db_backups": [ - 390, + 394, { "where": [ - 384, + 388, "db_backups_bool_exp!" ] } ], "delete_db_backups_by_pk": [ - 380, + 384, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_direct_conversations": [ - 417, + 421, { "where": [ - 411, + 415, "direct_conversations_bool_exp!" ] } ], "delete_direct_conversations_by_pk": [ - 407, + 411, { "room_id": [ - 80, + 83, "String!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "delete_direct_messages": [ - 444, + 448, { "where": [ - 438, + 442, "direct_messages_bool_exp!" ] } ], "delete_direct_messages_by_pk": [ - 434, + 438, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_draft_game_picks": [ - 480, + 484, { "where": [ - 472, + 476, "draft_game_picks_bool_exp!" ] } ], "delete_draft_game_picks_by_pk": [ - 461, + 465, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_draft_game_players": [ - 525, + 529, { "where": [ - 517, + 521, "draft_game_players_bool_exp!" ] } ], "delete_draft_game_players_by_pk": [ - 506, + 510, { "draft_game_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "delete_draft_games": [ - 570, + 574, { "where": [ - 562, + 566, "draft_games_bool_exp!" ] } ], "delete_draft_games_by_pk": [ - 551, + 555, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_e_award_sources": [ - 607, + 611, { "where": [ - 600, + 604, "e_award_sources_bool_exp!" ] } ], "delete_e_award_sources_by_pk": [ - 597, + 601, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_award_tiers": [ - 627, + 631, { "where": [ - 620, + 624, "e_award_tiers_bool_exp!" ] } ], "delete_e_award_tiers_by_pk": [ - 617, + 621, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_check_in_settings": [ - 647, + 651, { "where": [ - 640, + 644, "e_check_in_settings_bool_exp!" ] } ], "delete_e_check_in_settings_by_pk": [ - 637, + 641, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_draft_game_captain_selection": [ - 667, + 671, { "where": [ - 660, + 664, "e_draft_game_captain_selection_bool_exp!" ] } ], "delete_e_draft_game_captain_selection_by_pk": [ - 657, + 661, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_draft_game_draft_order": [ - 688, + 692, { "where": [ - 681, + 685, "e_draft_game_draft_order_bool_exp!" ] } ], "delete_e_draft_game_draft_order_by_pk": [ - 678, + 682, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_draft_game_mode": [ - 709, + 713, { "where": [ - 702, + 706, "e_draft_game_mode_bool_exp!" ] } ], "delete_e_draft_game_mode_by_pk": [ - 699, + 703, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_draft_game_player_status": [ - 730, + 734, { "where": [ - 723, + 727, "e_draft_game_player_status_bool_exp!" ] } ], "delete_e_draft_game_player_status_by_pk": [ - 720, + 724, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_draft_game_status": [ - 751, + 755, { "where": [ - 744, + 748, "e_draft_game_status_bool_exp!" ] } ], "delete_e_draft_game_status_by_pk": [ - 741, + 745, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_event_media_access": [ - 772, + 776, { "where": [ - 765, + 769, "e_event_media_access_bool_exp!" ] } ], "delete_e_event_media_access_by_pk": [ - 762, + 766, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_event_visibility": [ - 792, + 796, { "where": [ - 785, + 789, "e_event_visibility_bool_exp!" ] } ], "delete_e_event_visibility_by_pk": [ - 782, + 786, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_friend_status": [ - 812, + 816, { "where": [ - 805, + 809, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 802, + 806, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_game_cfg_types": [ - 833, + 837, { "where": [ - 826, + 830, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 823, + 827, { "value": [ - 80, + 83, + "String!" + ] + } + ], + "delete_e_game_plugin_channels": [ + 857, + { + "where": [ + 850, + "e_game_plugin_channels_bool_exp!" + ] + } + ], + "delete_e_game_plugin_channels_by_pk": [ + 847, + { + "value": [ + 83, + "String!" + ] + } + ], + "delete_e_game_plugin_install_statuses": [ + 877, + { + "where": [ + 870, + "e_game_plugin_install_statuses_bool_exp!" + ] + } + ], + "delete_e_game_plugin_install_statuses_by_pk": [ + 867, + { + "value": [ + 83, + "String!" + ] + } + ], + "delete_e_game_plugin_kinds": [ + 897, + { + "where": [ + 890, + "e_game_plugin_kinds_bool_exp!" + ] + } + ], + "delete_e_game_plugin_kinds_by_pk": [ + 887, + { + "value": [ + 83, "String!" ] } ], "delete_e_game_server_node_statuses": [ - 853, + 917, { "where": [ - 846, + 910, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 843, + 907, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_league_movement_types": [ - 874, + 938, { "where": [ - 867, + 931, "e_league_movement_types_bool_exp!" ] } ], "delete_e_league_movement_types_by_pk": [ - 864, + 928, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_league_proposal_statuses": [ - 895, + 959, { "where": [ - 888, + 952, "e_league_proposal_statuses_bool_exp!" ] } ], "delete_e_league_proposal_statuses_by_pk": [ - 885, + 949, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_league_registration_statuses": [ - 916, + 980, { "where": [ - 909, + 973, "e_league_registration_statuses_bool_exp!" ] } ], "delete_e_league_registration_statuses_by_pk": [ - 906, + 970, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_league_season_statuses": [ - 937, + 1001, { "where": [ - 930, + 994, "e_league_season_statuses_bool_exp!" ] } ], "delete_e_league_season_statuses_by_pk": [ - 927, + 991, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_lobby_access": [ - 958, + 1022, { "where": [ - 951, + 1015, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 948, + 1012, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_lobby_player_status": [ - 979, + 1043, { "where": [ - 972, + 1036, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 969, + 1033, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_map_pool_types": [ - 999, + 1063, { "where": [ - 992, + 1056, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 989, + 1053, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_match_clip_visibility": [ - 1020, + 1084, { "where": [ - 1013, + 1077, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 1010, + 1074, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_match_map_status": [ - 1040, + 1104, { "where": [ - 1033, + 1097, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 1030, + 1094, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_match_mode": [ - 1061, + 1125, { "where": [ - 1054, + 1118, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 1051, + 1115, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_match_party_sources": [ - 1081, + 1145, { "where": [ - 1074, + 1138, "e_match_party_sources_bool_exp!" ] } ], "delete_e_match_party_sources_by_pk": [ - 1071, + 1135, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_match_status": [ - 1101, + 1165, { "where": [ - 1094, + 1158, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 1091, + 1155, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_match_types": [ - 1122, + 1186, { "where": [ - 1115, + 1179, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 1112, + 1176, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_notification_types": [ - 1143, + 1207, { "where": [ - 1136, + 1200, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 1133, + 1197, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_objective_types": [ - 1163, + 1227, { "where": [ - 1156, + 1220, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 1153, + 1217, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_player_roles": [ - 1183, + 1247, { "where": [ - 1176, + 1240, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 1173, + 1237, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_plugin_runtimes": [ - 1203, + 1267, { "where": [ - 1196, + 1260, "e_plugin_runtimes_bool_exp!" ] } ], "delete_e_plugin_runtimes_by_pk": [ - 1193, + 1257, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_ready_settings": [ - 1223, + 1287, { "where": [ - 1216, + 1280, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 1213, + 1277, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_sanction_types": [ - 1243, + 1307, { "where": [ - 1236, + 1300, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 1233, + 1297, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_scrim_request_statuses": [ - 1264, + 1328, { "where": [ - 1257, + 1321, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 1254, + 1318, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_server_types": [ - 1284, + 1348, { "where": [ - 1277, + 1341, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 1274, + 1338, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_sides": [ - 1304, + 1368, { "where": [ - 1297, + 1361, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 1294, + 1358, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_system_alert_types": [ - 1324, + 1388, { "where": [ - 1317, + 1381, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 1314, + 1378, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_team_roles": [ - 1344, + 1408, { "where": [ - 1337, + 1401, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 1334, + 1398, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_team_roster_statuses": [ - 1365, + 1429, { "where": [ - 1358, + 1422, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 1355, + 1419, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_timeout_settings": [ - 1385, + 1449, { "where": [ - 1378, + 1442, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 1375, + 1439, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_tournament_categories": [ - 1405, + 1469, { "where": [ - 1398, + 1462, "e_tournament_categories_bool_exp!" ] } ], "delete_e_tournament_categories_by_pk": [ - 1395, + 1459, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_tournament_stage_types": [ - 1426, + 1490, { "where": [ - 1419, + 1483, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 1416, + 1480, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_tournament_status": [ - 1447, + 1511, { "where": [ - 1440, + 1504, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1437, + 1501, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_utility_types": [ - 1468, + 1532, { "where": [ - 1461, + 1525, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1458, + 1522, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_veto_pick_types": [ - 1488, + 1552, { "where": [ - 1481, + 1545, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1478, + 1542, { "value": [ - 80, + 83, "String!" ] } ], "delete_e_winning_reasons": [ - 1508, + 1572, { "where": [ - 1501, + 1565, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1498, + 1562, { "value": [ - 80, + 83, "String!" ] } ], "delete_event_match_links": [ - 1526, + 1590, { "where": [ - 1521, + 1585, "event_match_links_bool_exp!" ] } ], "delete_event_match_links_by_pk": [ - 1518, + 1582, { "event_id": [ - 5170, + 5458, "uuid!" ], "match_id": [ - 5170, + 5458, "uuid!" ] } ], "delete_event_media": [ - 1553, + 1617, { "where": [ - 1545, + 1609, "event_media_bool_exp!" ] } ], "delete_event_media_by_pk": [ - 1536, + 1600, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_event_media_players": [ - 1575, + 1639, { "where": [ - 1567, + 1631, "event_media_players_bool_exp!" ] } ], "delete_event_media_players_by_pk": [ - 1558, + 1622, { "media_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "delete_event_organizers": [ - 1636, + 1700, { "where": [ - 1628, + 1692, "event_organizers_bool_exp!" ] } ], "delete_event_organizers_by_pk": [ - 1619, + 1683, { "event_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "delete_event_players": [ - 1677, + 1741, { "where": [ - 1669, + 1733, "event_players_bool_exp!" ] } ], "delete_event_players_by_pk": [ - 1660, + 1724, { "event_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "delete_event_teams": [ - 1715, + 1779, { "where": [ - 1708, + 1772, "event_teams_bool_exp!" ] } ], "delete_event_teams_by_pk": [ - 1701, + 1765, { "event_id": [ - 5170, + 5458, "uuid!" ], "team_id": [ - 5170, + 5458, "uuid!" ] } ], "delete_event_tournaments": [ - 1739, + 1803, { "where": [ - 1732, + 1796, "event_tournaments_bool_exp!" ] } ], "delete_event_tournaments_by_pk": [ - 1725, + 1789, { "event_id": [ - 5170, + 5458, "uuid!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "delete_events": [ - 1759, + 1823, { "where": [ - 1753, + 1817, "events_bool_exp!" ] } ], "delete_events_by_pk": [ - 1749, + 1813, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_friends": [ - 1789, + 1853, { "where": [ - 1783, + 1847, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1779, + 1843, { "other_player_steam_id": [ - 264, + 268, "bigint!" ], "player_steam_id": [ - 264, + 268, "bigint!" ] } ], + "delete_game_mode_plugins": [ + 1893, + { + "where": [ + 1882, + "game_mode_plugins_bool_exp!" + ] + } + ], + "delete_game_mode_plugins_by_pk": [ + 1870, + { + "game_mode_id": [ + 5458, + "uuid!" + ], + "plugin_slug": [ + 83, + "String!" + ] + } + ], + "delete_game_modes": [ + 1932, + { + "where": [ + 1924, + "game_modes_bool_exp!" + ] + } + ], + "delete_game_modes_by_pk": [ + 1920, + { + "id": [ + 5458, + "uuid!" + ] + } + ], + "delete_game_plugin_installs": [ + 1952, + { + "where": [ + 1947, + "game_plugin_installs_bool_exp!" + ] + } + ], + "delete_game_plugin_installs_by_pk": [ + 1944, + { + "plugin_slug": [ + 83, + "String!" + ] + } + ], + "delete_game_plugin_versions": [ + 1981, + { + "where": [ + 1973, + "game_plugin_versions_bool_exp!" + ] + } + ], + "delete_game_plugin_versions_by_pk": [ + 1962, + { + "plugin_slug": [ + 83, + "String!" + ], + "runtime": [ + 1262, + "e_plugin_runtimes_enum!" + ], + "version": [ + 83, + "String!" + ] + } + ], + "delete_game_plugins": [ + 2020, + { + "where": [ + 2012, + "game_plugins_bool_exp!" + ] + } + ], + "delete_game_plugins_by_pk": [ + 2007, + { + "slug": [ + 83, + "String!" + ] + } + ], + "delete_game_server_node_plugins": [ + 2055, + { + "where": [ + 2048, + "game_server_node_plugins_bool_exp!" + ] + } + ], + "delete_game_server_node_plugins_by_pk": [ + 2039, + { + "id": [ + 5458, + "uuid!" + ] + } + ], "delete_game_server_nodes": [ - 1829, + 2090, { "where": [ - 1818, + 2079, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1806, + 2067, { "id": [ - 80, + 83, "String!" ] } ], "delete_game_versions": [ - 1871, + 2132, { "where": [ - 1862, + 2123, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1857, + 2118, { "build_id": [ 40, @@ -152164,1781 +158300,1781 @@ export default { } ], "delete_gamedata_signature_validations": [ - 1904, + 2165, { "where": [ - 1895, + 2156, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1890, + 2151, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1942, + 2203, { "where": [ - 1937, + 2198, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 1967, + 2228, { "where": [ - 1961, + 2222, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 1957, + 2218, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_league_match_weeks": [ - 2002, + 2263, { "where": [ - 1994, + 2255, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 1985, + 2246, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 2043, + 2304, { "where": [ - 2035, + 2296, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 2026, + 2287, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 2084, + 2345, { "where": [ - 2076, + 2337, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 2067, + 2328, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_league_season_divisions": [ - 2122, + 2383, { "where": [ - 2115, + 2376, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 2108, + 2369, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_league_seasons": [ - 2147, + 2408, { "where": [ - 2138, + 2399, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 2133, + 2394, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_league_team_movements": [ - 2183, + 2444, { "where": [ - 2175, + 2436, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 2166, + 2427, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_league_team_rosters": [ - 2224, + 2485, { "where": [ - 2216, + 2477, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 2207, + 2468, { "league_team_season_id": [ - 5170, + 5458, "uuid!" ], "player_steam_id": [ - 264, + 268, "bigint!" ] } ], "delete_league_team_seasons": [ - 2265, + 2526, { "where": [ - 2257, + 2518, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 2248, + 2509, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_league_teams": [ - 2298, + 2559, { "where": [ - 2293, + 2554, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 2290, + 2551, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_lobbies": [ - 2317, + 2578, { "where": [ - 2312, + 2573, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 2309, + 2570, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_lobby_players": [ - 2347, + 2608, { "where": [ - 2339, + 2600, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 2328, + 2589, { "lobby_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "delete_map_pools": [ - 2381, + 2642, { "where": [ - 2376, + 2637, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 2373, + 2634, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_maps": [ - 2408, + 2669, { "where": [ - 2401, + 2662, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 2392, + 2653, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_match_clips": [ - 2438, + 2699, { "where": [ - 2430, + 2691, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 2421, + 2682, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_match_demo_sessions": [ - 2484, + 2745, { "where": [ - 2473, + 2734, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 2463, + 2724, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_match_lineup_players": [ - 2528, + 2789, { "where": [ - 2520, + 2781, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 2509, + 2770, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_match_lineups": [ - 2571, + 2832, { "where": [ - 2563, + 2824, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 2554, + 2815, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_match_map_demos": [ - 2619, + 2880, { "where": [ - 2608, + 2869, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2596, + 2857, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_match_map_rounds": [ - 2664, + 2925, { "where": [ - 2656, + 2917, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2647, + 2908, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2704, + 2965, { "where": [ - 2697, + 2958, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2688, + 2949, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_match_maps": [ - 2733, + 2994, { "where": [ - 2725, + 2986, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2716, + 2977, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_match_options": [ - 2768, + 3038, { "where": [ - 2762, + 3030, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2758, + 3019, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2802, + 3081, { "where": [ - 2795, + 3074, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2786, + 3065, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_match_streams": [ - 2837, + 3116, { "where": [ - 2826, + 3105, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2814, + 3093, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2872, + 3151, { "where": [ - 2867, + 3146, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2864, + 3143, { "type": [ - 828, + 832, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 2899, + 3180, { "where": [ - 2891, + 3172, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2882, + 3161, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2932, + 3215, { "where": [ - 2927, + 3210, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2924, + 3207, { "name": [ - 80, + 83, "String!" ] } ], "delete_my_friends": [ - 2964, + 3247, { "where": [ - 2954, + 3237, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2998, + 3281, { "where": [ - 2992, + 3275, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2988, + 3271, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_notification_preferences": [ - 3025, + 3308, { "where": [ - 3019, + 3302, "notification_preferences_bool_exp!" ] } ], "delete_notification_preferences_by_pk": [ - 3015, + 3298, { "channel": [ - 80, + 83, "String!" ], "key": [ - 80, + 83, "String!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "delete_notifications": [ - 3065, + 3348, { "where": [ - 3054, + 3337, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 3042, + 3325, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_pending_match_import_players": [ - 3112, + 3395, { "where": [ - 3104, + 3387, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 3095, + 3378, { "steam_id": [ - 264, + 268, "bigint!" ], "valve_match_id": [ - 3092, + 3375, "numeric!" ] } ], "delete_pending_match_imports": [ - 3146, + 3429, { "where": [ - 3140, + 3423, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 3136, + 3419, { "valve_match_id": [ - 3092, + 3375, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 3174, + 3457, { "where": [ - 3168, + 3451, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 3164, + 3447, { "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 3208, + 3491, { "where": [ - 3200, + 3483, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 3191, + 3474, { "match_map_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ], "weapon_class": [ - 80, + 83, "String!" ] } ], "delete_player_assists": [ - 3251, + 3534, { "where": [ - 3243, + 3526, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 3232, + 3515, { "attacked_steam_id": [ - 264, + 268, "bigint!" ], "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "delete_player_damages": [ - 3312, + 3595, { "where": [ - 3304, + 3587, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 3295, + 3578, { "id": [ - 5170, + 5458, "uuid!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "delete_player_elo": [ - 3346, + 3629, { "where": [ - 3340, + 3623, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 3336, + 3619, { "match_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ], "type": [ - 1117, + 1181, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 3380, + 3663, { "where": [ - 3372, + 3655, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 3363, + 3646, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_player_flashes": [ - 3423, + 3706, { "where": [ - 3415, + 3698, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 3404, + 3687, { "attacked_steam_id": [ - 264, + 268, "bigint!" ], "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "delete_player_kills": [ - 3509, + 3792, { "where": [ - 3460, + 3743, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 3449, + 3732, { "attacked_steam_id": [ - 264, + 268, "bigint!" ], "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 3478, + 3761, { "where": [ - 3470, + 3753, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 3461, + 3744, { "player_steam_id": [ - 264, + 268, "bigint!" ], "with": [ - 80, + 83, "String!" ] } ], "delete_player_leaderboard_rank": [ - 3544, + 3827, { "where": [ - 3539, + 3822, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 3575, + 3858, { "where": [ - 3567, + 3850, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 3558, + 3841, { "match_map_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "delete_player_objectives": [ - 3667, + 3950, { "where": [ - 3659, + 3942, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3650, + 3933, { "match_map_id": [ - 5170, + 5458, "uuid!" ], "player_steam_id": [ - 264, + 268, "bigint!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3726, + 4009, { "where": [ - 3718, + 4001, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3709, + 3992, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_player_sanctions": [ - 3767, + 4050, { "where": [ - 3759, + 4042, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3750, + 4033, { "created_at": [ - 4670, + 4958, "timestamptz!" ], "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_player_season_stats": [ - 3818, + 4101, { "where": [ - 3810, + 4093, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3791, + 4074, { "player_steam_id": [ - 264, + 268, "bigint!" ], "season_id": [ - 5170, + 5458, "uuid!" ] } ], "delete_player_stats": [ - 3860, + 4143, { "where": [ - 3854, + 4137, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3850, + 4133, { "player_steam_id": [ - 264, + 268, "bigint!" ] } ], "delete_player_steam_bot_friend": [ - 3892, + 4175, { "where": [ - 3883, + 4166, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3878, + 4161, { "steam_id": [ - 264, + 268, "bigint!" ] } ], "delete_player_steam_match_auth": [ - 3920, + 4203, { "where": [ - 3914, + 4197, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3910, + 4193, { "steam_id": [ - 264, + 268, "bigint!" ] } ], "delete_player_unused_utility": [ - 3954, + 4237, { "where": [ - 3946, + 4229, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3937, + 4220, { "match_map_id": [ - 5170, + 5458, "uuid!" ], "player_steam_id": [ - 264, + 268, "bigint!" ] } ], "delete_player_utility": [ - 3995, + 4278, { "where": [ - 3987, + 4270, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3978, + 4261, { "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "delete_players": [ - 4062, + 4345, { "where": [ - 4056, + 4339, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 4052, + 4335, { "steam_id": [ - 264, + 268, "bigint!" ] } ], "delete_plugin_versions": [ - 4090, + 4373, { "where": [ - 4084, + 4367, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 4080, + 4363, { "runtime": [ - 1198, + 1262, "e_plugin_runtimes_enum!" ], "version": [ - 80, + 83, "String!" ] } ], "delete_push_subscriptions": [ - 4117, + 4400, { "where": [ - 4111, + 4394, "push_subscriptions_bool_exp!" ] } ], "delete_push_subscriptions_by_pk": [ - 4107, + 4390, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_seasons": [ - 4148, + 4431, { "where": [ - 4142, + 4425, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 4138, + 4421, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_server_regions": [ - 4175, + 4458, { "where": [ - 4170, + 4453, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 4166, + 4449, { "value": [ - 80, + 83, "String!" ] } ], "delete_servers": [ - 4212, + 4499, { "where": [ - 4204, + 4488, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 4193, + 4476, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_settings": [ - 4247, + 4535, { "where": [ - 4242, + 4530, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 4239, + 4527, { "name": [ - 80, + 83, "String!" ] } ], "delete_steam_account_claims": [ - 4273, + 4561, { "where": [ - 4266, + 4554, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 4259, + 4547, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_steam_accounts": [ - 4293, + 4581, { "where": [ - 4287, + 4575, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 4283, + 4571, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_system_alerts": [ - 4321, + 4609, { "where": [ - 4315, + 4603, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 4311, + 4599, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_team_invites": [ - 4355, + 4643, { "where": [ - 4347, + 4635, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 4338, + 4626, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_team_roster": [ - 4398, + 4686, { "where": [ - 4390, + 4678, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 4379, + 4667, { "player_steam_id": [ - 264, + 268, "bigint!" ], "team_id": [ - 5170, + 5458, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 4434, + 4722, { "where": [ - 4428, + 4716, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 4424, + 4712, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_team_scrim_availability": [ - 4467, + 4755, { "where": [ - 4460, + 4748, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 4451, + 4739, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 4496, + 4784, { "where": [ - 4488, + 4776, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 4479, + 4767, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_team_scrim_requests": [ - 4539, + 4827, { "where": [ - 4531, + 4819, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 4520, + 4808, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_team_scrim_settings": [ - 4576, + 4864, { "where": [ - 4570, + 4858, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 4566, + 4854, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_team_suggestions": [ - 4604, + 4892, { "where": [ - 4598, + 4886, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 4594, + 4882, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_teams": [ - 4640, + 4928, { "where": [ - 4632, + 4920, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 4621, + 4909, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_tournament_awards": [ - 4689, + 4977, { "where": [ - 4681, + 4969, "tournament_awards_bool_exp!" ] } ], "delete_tournament_awards_by_pk": [ - 4672, + 4960, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_tournament_brackets": [ - 4733, + 5021, { "where": [ - 4725, + 5013, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4714, + 5002, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_tournament_categories": [ - 4774, + 5062, { "where": [ - 4767, + 5055, "tournament_categories_bool_exp!" ] } ], "delete_tournament_categories_by_pk": [ - 4760, + 5048, { "category": [ - 1400, + 1464, "e_tournament_categories_enum!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "delete_tournament_organizer_teams": [ - 4798, + 5086, { "where": [ - 4791, + 5079, "tournament_organizer_teams_bool_exp!" ] } ], "delete_tournament_organizer_teams_by_pk": [ - 4784, + 5072, { "team_id": [ - 5170, + 5458, "uuid!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "delete_tournament_organizers": [ - 4825, + 5113, { "where": [ - 4817, + 5105, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4808, + 5096, { "steam_id": [ - 264, + 268, "bigint!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "delete_tournament_prizes": [ - 4866, + 5154, { "where": [ - 4858, + 5146, "tournament_prizes_bool_exp!" ] } ], "delete_tournament_prizes_by_pk": [ - 4849, + 5137, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4907, + 5195, { "where": [ - 4899, + 5187, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4890, + 5178, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_tournament_stages": [ - 4954, + 5242, { "where": [ - 4943, + 5231, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4931, + 5219, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4999, + 5287, { "where": [ - 4991, + 5279, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4982, + 5270, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_tournament_team_roster": [ - 5040, + 5328, { "where": [ - 5032, + 5320, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 5023, + 5311, { "player_steam_id": [ - 264, + 268, "bigint!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "delete_tournament_teams": [ - 5081, + 5369, { "where": [ - 5073, + 5361, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 5064, + 5352, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_tournaments": [ - 5135, + 5423, { "where": [ - 5127, + 5415, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 5106, + 5394, { "id": [ - 5170, + 5458, "uuid!" ] } ], "delete_v_match_captains": [ - 5335, + 5623, { "where": [ - 5330, + 5618, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 5446, + 5734, { "where": [ - 5441, + 5729, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 5668, + 5956, { "where": [ - 5661, + 5949, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5845, + 6133, { "where": [ - 5839, + 6127, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5939, + 6227, { "where": [ - 5931, + 6219, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5912, + 6200, { "tournament_stage_id": [ - 5170, + 5458, "uuid!" ], "tournament_team_id": [ - 5170, + 5458, "uuid!" ] } ], "denyInvite": [ - 83, + 86, { "invite_id": [ - 5170, + 5458, "uuid!" ], "type": [ - 80, + 83, "String!" ] } ], "denyNameChange": [ - 83, + 86, { "name": [ - 80, + 83, "String!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "forfeitMatch": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ], "winning_lineup_id": [ - 5170, + 5458, "uuid!" ] } @@ -153947,11 +160083,23 @@ export default { 45, { "match_id": [ - 5170, + 5458, "uuid!" ] } ], + "getPluginReadme": [ + 56, + { + "runtime": [ + 83 + ], + "slug": [ + 83, + "String!" + ] + } + ], "getTestUploadLink": [ 33 ], @@ -153959,3899 +160107,4127 @@ export default { 4, { "award_id": [ - 5170, + 5458, "uuid!" ], "event_id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "note": [ - 80 + 83 ], "player_steam_id": [ - 80 + 83 ], "season_id": [ - 5170 + 5458 ], "team_id": [ - 5170 + 5458 ], "tournament_id": [ - 5170 + 5458 ] } ], "insert__map_pool": [ - 115, + 119, { "objects": [ - 112, + 116, "[_map_pool_insert_input!]!" ], "on_conflict": [ - 116 + 120 ] } ], "insert__map_pool_one": [ - 107, + 111, { "object": [ - 112, + 116, "_map_pool_insert_input!" ], "on_conflict": [ - 116 + 120 ] } ], "insert_abandoned_matches": [ - 143, + 147, { "objects": [ - 138, + 142, "[abandoned_matches_insert_input!]!" ], "on_conflict": [ - 144 + 148 ] } ], "insert_abandoned_matches_one": [ - 126, + 130, { "object": [ - 138, + 142, "abandoned_matches_insert_input!" ], "on_conflict": [ - 144 + 148 ] } ], "insert_api_keys": [ - 177, + 181, { "objects": [ - 174, + 178, "[api_keys_insert_input!]!" ], "on_conflict": [ - 178 + 182 ] } ], "insert_api_keys_one": [ - 167, + 171, { "object": [ - 174, + 178, "api_keys_insert_input!" ], "on_conflict": [ - 178 + 182 ] } ], "insert_award_recipients": [ - 212, + 216, { "objects": [ - 207, + 211, "[award_recipients_insert_input!]!" ], "on_conflict": [ - 213 + 217 ] } ], "insert_award_recipients_one": [ - 195, + 199, { "object": [ - 207, + 211, "award_recipients_insert_input!" ], "on_conflict": [ - 213 + 217 ] } ], "insert_awards": [ - 246, + 250, { "objects": [ - 243, + 247, "[awards_insert_input!]!" ], "on_conflict": [ - 248 + 252 ] } ], "insert_awards_one": [ - 236, + 240, { "object": [ - 243, + 247, "awards_insert_input!" ], "on_conflict": [ - 248 + 252 ] } ], "insert_chat_read_state": [ - 279, + 283, { "objects": [ - 276, + 280, "[chat_read_state_insert_input!]!" ], "on_conflict": [ - 280 + 284 ] } ], "insert_chat_read_state_one": [ - 269, + 273, { "object": [ - 276, + 280, "chat_read_state_insert_input!" ], "on_conflict": [ - 280 + 284 ] } ], "insert_clip_render_jobs": [ - 319, + 323, { "objects": [ - 314, + 318, "[clip_render_jobs_insert_input!]!" ], "on_conflict": [ - 320 + 324 ] } ], "insert_clip_render_jobs_one": [ - 296, + 300, { "object": [ - 314, + 318, "clip_render_jobs_insert_input!" ], "on_conflict": [ - 320 + 324 ] } ], "insert_custom_pages": [ - 362, + 366, { "objects": [ - 359, + 363, "[custom_pages_insert_input!]!" ], "on_conflict": [ - 363 + 367 ] } ], "insert_custom_pages_one": [ - 348, + 352, { "object": [ - 359, + 363, "custom_pages_insert_input!" ], "on_conflict": [ - 363 + 367 ] } ], "insert_db_backups": [ - 390, + 394, { "objects": [ - 387, + 391, "[db_backups_insert_input!]!" ], "on_conflict": [ - 391 + 395 ] } ], "insert_db_backups_one": [ - 380, + 384, { "object": [ - 387, + 391, "db_backups_insert_input!" ], "on_conflict": [ - 391 + 395 ] } ], "insert_direct_conversations": [ - 417, + 421, { "objects": [ - 414, + 418, "[direct_conversations_insert_input!]!" ], "on_conflict": [ - 418 + 422 ] } ], "insert_direct_conversations_one": [ - 407, + 411, { "object": [ - 414, + 418, "direct_conversations_insert_input!" ], "on_conflict": [ - 418 + 422 ] } ], "insert_direct_messages": [ - 444, + 448, { "objects": [ - 441, + 445, "[direct_messages_insert_input!]!" ], "on_conflict": [ - 445 + 449 ] } ], "insert_direct_messages_one": [ - 434, + 438, { "object": [ - 441, + 445, "direct_messages_insert_input!" ], "on_conflict": [ - 445 + 449 ] } ], "insert_draft_game_picks": [ - 480, + 484, { "objects": [ - 475, + 479, "[draft_game_picks_insert_input!]!" ], "on_conflict": [ - 481 + 485 ] } ], "insert_draft_game_picks_one": [ - 461, + 465, { "object": [ - 475, + 479, "draft_game_picks_insert_input!" ], "on_conflict": [ - 481 + 485 ] } ], "insert_draft_game_players": [ - 525, + 529, { "objects": [ - 520, + 524, "[draft_game_players_insert_input!]!" ], "on_conflict": [ - 526 + 530 ] } ], "insert_draft_game_players_one": [ - 506, + 510, { "object": [ - 520, + 524, "draft_game_players_insert_input!" ], "on_conflict": [ - 526 + 530 ] } ], "insert_draft_games": [ - 570, + 574, { "objects": [ - 565, + 569, "[draft_games_insert_input!]!" ], "on_conflict": [ - 572 + 576 ] } ], "insert_draft_games_one": [ - 551, + 555, { "object": [ - 565, + 569, "draft_games_insert_input!" ], "on_conflict": [ - 572 + 576 ] } ], "insert_e_award_sources": [ - 607, + 611, { "objects": [ - 604, + 608, "[e_award_sources_insert_input!]!" ], "on_conflict": [ - 608 + 612 ] } ], "insert_e_award_sources_one": [ - 597, + 601, { "object": [ - 604, + 608, "e_award_sources_insert_input!" ], "on_conflict": [ - 608 + 612 ] } ], "insert_e_award_tiers": [ - 627, + 631, { "objects": [ - 624, + 628, "[e_award_tiers_insert_input!]!" ], "on_conflict": [ - 628 + 632 ] } ], "insert_e_award_tiers_one": [ - 617, + 621, { "object": [ - 624, + 628, "e_award_tiers_insert_input!" ], "on_conflict": [ - 628 + 632 ] } ], "insert_e_check_in_settings": [ - 647, + 651, { "objects": [ - 644, + 648, "[e_check_in_settings_insert_input!]!" ], "on_conflict": [ - 648 + 652 ] } ], "insert_e_check_in_settings_one": [ - 637, + 641, { "object": [ - 644, + 648, "e_check_in_settings_insert_input!" ], "on_conflict": [ - 648 + 652 ] } ], "insert_e_draft_game_captain_selection": [ - 667, + 671, { "objects": [ - 664, + 668, "[e_draft_game_captain_selection_insert_input!]!" ], "on_conflict": [ - 669 + 673 ] } ], "insert_e_draft_game_captain_selection_one": [ - 657, + 661, { "object": [ - 664, + 668, "e_draft_game_captain_selection_insert_input!" ], "on_conflict": [ - 669 + 673 ] } ], "insert_e_draft_game_draft_order": [ - 688, + 692, { "objects": [ - 685, + 689, "[e_draft_game_draft_order_insert_input!]!" ], "on_conflict": [ - 690 + 694 ] } ], "insert_e_draft_game_draft_order_one": [ - 678, + 682, { "object": [ - 685, + 689, "e_draft_game_draft_order_insert_input!" ], "on_conflict": [ - 690 + 694 ] } ], "insert_e_draft_game_mode": [ - 709, + 713, { "objects": [ - 706, + 710, "[e_draft_game_mode_insert_input!]!" ], "on_conflict": [ - 711 + 715 ] } ], "insert_e_draft_game_mode_one": [ - 699, + 703, { "object": [ - 706, + 710, "e_draft_game_mode_insert_input!" ], "on_conflict": [ - 711 + 715 ] } ], "insert_e_draft_game_player_status": [ - 730, + 734, { "objects": [ - 727, + 731, "[e_draft_game_player_status_insert_input!]!" ], "on_conflict": [ - 732 + 736 ] } ], "insert_e_draft_game_player_status_one": [ - 720, + 724, { "object": [ - 727, + 731, "e_draft_game_player_status_insert_input!" ], "on_conflict": [ - 732 + 736 ] } ], "insert_e_draft_game_status": [ - 751, + 755, { "objects": [ - 748, + 752, "[e_draft_game_status_insert_input!]!" ], "on_conflict": [ - 753 + 757 ] } ], "insert_e_draft_game_status_one": [ - 741, + 745, { "object": [ - 748, + 752, "e_draft_game_status_insert_input!" ], "on_conflict": [ - 753 + 757 ] } ], "insert_e_event_media_access": [ - 772, + 776, { "objects": [ - 769, + 773, "[e_event_media_access_insert_input!]!" ], "on_conflict": [ - 773 + 777 ] } ], "insert_e_event_media_access_one": [ - 762, + 766, { "object": [ - 769, + 773, "e_event_media_access_insert_input!" ], "on_conflict": [ - 773 + 777 ] } ], "insert_e_event_visibility": [ - 792, + 796, { "objects": [ - 789, + 793, "[e_event_visibility_insert_input!]!" ], "on_conflict": [ - 793 + 797 ] } ], "insert_e_event_visibility_one": [ - 782, + 786, { "object": [ - 789, + 793, "e_event_visibility_insert_input!" ], "on_conflict": [ - 793 + 797 ] } ], "insert_e_friend_status": [ - 812, + 816, { "objects": [ - 809, + 813, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 814 + 818 ] } ], "insert_e_friend_status_one": [ - 802, + 806, { "object": [ - 809, + 813, "e_friend_status_insert_input!" ], "on_conflict": [ - 814 + 818 ] } ], "insert_e_game_cfg_types": [ - 833, + 837, { "objects": [ - 830, + 834, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 834 + 838 ] } ], "insert_e_game_cfg_types_one": [ - 823, + 827, { "object": [ - 830, + 834, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 834 + 838 + ] + } + ], + "insert_e_game_plugin_channels": [ + 857, + { + "objects": [ + 854, + "[e_game_plugin_channels_insert_input!]!" + ], + "on_conflict": [ + 858 + ] + } + ], + "insert_e_game_plugin_channels_one": [ + 847, + { + "object": [ + 854, + "e_game_plugin_channels_insert_input!" + ], + "on_conflict": [ + 858 + ] + } + ], + "insert_e_game_plugin_install_statuses": [ + 877, + { + "objects": [ + 874, + "[e_game_plugin_install_statuses_insert_input!]!" + ], + "on_conflict": [ + 878 + ] + } + ], + "insert_e_game_plugin_install_statuses_one": [ + 867, + { + "object": [ + 874, + "e_game_plugin_install_statuses_insert_input!" + ], + "on_conflict": [ + 878 + ] + } + ], + "insert_e_game_plugin_kinds": [ + 897, + { + "objects": [ + 894, + "[e_game_plugin_kinds_insert_input!]!" + ], + "on_conflict": [ + 898 + ] + } + ], + "insert_e_game_plugin_kinds_one": [ + 887, + { + "object": [ + 894, + "e_game_plugin_kinds_insert_input!" + ], + "on_conflict": [ + 898 ] } ], "insert_e_game_server_node_statuses": [ - 853, + 917, { "objects": [ - 850, + 914, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 855 + 919 ] } ], "insert_e_game_server_node_statuses_one": [ - 843, + 907, { "object": [ - 850, + 914, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 855 + 919 ] } ], "insert_e_league_movement_types": [ - 874, + 938, { "objects": [ - 871, + 935, "[e_league_movement_types_insert_input!]!" ], "on_conflict": [ - 876 + 940 ] } ], "insert_e_league_movement_types_one": [ - 864, + 928, { "object": [ - 871, + 935, "e_league_movement_types_insert_input!" ], "on_conflict": [ - 876 + 940 ] } ], "insert_e_league_proposal_statuses": [ - 895, + 959, { "objects": [ - 892, + 956, "[e_league_proposal_statuses_insert_input!]!" ], "on_conflict": [ - 897 + 961 ] } ], "insert_e_league_proposal_statuses_one": [ - 885, + 949, { "object": [ - 892, + 956, "e_league_proposal_statuses_insert_input!" ], "on_conflict": [ - 897 + 961 ] } ], "insert_e_league_registration_statuses": [ - 916, + 980, { "objects": [ - 913, + 977, "[e_league_registration_statuses_insert_input!]!" ], "on_conflict": [ - 918 + 982 ] } ], "insert_e_league_registration_statuses_one": [ - 906, + 970, { "object": [ - 913, + 977, "e_league_registration_statuses_insert_input!" ], "on_conflict": [ - 918 + 982 ] } ], "insert_e_league_season_statuses": [ - 937, + 1001, { "objects": [ - 934, + 998, "[e_league_season_statuses_insert_input!]!" ], "on_conflict": [ - 939 + 1003 ] } ], "insert_e_league_season_statuses_one": [ - 927, + 991, { "object": [ - 934, + 998, "e_league_season_statuses_insert_input!" ], "on_conflict": [ - 939 + 1003 ] } ], "insert_e_lobby_access": [ - 958, + 1022, { "objects": [ - 955, + 1019, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 960 + 1024 ] } ], "insert_e_lobby_access_one": [ - 948, + 1012, { "object": [ - 955, + 1019, "e_lobby_access_insert_input!" ], "on_conflict": [ - 960 + 1024 ] } ], "insert_e_lobby_player_status": [ - 979, + 1043, { "objects": [ - 976, + 1040, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 980 + 1044 ] } ], "insert_e_lobby_player_status_one": [ - 969, + 1033, { "object": [ - 976, + 1040, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 980 + 1044 ] } ], "insert_e_map_pool_types": [ - 999, + 1063, { "objects": [ - 996, + 1060, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 1001 + 1065 ] } ], "insert_e_map_pool_types_one": [ - 989, + 1053, { "object": [ - 996, + 1060, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 1001 + 1065 ] } ], "insert_e_match_clip_visibility": [ - 1020, + 1084, { "objects": [ - 1017, + 1081, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 1021 + 1085 ] } ], "insert_e_match_clip_visibility_one": [ - 1010, + 1074, { "object": [ - 1017, + 1081, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 1021 + 1085 ] } ], "insert_e_match_map_status": [ - 1040, + 1104, { "objects": [ - 1037, + 1101, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 1042 + 1106 ] } ], "insert_e_match_map_status_one": [ - 1030, + 1094, { "object": [ - 1037, + 1101, "e_match_map_status_insert_input!" ], "on_conflict": [ - 1042 + 1106 ] } ], "insert_e_match_mode": [ - 1061, + 1125, { "objects": [ - 1058, + 1122, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 1062 + 1126 ] } ], "insert_e_match_mode_one": [ - 1051, + 1115, { "object": [ - 1058, + 1122, "e_match_mode_insert_input!" ], "on_conflict": [ - 1062 + 1126 ] } ], "insert_e_match_party_sources": [ - 1081, + 1145, { "objects": [ - 1078, + 1142, "[e_match_party_sources_insert_input!]!" ], "on_conflict": [ - 1082 + 1146 ] } ], "insert_e_match_party_sources_one": [ - 1071, + 1135, { "object": [ - 1078, + 1142, "e_match_party_sources_insert_input!" ], "on_conflict": [ - 1082 + 1146 ] } ], "insert_e_match_status": [ - 1101, + 1165, { "objects": [ - 1098, + 1162, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 1103 + 1167 ] } ], "insert_e_match_status_one": [ - 1091, + 1155, { "object": [ - 1098, + 1162, "e_match_status_insert_input!" ], "on_conflict": [ - 1103 + 1167 ] } ], "insert_e_match_types": [ - 1122, + 1186, { "objects": [ - 1119, + 1183, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 1124 + 1188 ] } ], "insert_e_match_types_one": [ - 1112, + 1176, { "object": [ - 1119, + 1183, "e_match_types_insert_input!" ], "on_conflict": [ - 1124 + 1188 ] } ], "insert_e_notification_types": [ - 1143, + 1207, { "objects": [ - 1140, + 1204, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 1144 + 1208 ] } ], "insert_e_notification_types_one": [ - 1133, + 1197, { "object": [ - 1140, + 1204, "e_notification_types_insert_input!" ], "on_conflict": [ - 1144 + 1208 ] } ], "insert_e_objective_types": [ - 1163, + 1227, { "objects": [ - 1160, + 1224, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 1164 + 1228 ] } ], "insert_e_objective_types_one": [ - 1153, + 1217, { "object": [ - 1160, + 1224, "e_objective_types_insert_input!" ], "on_conflict": [ - 1164 + 1228 ] } ], "insert_e_player_roles": [ - 1183, + 1247, { "objects": [ - 1180, + 1244, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 1184 + 1248 ] } ], "insert_e_player_roles_one": [ - 1173, + 1237, { "object": [ - 1180, + 1244, "e_player_roles_insert_input!" ], "on_conflict": [ - 1184 + 1248 ] } ], "insert_e_plugin_runtimes": [ - 1203, + 1267, { "objects": [ - 1200, + 1264, "[e_plugin_runtimes_insert_input!]!" ], "on_conflict": [ - 1204 + 1268 ] } ], "insert_e_plugin_runtimes_one": [ - 1193, + 1257, { "object": [ - 1200, + 1264, "e_plugin_runtimes_insert_input!" ], "on_conflict": [ - 1204 + 1268 ] } ], "insert_e_ready_settings": [ - 1223, + 1287, { "objects": [ - 1220, + 1284, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 1224 + 1288 ] } ], "insert_e_ready_settings_one": [ - 1213, + 1277, { "object": [ - 1220, + 1284, "e_ready_settings_insert_input!" ], "on_conflict": [ - 1224 + 1288 ] } ], "insert_e_sanction_types": [ - 1243, + 1307, { "objects": [ - 1240, + 1304, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 1245 + 1309 ] } ], "insert_e_sanction_types_one": [ - 1233, + 1297, { "object": [ - 1240, + 1304, "e_sanction_types_insert_input!" ], "on_conflict": [ - 1245 + 1309 ] } ], "insert_e_scrim_request_statuses": [ - 1264, + 1328, { "objects": [ - 1261, + 1325, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 1265 + 1329 ] } ], "insert_e_scrim_request_statuses_one": [ - 1254, + 1318, { "object": [ - 1261, + 1325, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 1265 + 1329 ] } ], "insert_e_server_types": [ - 1284, + 1348, { "objects": [ - 1281, + 1345, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 1285 + 1349 ] } ], "insert_e_server_types_one": [ - 1274, + 1338, { "object": [ - 1281, + 1345, "e_server_types_insert_input!" ], "on_conflict": [ - 1285 + 1349 ] } ], "insert_e_sides": [ - 1304, + 1368, { "objects": [ - 1301, + 1365, "[e_sides_insert_input!]!" ], "on_conflict": [ - 1305 + 1369 ] } ], "insert_e_sides_one": [ - 1294, + 1358, { "object": [ - 1301, + 1365, "e_sides_insert_input!" ], "on_conflict": [ - 1305 + 1369 ] } ], "insert_e_system_alert_types": [ - 1324, + 1388, { "objects": [ - 1321, + 1385, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 1325 + 1389 ] } ], "insert_e_system_alert_types_one": [ - 1314, + 1378, { "object": [ - 1321, + 1385, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 1325 + 1389 ] } ], "insert_e_team_roles": [ - 1344, + 1408, { "objects": [ - 1341, + 1405, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 1346 + 1410 ] } ], "insert_e_team_roles_one": [ - 1334, + 1398, { "object": [ - 1341, + 1405, "e_team_roles_insert_input!" ], "on_conflict": [ - 1346 + 1410 ] } ], "insert_e_team_roster_statuses": [ - 1365, + 1429, { "objects": [ - 1362, + 1426, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 1366 + 1430 ] } ], "insert_e_team_roster_statuses_one": [ - 1355, + 1419, { "object": [ - 1362, + 1426, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 1366 + 1430 ] } ], "insert_e_timeout_settings": [ - 1385, + 1449, { "objects": [ - 1382, + 1446, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 1386 + 1450 ] } ], "insert_e_timeout_settings_one": [ - 1375, + 1439, { "object": [ - 1382, + 1446, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 1386 + 1450 ] } ], "insert_e_tournament_categories": [ - 1405, + 1469, { "objects": [ - 1402, + 1466, "[e_tournament_categories_insert_input!]!" ], "on_conflict": [ - 1407 + 1471 ] } ], "insert_e_tournament_categories_one": [ - 1395, + 1459, { "object": [ - 1402, + 1466, "e_tournament_categories_insert_input!" ], "on_conflict": [ - 1407 + 1471 ] } ], "insert_e_tournament_stage_types": [ - 1426, + 1490, { "objects": [ - 1423, + 1487, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 1428 + 1492 ] } ], "insert_e_tournament_stage_types_one": [ - 1416, + 1480, { "object": [ - 1423, + 1487, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 1428 + 1492 ] } ], "insert_e_tournament_status": [ - 1447, + 1511, { "objects": [ - 1444, + 1508, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1449 + 1513 ] } ], "insert_e_tournament_status_one": [ - 1437, + 1501, { "object": [ - 1444, + 1508, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1449 + 1513 ] } ], "insert_e_utility_types": [ - 1468, + 1532, { "objects": [ - 1465, + 1529, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1469 + 1533 ] } ], "insert_e_utility_types_one": [ - 1458, + 1522, { "object": [ - 1465, + 1529, "e_utility_types_insert_input!" ], "on_conflict": [ - 1469 + 1533 ] } ], "insert_e_veto_pick_types": [ - 1488, + 1552, { "objects": [ - 1485, + 1549, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1489 + 1553 ] } ], "insert_e_veto_pick_types_one": [ - 1478, + 1542, { "object": [ - 1485, + 1549, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1489 + 1553 ] } ], "insert_e_winning_reasons": [ - 1508, + 1572, { "objects": [ - 1505, + 1569, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1509 + 1573 ] } ], "insert_e_winning_reasons_one": [ - 1498, + 1562, { "object": [ - 1505, + 1569, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1509 + 1573 ] } ], "insert_event_match_links": [ - 1526, + 1590, { "objects": [ - 1523, + 1587, "[event_match_links_insert_input!]!" ], "on_conflict": [ - 1527 + 1591 ] } ], "insert_event_match_links_one": [ - 1518, + 1582, { "object": [ - 1523, + 1587, "event_match_links_insert_input!" ], "on_conflict": [ - 1527 + 1591 ] } ], "insert_event_media": [ - 1553, + 1617, { "objects": [ - 1548, + 1612, "[event_media_insert_input!]!" ], "on_conflict": [ - 1555 + 1619 ] } ], "insert_event_media_one": [ - 1536, + 1600, { "object": [ - 1548, + 1612, "event_media_insert_input!" ], "on_conflict": [ - 1555 + 1619 ] } ], "insert_event_media_players": [ - 1575, + 1639, { "objects": [ - 1570, + 1634, "[event_media_players_insert_input!]!" ], "on_conflict": [ - 1576 + 1640 ] } ], "insert_event_media_players_one": [ - 1558, + 1622, { "object": [ - 1570, + 1634, "event_media_players_insert_input!" ], "on_conflict": [ - 1576 + 1640 ] } ], "insert_event_organizers": [ - 1636, + 1700, { "objects": [ - 1631, + 1695, "[event_organizers_insert_input!]!" ], "on_conflict": [ - 1637 + 1701 ] } ], "insert_event_organizers_one": [ - 1619, + 1683, { "object": [ - 1631, + 1695, "event_organizers_insert_input!" ], "on_conflict": [ - 1637 + 1701 ] } ], "insert_event_players": [ - 1677, + 1741, { "objects": [ - 1672, + 1736, "[event_players_insert_input!]!" ], "on_conflict": [ - 1678 + 1742 ] } ], "insert_event_players_one": [ - 1660, + 1724, { "object": [ - 1672, + 1736, "event_players_insert_input!" ], "on_conflict": [ - 1678 + 1742 ] } ], "insert_event_teams": [ - 1715, + 1779, { "objects": [ - 1710, + 1774, "[event_teams_insert_input!]!" ], "on_conflict": [ - 1716 + 1780 ] } ], "insert_event_teams_one": [ - 1701, + 1765, { "object": [ - 1710, + 1774, "event_teams_insert_input!" ], "on_conflict": [ - 1716 + 1780 ] } ], "insert_event_tournaments": [ - 1739, + 1803, { "objects": [ - 1734, + 1798, "[event_tournaments_insert_input!]!" ], "on_conflict": [ - 1740 + 1804 ] } ], "insert_event_tournaments_one": [ - 1725, + 1789, { "object": [ - 1734, + 1798, "event_tournaments_insert_input!" ], "on_conflict": [ - 1740 + 1804 ] } ], "insert_events": [ - 1759, + 1823, { "objects": [ - 1756, + 1820, "[events_insert_input!]!" ], "on_conflict": [ - 1761 + 1825 ] } ], "insert_events_one": [ - 1749, + 1813, { "object": [ - 1756, + 1820, "events_insert_input!" ], "on_conflict": [ - 1761 + 1825 ] } ], "insert_friends": [ - 1789, + 1853, { "objects": [ - 1786, + 1850, "[friends_insert_input!]!" ], "on_conflict": [ - 1790 + 1854 ] } ], "insert_friends_one": [ - 1779, + 1843, { "object": [ - 1786, + 1850, "friends_insert_input!" ], "on_conflict": [ - 1790 + 1854 + ] + } + ], + "insert_game_mode_plugins": [ + 1893, + { + "objects": [ + 1888, + "[game_mode_plugins_insert_input!]!" + ], + "on_conflict": [ + 1894 + ] + } + ], + "insert_game_mode_plugins_one": [ + 1870, + { + "object": [ + 1888, + "game_mode_plugins_insert_input!" + ], + "on_conflict": [ + 1894 + ] + } + ], + "insert_game_modes": [ + 1932, + { + "objects": [ + 1929, + "[game_modes_insert_input!]!" + ], + "on_conflict": [ + 1934 + ] + } + ], + "insert_game_modes_one": [ + 1920, + { + "object": [ + 1929, + "game_modes_insert_input!" + ], + "on_conflict": [ + 1934 + ] + } + ], + "insert_game_plugin_installs": [ + 1952, + { + "objects": [ + 1949, + "[game_plugin_installs_insert_input!]!" + ], + "on_conflict": [ + 1953 + ] + } + ], + "insert_game_plugin_installs_one": [ + 1944, + { + "object": [ + 1949, + "game_plugin_installs_insert_input!" + ], + "on_conflict": [ + 1953 + ] + } + ], + "insert_game_plugin_versions": [ + 1981, + { + "objects": [ + 1976, + "[game_plugin_versions_insert_input!]!" + ], + "on_conflict": [ + 1982 + ] + } + ], + "insert_game_plugin_versions_one": [ + 1962, + { + "object": [ + 1976, + "game_plugin_versions_insert_input!" + ], + "on_conflict": [ + 1982 + ] + } + ], + "insert_game_plugins": [ + 2020, + { + "objects": [ + 2017, + "[game_plugins_insert_input!]!" + ], + "on_conflict": [ + 2022 + ] + } + ], + "insert_game_plugins_one": [ + 2007, + { + "object": [ + 2017, + "game_plugins_insert_input!" + ], + "on_conflict": [ + 2022 + ] + } + ], + "insert_game_server_node_plugins": [ + 2055, + { + "objects": [ + 2050, + "[game_server_node_plugins_insert_input!]!" + ], + "on_conflict": [ + 2056 + ] + } + ], + "insert_game_server_node_plugins_one": [ + 2039, + { + "object": [ + 2050, + "game_server_node_plugins_insert_input!" + ], + "on_conflict": [ + 2056 ] } ], "insert_game_server_nodes": [ - 1829, + 2090, { "objects": [ - 1824, + 2085, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1831 + 2092 ] } ], "insert_game_server_nodes_one": [ - 1806, + 2067, { "object": [ - 1824, + 2085, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1831 + 2092 ] } ], "insert_game_versions": [ - 1871, + 2132, { "objects": [ - 1868, + 2129, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1873 + 2134 ] } ], "insert_game_versions_one": [ - 1857, + 2118, { "object": [ - 1868, + 2129, "game_versions_insert_input!" ], "on_conflict": [ - 1873 + 2134 ] } ], "insert_gamedata_signature_validations": [ - 1904, + 2165, { "objects": [ - 1901, + 2162, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1905 + 2166 ] } ], "insert_gamedata_signature_validations_one": [ - 1890, + 2151, { "object": [ - 1901, + 2162, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1905 + 2166 ] } ], "insert_leaderboard_entries": [ - 1942, + 2203, { "objects": [ - 1939, + 2200, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1933, + 2194, { "object": [ - 1939, + 2200, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 1967, + 2228, { "objects": [ - 1964, + 2225, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 1969 + 2230 ] } ], "insert_league_divisions_one": [ - 1957, + 2218, { "object": [ - 1964, + 2225, "league_divisions_insert_input!" ], "on_conflict": [ - 1969 + 2230 ] } ], "insert_league_match_weeks": [ - 2002, + 2263, { "objects": [ - 1997, + 2258, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 2003 + 2264 ] } ], "insert_league_match_weeks_one": [ - 1985, + 2246, { "object": [ - 1997, + 2258, "league_match_weeks_insert_input!" ], "on_conflict": [ - 2003 + 2264 ] } ], "insert_league_relegation_playoffs": [ - 2043, + 2304, { "objects": [ - 2038, + 2299, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 2044 + 2305 ] } ], "insert_league_relegation_playoffs_one": [ - 2026, + 2287, { "object": [ - 2038, + 2299, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 2044 + 2305 ] } ], "insert_league_scheduling_proposals": [ - 2084, + 2345, { "objects": [ - 2079, + 2340, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 2085 + 2346 ] } ], "insert_league_scheduling_proposals_one": [ - 2067, + 2328, { "object": [ - 2079, + 2340, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 2085 + 2346 ] } ], "insert_league_season_divisions": [ - 2122, + 2383, { "objects": [ - 2117, + 2378, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 2124 + 2385 ] } ], "insert_league_season_divisions_one": [ - 2108, + 2369, { "object": [ - 2117, + 2378, "league_season_divisions_insert_input!" ], "on_conflict": [ - 2124 + 2385 ] } ], "insert_league_seasons": [ - 2147, + 2408, { "objects": [ - 2144, + 2405, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 2149 + 2410 ] } ], "insert_league_seasons_one": [ - 2133, + 2394, { "object": [ - 2144, + 2405, "league_seasons_insert_input!" ], "on_conflict": [ - 2149 + 2410 ] } ], "insert_league_team_movements": [ - 2183, + 2444, { "objects": [ - 2178, + 2439, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 2184 + 2445 ] } ], "insert_league_team_movements_one": [ - 2166, + 2427, { "object": [ - 2178, + 2439, "league_team_movements_insert_input!" ], "on_conflict": [ - 2184 + 2445 ] } ], "insert_league_team_rosters": [ - 2224, + 2485, { "objects": [ - 2219, + 2480, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 2225 + 2486 ] } ], "insert_league_team_rosters_one": [ - 2207, + 2468, { "object": [ - 2219, + 2480, "league_team_rosters_insert_input!" ], "on_conflict": [ - 2225 + 2486 ] } ], "insert_league_team_seasons": [ - 2265, + 2526, { "objects": [ - 2260, + 2521, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 2267 + 2528 ] } ], "insert_league_team_seasons_one": [ - 2248, + 2509, { "object": [ - 2260, + 2521, "league_team_seasons_insert_input!" ], "on_conflict": [ - 2267 + 2528 ] } ], "insert_league_teams": [ - 2298, + 2559, { "objects": [ - 2295, + 2556, "[league_teams_insert_input!]!" ], "on_conflict": [ - 2300 + 2561 ] } ], "insert_league_teams_one": [ - 2290, + 2551, { "object": [ - 2295, + 2556, "league_teams_insert_input!" ], "on_conflict": [ - 2300 + 2561 ] } ], "insert_lobbies": [ - 2317, + 2578, { "objects": [ - 2314, + 2575, "[lobbies_insert_input!]!" ], "on_conflict": [ - 2319 + 2580 ] } ], "insert_lobbies_one": [ - 2309, + 2570, { "object": [ - 2314, + 2575, "lobbies_insert_input!" ], "on_conflict": [ - 2319 + 2580 ] } ], "insert_lobby_players": [ - 2347, + 2608, { "objects": [ - 2342, + 2603, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 2348 + 2609 ] } ], "insert_lobby_players_one": [ - 2328, + 2589, { "object": [ - 2342, + 2603, "lobby_players_insert_input!" ], "on_conflict": [ - 2348 + 2609 ] } ], "insert_map_pools": [ - 2381, + 2642, { "objects": [ - 2378, + 2639, "[map_pools_insert_input!]!" ], "on_conflict": [ - 2383 + 2644 ] } ], "insert_map_pools_one": [ - 2373, + 2634, { "object": [ - 2378, + 2639, "map_pools_insert_input!" ], "on_conflict": [ - 2383 + 2644 ] } ], "insert_maps": [ - 2408, + 2669, { "objects": [ - 2403, + 2664, "[maps_insert_input!]!" ], "on_conflict": [ - 2410 + 2671 ] } ], "insert_maps_one": [ - 2392, + 2653, { "object": [ - 2403, + 2664, "maps_insert_input!" ], "on_conflict": [ - 2410 + 2671 ] } ], "insert_match_clips": [ - 2438, + 2699, { "objects": [ - 2433, + 2694, "[match_clips_insert_input!]!" ], "on_conflict": [ - 2440 + 2701 ] } ], "insert_match_clips_one": [ - 2421, + 2682, { "object": [ - 2433, + 2694, "match_clips_insert_input!" ], "on_conflict": [ - 2440 + 2701 ] } ], "insert_match_demo_sessions": [ - 2484, + 2745, { "objects": [ - 2479, + 2740, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 2485 + 2746 ] } ], "insert_match_demo_sessions_one": [ - 2463, + 2724, { "object": [ - 2479, + 2740, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 2485 + 2746 ] } ], "insert_match_lineup_players": [ - 2528, + 2789, { "objects": [ - 2523, + 2784, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 2529 + 2790 ] } ], "insert_match_lineup_players_one": [ - 2509, + 2770, { "object": [ - 2523, + 2784, "match_lineup_players_insert_input!" ], "on_conflict": [ - 2529 + 2790 ] } ], "insert_match_lineups": [ - 2571, + 2832, { "objects": [ - 2566, + 2827, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 2573 + 2834 ] } ], "insert_match_lineups_one": [ - 2554, + 2815, { "object": [ - 2566, + 2827, "match_lineups_insert_input!" ], "on_conflict": [ - 2573 + 2834 ] } ], "insert_match_map_demos": [ - 2619, + 2880, { "objects": [ - 2614, + 2875, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2621 + 2882 ] } ], "insert_match_map_demos_one": [ - 2596, + 2857, { "object": [ - 2614, + 2875, "match_map_demos_insert_input!" ], "on_conflict": [ - 2621 + 2882 ] } ], "insert_match_map_rounds": [ - 2664, + 2925, { "objects": [ - 2659, + 2920, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2665 + 2926 ] } ], "insert_match_map_rounds_one": [ - 2647, + 2908, { "object": [ - 2659, + 2920, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2665 + 2926 ] } ], "insert_match_map_veto_picks": [ - 2704, + 2965, { "objects": [ - 2699, + 2960, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2705 + 2966 ] } ], "insert_match_map_veto_picks_one": [ - 2688, + 2949, { "object": [ - 2699, + 2960, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2705 + 2966 ] } ], "insert_match_maps": [ - 2733, + 2994, { "objects": [ - 2728, + 2989, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2735 + 2996 ] } ], "insert_match_maps_one": [ - 2716, + 2977, { "object": [ - 2728, + 2989, "match_maps_insert_input!" ], "on_conflict": [ - 2735 + 2996 ] } ], "insert_match_options": [ - 2768, + 3038, { "objects": [ - 2765, + 3033, "[match_options_insert_input!]!" ], "on_conflict": [ - 2770 + 3040 ] } ], "insert_match_options_one": [ - 2758, + 3019, { "object": [ - 2765, + 3033, "match_options_insert_input!" ], "on_conflict": [ - 2770 + 3040 ] } ], "insert_match_region_veto_picks": [ - 2802, + 3081, { "objects": [ - 2797, + 3076, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2803 + 3082 ] } ], "insert_match_region_veto_picks_one": [ - 2786, + 3065, { "object": [ - 2797, + 3076, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2803 + 3082 ] } ], "insert_match_streams": [ - 2837, + 3116, { "objects": [ - 2832, + 3111, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2838 + 3117 ] } ], "insert_match_streams_one": [ - 2814, + 3093, { "object": [ - 2832, + 3111, "match_streams_insert_input!" ], "on_conflict": [ - 2838 + 3117 ] } ], "insert_match_type_cfgs": [ - 2872, + 3151, { "objects": [ - 2869, + 3148, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2873 + 3152 ] } ], "insert_match_type_cfgs_one": [ - 2864, + 3143, { "object": [ - 2869, + 3148, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2873 + 3152 ] } ], "insert_matches": [ - 2899, + 3180, { "objects": [ - 2894, + 3175, "[matches_insert_input!]!" ], "on_conflict": [ - 2901 + 3182 ] } ], "insert_matches_one": [ - 2882, + 3161, { "object": [ - 2894, + 3175, "matches_insert_input!" ], "on_conflict": [ - 2901 + 3182 ] } ], "insert_migration_hashes_hashes": [ - 2932, + 3215, { "objects": [ - 2929, + 3212, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2933 + 3216 ] } ], "insert_migration_hashes_hashes_one": [ - 2924, + 3207, { "object": [ - 2929, + 3212, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2933 + 3216 ] } ], "insert_my_friends": [ - 2964, + 3247, { "objects": [ - 2959, + 3242, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2942, + 3225, { "object": [ - 2959, + 3242, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2998, + 3281, { "objects": [ - 2995, + 3278, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2999 + 3282 ] } ], "insert_news_articles_one": [ - 2988, + 3271, { "object": [ - 2995, + 3278, "news_articles_insert_input!" ], "on_conflict": [ - 2999 + 3282 ] } ], "insert_notification_preferences": [ - 3025, + 3308, { "objects": [ - 3022, + 3305, "[notification_preferences_insert_input!]!" ], "on_conflict": [ - 3026 + 3309 ] } ], "insert_notification_preferences_one": [ - 3015, + 3298, { "object": [ - 3022, + 3305, "notification_preferences_insert_input!" ], "on_conflict": [ - 3026 + 3309 ] } ], "insert_notifications": [ - 3065, + 3348, { "objects": [ - 3060, + 3343, "[notifications_insert_input!]!" ], "on_conflict": [ - 3066 + 3349 ] } ], "insert_notifications_one": [ - 3042, + 3325, { "object": [ - 3060, + 3343, "notifications_insert_input!" ], "on_conflict": [ - 3066 + 3349 ] } ], "insert_pending_match_import_players": [ - 3112, + 3395, { "objects": [ - 3107, + 3390, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 3113 + 3396 ] } ], "insert_pending_match_import_players_one": [ - 3095, + 3378, { "object": [ - 3107, + 3390, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 3113 + 3396 ] } ], "insert_pending_match_imports": [ - 3146, + 3429, { "objects": [ - 3143, + 3426, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 3148 + 3431 ] } ], "insert_pending_match_imports_one": [ - 3136, + 3419, { "object": [ - 3143, + 3426, "pending_match_imports_insert_input!" ], "on_conflict": [ - 3148 + 3431 ] } ], "insert_player_aim_stats_demo": [ - 3174, + 3457, { "objects": [ - 3171, + 3454, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 3175 + 3458 ] } ], "insert_player_aim_stats_demo_one": [ - 3164, + 3447, { "object": [ - 3171, + 3454, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 3175 + 3458 ] } ], "insert_player_aim_weapon_stats": [ - 3208, + 3491, { "objects": [ - 3203, + 3486, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 3209 + 3492 ] } ], "insert_player_aim_weapon_stats_one": [ - 3191, + 3474, { "object": [ - 3203, + 3486, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 3209 + 3492 ] } ], "insert_player_assists": [ - 3251, + 3534, { "objects": [ - 3246, + 3529, "[player_assists_insert_input!]!" ], "on_conflict": [ - 3252 + 3535 ] } ], "insert_player_assists_one": [ - 3232, + 3515, { "object": [ - 3246, + 3529, "player_assists_insert_input!" ], "on_conflict": [ - 3252 + 3535 ] } ], "insert_player_damages": [ - 3312, + 3595, { "objects": [ - 3307, + 3590, "[player_damages_insert_input!]!" ], "on_conflict": [ - 3313 + 3596 ] } ], "insert_player_damages_one": [ - 3295, + 3578, { "object": [ - 3307, + 3590, "player_damages_insert_input!" ], "on_conflict": [ - 3313 + 3596 ] } ], "insert_player_elo": [ - 3346, + 3629, { "objects": [ - 3343, + 3626, "[player_elo_insert_input!]!" ], "on_conflict": [ - 3347 + 3630 ] } ], "insert_player_elo_one": [ - 3336, + 3619, { "object": [ - 3343, + 3626, "player_elo_insert_input!" ], "on_conflict": [ - 3347 + 3630 ] } ], "insert_player_faceit_rank_history": [ - 3380, + 3663, { "objects": [ - 3375, + 3658, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 3381 + 3664 ] } ], "insert_player_faceit_rank_history_one": [ - 3363, + 3646, { "object": [ - 3375, + 3658, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 3381 + 3664 ] } ], "insert_player_flashes": [ - 3423, + 3706, { "objects": [ - 3418, + 3701, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 3424 + 3707 ] } ], "insert_player_flashes_one": [ - 3404, + 3687, { "object": [ - 3418, + 3701, "player_flashes_insert_input!" ], "on_conflict": [ - 3424 + 3707 ] } ], "insert_player_kills": [ - 3509, + 3792, { "objects": [ - 3504, + 3787, "[player_kills_insert_input!]!" ], "on_conflict": [ - 3510 + 3793 ] } ], "insert_player_kills_by_weapon": [ - 3478, + 3761, { "objects": [ - 3473, + 3756, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 3479 + 3762 ] } ], "insert_player_kills_by_weapon_one": [ - 3461, + 3744, { "object": [ - 3473, + 3756, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 3479 + 3762 ] } ], "insert_player_kills_one": [ - 3449, + 3732, { "object": [ - 3504, + 3787, "player_kills_insert_input!" ], "on_conflict": [ - 3510 + 3793 ] } ], "insert_player_leaderboard_rank": [ - 3544, + 3827, { "objects": [ - 3541, + 3824, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 3535, + 3818, { "object": [ - 3541, + 3824, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 3575, + 3858, { "objects": [ - 3570, + 3853, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 3576 + 3859 ] } ], "insert_player_match_map_stats_one": [ - 3558, + 3841, { "object": [ - 3570, + 3853, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 3576 + 3859 ] } ], "insert_player_objectives": [ - 3667, + 3950, { "objects": [ - 3662, + 3945, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3668 + 3951 ] } ], "insert_player_objectives_one": [ - 3650, + 3933, { "object": [ - 3662, + 3945, "player_objectives_insert_input!" ], "on_conflict": [ - 3668 + 3951 ] } ], "insert_player_premier_rank_history": [ - 3726, + 4009, { "objects": [ - 3721, + 4004, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3727 + 4010 ] } ], "insert_player_premier_rank_history_one": [ - 3709, + 3992, { "object": [ - 3721, + 4004, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3727 + 4010 ] } ], "insert_player_sanctions": [ - 3767, + 4050, { "objects": [ - 3762, + 4045, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3768 + 4051 ] } ], "insert_player_sanctions_one": [ - 3750, + 4033, { "object": [ - 3762, + 4045, "player_sanctions_insert_input!" ], "on_conflict": [ - 3768 + 4051 ] } ], "insert_player_season_stats": [ - 3818, + 4101, { "objects": [ - 3813, + 4096, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3819 + 4102 ] } ], "insert_player_season_stats_one": [ - 3791, + 4074, { "object": [ - 3813, + 4096, "player_season_stats_insert_input!" ], "on_conflict": [ - 3819 + 4102 ] } ], "insert_player_stats": [ - 3860, + 4143, { "objects": [ - 3857, + 4140, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3862 + 4145 ] } ], "insert_player_stats_one": [ - 3850, + 4133, { "object": [ - 3857, + 4140, "player_stats_insert_input!" ], "on_conflict": [ - 3862 + 4145 ] } ], "insert_player_steam_bot_friend": [ - 3892, + 4175, { "objects": [ - 3889, + 4172, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3893 + 4176 ] } ], "insert_player_steam_bot_friend_one": [ - 3878, + 4161, { "object": [ - 3889, + 4172, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3893 + 4176 ] } ], "insert_player_steam_match_auth": [ - 3920, + 4203, { "objects": [ - 3917, + 4200, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3921 + 4204 ] } ], "insert_player_steam_match_auth_one": [ - 3910, + 4193, { "object": [ - 3917, + 4200, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3921 + 4204 ] } ], "insert_player_unused_utility": [ - 3954, + 4237, { "objects": [ - 3949, + 4232, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3955 + 4238 ] } ], "insert_player_unused_utility_one": [ - 3937, + 4220, { "object": [ - 3949, + 4232, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3955 + 4238 ] } ], "insert_player_utility": [ - 3995, + 4278, { "objects": [ - 3990, + 4273, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3996 + 4279 ] } ], "insert_player_utility_one": [ - 3978, + 4261, { "object": [ - 3990, + 4273, "player_utility_insert_input!" ], "on_conflict": [ - 3996 + 4279 ] } ], "insert_players": [ - 4062, + 4345, { "objects": [ - 4059, + 4342, "[players_insert_input!]!" ], "on_conflict": [ - 4064 + 4347 ] } ], "insert_players_one": [ - 4052, + 4335, { "object": [ - 4059, + 4342, "players_insert_input!" ], "on_conflict": [ - 4064 + 4347 ] } ], "insert_plugin_versions": [ - 4090, + 4373, { "objects": [ - 4087, + 4370, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 4091 + 4374 ] } ], "insert_plugin_versions_one": [ - 4080, + 4363, { "object": [ - 4087, + 4370, "plugin_versions_insert_input!" ], "on_conflict": [ - 4091 + 4374 ] } ], "insert_push_subscriptions": [ - 4117, + 4400, { "objects": [ - 4114, + 4397, "[push_subscriptions_insert_input!]!" ], "on_conflict": [ - 4118 + 4401 ] } ], "insert_push_subscriptions_one": [ - 4107, + 4390, { "object": [ - 4114, + 4397, "push_subscriptions_insert_input!" ], "on_conflict": [ - 4118 + 4401 ] } ], "insert_seasons": [ - 4148, + 4431, { "objects": [ - 4145, + 4428, "[seasons_insert_input!]!" ], "on_conflict": [ - 4150 + 4433 ] } ], "insert_seasons_one": [ - 4138, + 4421, { "object": [ - 4145, + 4428, "seasons_insert_input!" ], "on_conflict": [ - 4150 + 4433 ] } ], "insert_server_regions": [ - 4175, + 4458, { "objects": [ - 4172, + 4455, "[server_regions_insert_input!]!" ], "on_conflict": [ - 4177 + 4460 ] } ], "insert_server_regions_one": [ - 4166, + 4449, { "object": [ - 4172, + 4455, "server_regions_insert_input!" ], "on_conflict": [ - 4177 + 4460 ] } ], "insert_servers": [ - 4212, + 4499, { "objects": [ - 4207, + 4494, "[servers_insert_input!]!" ], "on_conflict": [ - 4214 + 4501 ] } ], "insert_servers_one": [ - 4193, + 4476, { "object": [ - 4207, + 4494, "servers_insert_input!" ], "on_conflict": [ - 4214 + 4501 ] } ], "insert_settings": [ - 4247, + 4535, { "objects": [ - 4244, + 4532, "[settings_insert_input!]!" ], "on_conflict": [ - 4248 + 4536 ] } ], "insert_settings_one": [ - 4239, + 4527, { "object": [ - 4244, + 4532, "settings_insert_input!" ], "on_conflict": [ - 4248 + 4536 ] } ], "insert_steam_account_claims": [ - 4273, + 4561, { "objects": [ - 4268, + 4556, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 4274 + 4562 ] } ], "insert_steam_account_claims_one": [ - 4259, + 4547, { "object": [ - 4268, + 4556, "steam_account_claims_insert_input!" ], "on_conflict": [ - 4274 + 4562 ] } ], "insert_steam_accounts": [ - 4293, + 4581, { "objects": [ - 4290, + 4578, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 4295 + 4583 ] } ], "insert_steam_accounts_one": [ - 4283, + 4571, { "object": [ - 4290, + 4578, "steam_accounts_insert_input!" ], "on_conflict": [ - 4295 + 4583 ] } ], "insert_system_alerts": [ - 4321, + 4609, { "objects": [ - 4318, + 4606, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 4322 + 4610 ] } ], "insert_system_alerts_one": [ - 4311, + 4599, { "object": [ - 4318, + 4606, "system_alerts_insert_input!" ], "on_conflict": [ - 4322 + 4610 ] } ], "insert_team_invites": [ - 4355, + 4643, { "objects": [ - 4350, + 4638, "[team_invites_insert_input!]!" ], "on_conflict": [ - 4356 + 4644 ] } ], "insert_team_invites_one": [ - 4338, + 4626, { "object": [ - 4350, + 4638, "team_invites_insert_input!" ], "on_conflict": [ - 4356 + 4644 ] } ], "insert_team_roster": [ - 4398, + 4686, { "objects": [ - 4393, + 4681, "[team_roster_insert_input!]!" ], "on_conflict": [ - 4399 + 4687 ] } ], "insert_team_roster_one": [ - 4379, + 4667, { "object": [ - 4393, + 4681, "team_roster_insert_input!" ], "on_conflict": [ - 4399 + 4687 ] } ], "insert_team_scrim_alerts": [ - 4434, + 4722, { "objects": [ - 4431, + 4719, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 4435 + 4723 ] } ], "insert_team_scrim_alerts_one": [ - 4424, + 4712, { "object": [ - 4431, + 4719, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 4435 + 4723 ] } ], "insert_team_scrim_availability": [ - 4467, + 4755, { "objects": [ - 4462, + 4750, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 4468 + 4756 ] } ], "insert_team_scrim_availability_one": [ - 4451, + 4739, { "object": [ - 4462, + 4750, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 4468 + 4756 ] } ], "insert_team_scrim_request_proposals": [ - 4496, + 4784, { "objects": [ - 4491, + 4779, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 4497 + 4785 ] } ], "insert_team_scrim_request_proposals_one": [ - 4479, + 4767, { "object": [ - 4491, + 4779, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 4497 + 4785 ] } ], "insert_team_scrim_requests": [ - 4539, + 4827, { "objects": [ - 4534, + 4822, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 4541 + 4829 ] } ], "insert_team_scrim_requests_one": [ - 4520, + 4808, { "object": [ - 4534, + 4822, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 4541 + 4829 ] } ], "insert_team_scrim_settings": [ - 4576, + 4864, { "objects": [ - 4573, + 4861, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 4578 + 4866 ] } ], "insert_team_scrim_settings_one": [ - 4566, + 4854, { "object": [ - 4573, + 4861, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 4578 + 4866 ] } ], "insert_team_suggestions": [ - 4604, + 4892, { "objects": [ - 4601, + 4889, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 4605 + 4893 ] } ], "insert_team_suggestions_one": [ - 4594, + 4882, { "object": [ - 4601, + 4889, "team_suggestions_insert_input!" ], "on_conflict": [ - 4605 + 4893 ] } ], "insert_teams": [ - 4640, + 4928, { "objects": [ - 4635, + 4923, "[teams_insert_input!]!" ], "on_conflict": [ - 4642 + 4930 ] } ], "insert_teams_one": [ - 4621, + 4909, { "object": [ - 4635, + 4923, "teams_insert_input!" ], "on_conflict": [ - 4642 + 4930 ] } ], "insert_tournament_awards": [ - 4689, + 4977, { "objects": [ - 4684, + 4972, "[tournament_awards_insert_input!]!" ], "on_conflict": [ - 4691 + 4979 ] } ], "insert_tournament_awards_one": [ - 4672, + 4960, { "object": [ - 4684, + 4972, "tournament_awards_insert_input!" ], "on_conflict": [ - 4691 + 4979 ] } ], "insert_tournament_brackets": [ - 4733, + 5021, { "objects": [ - 4728, + 5016, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4735 + 5023 ] } ], "insert_tournament_brackets_one": [ - 4714, + 5002, { "object": [ - 4728, + 5016, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4735 + 5023 ] } ], "insert_tournament_categories": [ - 4774, + 5062, { "objects": [ - 4769, + 5057, "[tournament_categories_insert_input!]!" ], "on_conflict": [ - 4775 + 5063 ] } ], "insert_tournament_categories_one": [ - 4760, + 5048, { "object": [ - 4769, + 5057, "tournament_categories_insert_input!" ], "on_conflict": [ - 4775 + 5063 ] } ], "insert_tournament_organizer_teams": [ - 4798, + 5086, { "objects": [ - 4793, + 5081, "[tournament_organizer_teams_insert_input!]!" ], "on_conflict": [ - 4799 + 5087 ] } ], "insert_tournament_organizer_teams_one": [ - 4784, + 5072, { "object": [ - 4793, + 5081, "tournament_organizer_teams_insert_input!" ], "on_conflict": [ - 4799 + 5087 ] } ], "insert_tournament_organizers": [ - 4825, + 5113, { "objects": [ - 4820, + 5108, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4826 + 5114 ] } ], "insert_tournament_organizers_one": [ - 4808, + 5096, { "object": [ - 4820, + 5108, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4826 + 5114 ] } ], "insert_tournament_prizes": [ - 4866, + 5154, { "objects": [ - 4861, + 5149, "[tournament_prizes_insert_input!]!" ], "on_conflict": [ - 4867 + 5155 ] } ], "insert_tournament_prizes_one": [ - 4849, + 5137, { "object": [ - 4861, + 5149, "tournament_prizes_insert_input!" ], "on_conflict": [ - 4867 + 5155 ] } ], "insert_tournament_stage_windows": [ - 4907, + 5195, { "objects": [ - 4902, + 5190, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4908 + 5196 ] } ], "insert_tournament_stage_windows_one": [ - 4890, + 5178, { "object": [ - 4902, + 5190, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4908 + 5196 ] } ], "insert_tournament_stages": [ - 4954, + 5242, { "objects": [ - 4949, + 5237, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4956 + 5244 ] } ], "insert_tournament_stages_one": [ - 4931, + 5219, { "object": [ - 4949, + 5237, "tournament_stages_insert_input!" ], "on_conflict": [ - 4956 + 5244 ] } ], "insert_tournament_team_invites": [ - 4999, + 5287, { "objects": [ - 4994, + 5282, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 5000 + 5288 ] } ], "insert_tournament_team_invites_one": [ - 4982, + 5270, { "object": [ - 4994, + 5282, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 5000 + 5288 ] } ], "insert_tournament_team_roster": [ - 5040, + 5328, { "objects": [ - 5035, + 5323, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 5041 + 5329 ] } ], "insert_tournament_team_roster_one": [ - 5023, + 5311, { "object": [ - 5035, + 5323, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 5041 + 5329 ] } ], "insert_tournament_teams": [ - 5081, + 5369, { "objects": [ - 5076, + 5364, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 5083 + 5371 ] } ], "insert_tournament_teams_one": [ - 5064, + 5352, { "object": [ - 5076, + 5364, "tournament_teams_insert_input!" ], "on_conflict": [ - 5083 + 5371 ] } ], "insert_tournaments": [ - 5135, + 5423, { "objects": [ - 5130, + 5418, "[tournaments_insert_input!]!" ], "on_conflict": [ - 5137 + 5425 ] } ], "insert_tournaments_one": [ - 5106, + 5394, { "object": [ - 5130, + 5418, "tournaments_insert_input!" ], "on_conflict": [ - 5137 + 5425 ] } ], "insert_v_match_captains": [ - 5335, + 5623, { "objects": [ - 5332, + 5620, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 5326, + 5614, { "object": [ - 5332, + 5620, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 5446, + 5734, { "objects": [ - 5443, + 5731, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 5437, + 5725, { "object": [ - 5443, + 5731, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 5668, + 5956, { "objects": [ - 5663, + 5951, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 5652, + 5940, { "object": [ - 5663, + 5951, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5845, + 6133, { "objects": [ - 5840, + 6128, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5830, + 6118, { "object": [ - 5840, + 6128, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5939, + 6227, { "objects": [ - 5934, + 6222, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5941 + 6229 ] } ], "insert_v_team_stage_results_one": [ - 5912, + 6200, { "object": [ - 5934, + 6222, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5941 + 6229 + ] + } + ], + "installGamePlugin": [ + 86, + { + "slug": [ + 83, + "String!" + ], + "version": [ + 83 ] } ], "joinDraftGame": [ - 83, + 86, { "draftGameId": [ - 5170, + 5458, "uuid!" ], "inviteCode": [ - 80 + 83 ] } ], "joinDraftGameAsParty": [ - 83, + 86, { "draftGameId": [ - 5170, + 5458, "uuid!" ], "inviteCode": [ - 80 + 83 ] } ], @@ -157859,27 +164235,27 @@ export default { 42, { "reason": [ - 80 + 83 ], "serverId": [ - 80, + 83, "String!" ], "steam_id": [ - 80, + 83, "String!" ] } ], "league_award_forfeit": [ - 2882, + 3161, { "args": [ - 1956, + 2217, "league_award_forfeit_args!" ], "distinct_on": [ - 2904, + 3185, "[matches_select_column!]" ], "limit": [ @@ -157889,58 +164265,58 @@ export default { 40 ], "order_by": [ - 2902, + 3183, "[matches_order_by!]" ], "where": [ - 2891 + 3172 ] } ], "leaveLineup": [ - 83, + 86, { "match_id": [ - 80, + 83, "String!" ] } ], "linkSteamMatchHistory": [ - 72, + 75, { "auth_code": [ - 80, + 83, "String!" ], "share_code": [ - 80, + 83, "String!" ] } ], "loadFixtures": [ - 83 + 86 ], "logout": [ - 83 + 86 ], "moveServerItem": [ - 83, + 86, { "dest_path": [ - 80, + 83, "String!" ], "node_id": [ - 80, + 83, "String!" ], "server_id": [ - 80 + 83 ], "source_path": [ - 80, + 83, "String!" ] } @@ -157949,26 +164325,35 @@ export default { 54 ], "pauseClipRenderBatch": [ - 83, + 86, { "match_map_id": [ - 5170, + 5458, "uuid!" ] } ], "pollSteamMatchHistory": [ - 73 + 76 ], "previewDraftGame": [ 24, { "draftGameId": [ - 5170, + 5458, "uuid!" ], "inviteCode": [ - 80 + 83 + ] + } + ], + "previewGameMode": [ + 58, + { + "gameModeId": [ + 5458, + "uuid!" ] } ], @@ -157979,55 +164364,55 @@ export default { 40 ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "preset": [ - 80, + 83, "String!" ], "resolution": [ - 80 + 83 ], "target_name": [ - 80 + 83 ], "target_steam_id": [ - 80, + 83, "String!" ], "title": [ - 80 + 83 ] } ], "randomizeTeams": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ] } ], "rebootMatchServer": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ] } ], "recalculate_tournament_awards": [ - 195, + 199, { "args": [ - 4134, + 4417, "recalculate_tournament_awards_args!" ], "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -158037,83 +164422,92 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "recomputePlayerElo": [ - 60 + 62 ], "recomputePlayerEloStatus": [ - 61 + 63 + ], + "reconcileNodePlugins": [ + 64, + { + "nodeId": [ + 83, + "String!" + ] + } ], "reconnectLive": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ] } ], "refreshAllPlayers": [ - 62 + 65 ], "refreshAllPlayersStatus": [ - 63 + 66 ], "refreshFaceitRank": [ - 83, + 86, { "steam_id": [ - 80, + 83, "String!" ] } ], "refreshLiveHud": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ] } ], "registerName": [ - 83, + 86, { "name": [ - 80, + 83, "String!" ] } ], "removeFixtures": [ - 83 + 86 ], "removeSteamPresenceBotAccount": [ - 83, + 86, { "account_id": [ - 80, + 83, "String!" ] } ], "remove_league_team_from_season": [ - 2248, + 2509, { "args": [ - 4135, + 4418, "remove_league_team_from_season_args!" ], "distinct_on": [ - 2270, + 2531, "[league_team_seasons_select_column!]" ], "limit": [ @@ -158123,43 +164517,43 @@ export default { 40 ], "order_by": [ - 2268, + 2529, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2518 ] } ], "renameServerItem": [ - 83, + 86, { "new_path": [ - 80, + 83, "String!" ], "node_id": [ - 80, + 83, "String!" ], "old_path": [ - 80, + 83, "String!" ], "server_id": [ - 80 + 83 ] } ], "reorder_league_divisions": [ - 1957, + 2218, { "args": [ - 4136, + 4419, "reorder_league_divisions_args!" ], "distinct_on": [ - 1972, + 2233, "[league_divisions_select_column!]" ], "limit": [ @@ -158169,104 +164563,104 @@ export default { 40 ], "order_by": [ - 1970, + 2231, "[league_divisions_order_by!]" ], "where": [ - 1961 + 2222 ] } ], "reparseAllDemos": [ - 64 + 67 ], "reparseAllDemosStatus": [ - 65 + 68 ], "reparseDemo": [ - 83, + 86, { "match_map_id": [ - 5170, + 5458, "uuid!" ] } ], "reparseMatchDemos": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ] } ], "requestNameChange": [ - 83, + 86, { "name": [ - 80, + 83, "String!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "requeueClipRender": [ - 83, + 86, { "job_id": [ - 5170, + 5458, "uuid!" ] } ], "respondDraftInvite": [ - 83, + 86, { "accept": [ 5, "Boolean!" ], "draftGameId": [ - 5170, + 5458, "uuid!" ] } ], "respondToScrimRequest": [ - 83, + 86, { "accept": [ 5, "Boolean!" ], "request_id": [ - 5170, + 5458, "uuid!" ] } ], "restartService": [ - 83, + 86, { "service": [ - 80, + 83, "String!" ] } ], "restart_league_season": [ - 2133, + 2394, { "args": [ - 4137, + 4420, "restart_league_season_args!" ], "distinct_on": [ - 2153, + 2414, "[league_seasons_select_column!]" ], "limit": [ @@ -158276,28 +164670,28 @@ export default { 40 ], "order_by": [ - 2150, + 2411, "[league_seasons_order_by!]" ], "where": [ - 2138 + 2399 ] } ], "resumeClipRenderBatch": [ - 83, + 86, { "match_map_id": [ - 5170, + 5458, "uuid!" ] } ], "retryClipRenderBatch": [ - 83, + 86, { "match_map_id": [ - 5170, + 5458, "uuid!" ], "only_failed": [ @@ -158309,38 +164703,38 @@ export default { 55, { "valve_match_id": [ - 80, + 83, "String!" ] } ], "revokeAward": [ - 83, + 86, { "id": [ - 5170, + 5458, "uuid!" ] } ], "sanctionServerPlayer": [ - 66, + 69, { "duration": [ 31 ], "reason": [ - 80 + 83 ], "serverId": [ - 80 + 83 ], "steam_id": [ - 80, + 83, "String!" ], "type": [ - 80, + 83, "String!" ] } @@ -158352,33 +164746,33 @@ export default { 5 ], "description": [ - 80 + 83 ], "event_id": [ - 5170 + 5458 ], "id": [ - 5170 + 5458 ], "league_season_id": [ - 5170 + 5458 ], "name": [ - 80, + 83, "String!" ], "season_id": [ - 5170 + 5458 ], "silhouette": [ 40 ], "tier": [ - 80, + 83, "String!" ], "tournament_id": [ - 5170 + 5458 ] } ], @@ -158386,117 +164780,117 @@ export default { 50, { "content_markdown": [ - 80, + 83, "String!" ], "cover_image_url": [ - 80 + 83 ], "id": [ - 5170 + 5458 ], "teaser": [ - 80 + 83 ], "title": [ - 80, + 83, "String!" ] } ], "scanOrphanedDemos": [ - 67 + 70 ], "scanSteamBans": [ - 83 + 86 ], "scheduleMatch": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670 + 4958 ] } ], "sendScrimRequest": [ - 83, + 86, { "best_of": [ 40 ], "from_team_id": [ - 5170, + 5458, "uuid!" ], "proposed_scheduled_at": [ - 4670, + 4958, "timestamptz!" ], "region": [ - 80 + 83 ], "to_team_id": [ - 5170, + 5458, "uuid!" ] } ], "setGameNodeSchedulingState": [ - 83, + 86, { "enabled": [ 5, "Boolean!" ], "game_server_node_id": [ - 80, + 83, "String!" ] } ], "setHudMode": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ], "mode": [ - 80, + 83, "String!" ] } ], "setMapWinner": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "winning_lineup_id": [ - 5170, + 5458, "uuid!" ] } ], "setMatchWinner": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ], "winning_lineup_id": [ - 5170, + 5458, "uuid!" ] } @@ -158505,23 +164899,23 @@ export default { 50, { "id": [ - 5170, + 5458, "uuid!" ], "status": [ - 80, + 83, "String!" ] } ], "setTournamentAward": [ - 102, + 106, { "award_id": [ - 5170 + 5458 ], "custom_name": [ - 80 + 83 ], "placement": [ 40, @@ -158531,54 +164925,54 @@ export default { 40 ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "setupGameServer": [ - 71 + 74 ], "skipShaders": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ] } ], "specAutodirector": [ - 83, + 86, { "enabled": [ 5, "Boolean!" ], "match_id": [ - 5170, + 5458, "uuid!" ] } ], "specClick": [ - 83, + 86, { "button": [ - 80, + 83, "String!" ], "match_id": [ - 5170, + 5458, "uuid!" ] } ], "specHud": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ], "visible": [ @@ -158588,41 +164982,41 @@ export default { } ], "specHudSides": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ] } ], "specJump": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ] } ], "specPlayer": [ - 83, + 86, { "accountid": [ 40, "Int!" ], "match_id": [ - 5170, + 5458, "uuid!" ] } ], "specScoreboard": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ], "show": [ @@ -158632,10 +165026,10 @@ export default { } ], "specSlot": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ], "slot": [ @@ -158645,6446 +165039,6890 @@ export default { } ], "specXray": [ - 83, + 86, { "enabled": [ 5, "Boolean!" ], "match_id": [ - 5170, + 5458, "uuid!" ] } ], "startLive": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ], "mode": [ - 80, + 83, "String!" ] } ], "startMatch": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ], "server_id": [ - 5170 + 5458 ] } ], "stopGpuSession": [ - 83, + 86, { "game_server_node_id": [ - 5170, + 5458, "uuid!" ] } ], "stopLive": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ] } ], "stopWatchDemo": [ - 83, + 86, { "match_map_id": [ - 5170, + 5458, "uuid!" ] } ], "submitSteamPresenceSteamGuard": [ - 83, + 86, { "account_id": [ - 80, + 83, "String!" ], "code": [ - 80, + 83, "String!" ] } ], "swapLineups": [ - 83, + 86, { "match_id": [ - 5170, + 5458, "uuid!" ] } ], "switchLineup": [ - 83, + 86, { "match_id": [ - 80, + 83, "String!" ] } ], "switchLiveMatch": [ - 83, + 86, { "from_match_id": [ - 5170, + 5458, "uuid!" ], "mode": [ - 80, + 83, "String!" ], "to_match_id": [ - 5170, + 5458, "uuid!" ] } ], + "syncPluginRegistry": [ + 87 + ], "syncSteamFriends": [ - 83 + 86 ], "testFaceitIntegration": [ 26 ], "testUpload": [ - 99 + 103 + ], + "uninstallGamePlugin": [ + 86, + { + "force": [ + 5 + ], + "slug": [ + 83, + "String!" + ] + } ], "unlinkDiscord": [ - 83 + 86 ], "unlinkSteamMatchHistory": [ - 83 + 86 ], "unsanctionServerPlayer": [ - 66, + 69, { "serverId": [ - 80 + 83 ], "steam_id": [ - 80, + 83, "String!" ], "type": [ - 80, + 83, "String!" ] } ], "updateClip": [ - 83, + 86, { "clip_id": [ - 5170, + 5458, "uuid!" ], "target_steam_id": [ - 80 + 83 ], "title": [ - 80 + 83 ], "visibility": [ - 80 + 83 ] } ], "updateCs": [ - 83, + 86, { "game": [ - 80 + 83 ], "game_server_node_id": [ - 5170 + 5458 ] } ], "updateDraftGame": [ - 83, + 86, { "draftGameId": [ - 5170, + 5458, "uuid!" ], "settings": [ - 1930, + 2191, "jsonb!" ] } ], "updateServices": [ - 83 + 86 ], "update__map_pool": [ - 115, + 119, { "_set": [ - 120 + 124 ], "where": [ - 110, + 114, "_map_pool_bool_exp!" ] } ], "update__map_pool_by_pk": [ - 107, + 111, { "_set": [ - 120 + 124 ], "pk_columns": [ - 118, + 122, "_map_pool_pk_columns_input!" ] } ], "update__map_pool_many": [ - 115, + 119, { "updates": [ - 124, + 128, "[_map_pool_updates!]!" ] } ], "update_abandoned_matches": [ - 143, + 147, { "_inc": [ - 137 + 141 ], "_set": [ - 148 + 152 ], "where": [ - 135, + 139, "abandoned_matches_bool_exp!" ] } ], "update_abandoned_matches_by_pk": [ - 126, + 130, { "_inc": [ - 137 + 141 ], "_set": [ - 148 + 152 ], "pk_columns": [ - 146, + 150, "abandoned_matches_pk_columns_input!" ] } ], "update_abandoned_matches_many": [ - 143, + 147, { "updates": [ - 160, + 164, "[abandoned_matches_updates!]!" ] } ], "update_api_keys": [ - 177, + 181, { "_inc": [ - 173 + 177 ], "_set": [ - 182 + 186 ], "where": [ - 171, + 175, "api_keys_bool_exp!" ] } ], "update_api_keys_by_pk": [ - 167, + 171, { "_inc": [ - 173 + 177 ], "_set": [ - 182 + 186 ], "pk_columns": [ - 180, + 184, "api_keys_pk_columns_input!" ] } ], "update_api_keys_many": [ - 177, + 181, { "updates": [ - 190, + 194, "[api_keys_updates!]!" ] } ], "update_award_recipients": [ - 212, + 216, { "_inc": [ - 206 + 210 ], "_set": [ - 217 + 221 ], "where": [ - 204, + 208, "award_recipients_bool_exp!" ] } ], "update_award_recipients_by_pk": [ - 195, + 199, { "_inc": [ - 206 + 210 ], "_set": [ - 217 + 221 ], "pk_columns": [ - 215, + 219, "award_recipients_pk_columns_input!" ] } ], "update_award_recipients_many": [ - 212, + 216, { "updates": [ - 229, + 233, "[award_recipients_updates!]!" ] } ], "update_awards": [ - 246, + 250, { "_inc": [ - 242 + 246 ], "_set": [ - 252 + 256 ], "where": [ - 240, + 244, "awards_bool_exp!" ] } ], "update_awards_by_pk": [ - 236, + 240, { "_inc": [ - 242 + 246 ], "_set": [ - 252 + 256 ], "pk_columns": [ - 250, + 254, "awards_pk_columns_input!" ] } ], "update_awards_many": [ - 246, + 250, { "updates": [ - 260, + 264, "[awards_updates!]!" ] } ], "update_chat_read_state": [ - 279, + 283, { "_inc": [ - 275 + 279 ], "_set": [ - 284 + 288 ], "where": [ - 273, + 277, "chat_read_state_bool_exp!" ] } ], "update_chat_read_state_by_pk": [ - 269, + 273, { "_inc": [ - 275 + 279 ], "_set": [ - 284 + 288 ], "pk_columns": [ - 282, + 286, "chat_read_state_pk_columns_input!" ] } ], "update_chat_read_state_many": [ - 279, + 283, { "updates": [ - 292, + 296, "[chat_read_state_updates!]!" ] } ], "update_clip_render_jobs": [ - 319, + 323, { "_append": [ - 304 + 308 ], "_delete_at_path": [ - 310 + 314 ], "_delete_elem": [ - 311 + 315 ], "_delete_key": [ - 312 + 316 ], "_inc": [ - 313 + 317 ], "_prepend": [ - 323 + 327 ], "_set": [ - 327 + 331 ], "where": [ - 308, + 312, "clip_render_jobs_bool_exp!" ] } ], "update_clip_render_jobs_by_pk": [ - 296, + 300, { "_append": [ - 304 + 308 ], "_delete_at_path": [ - 310 + 314 ], "_delete_elem": [ - 311 + 315 ], "_delete_key": [ - 312 + 316 ], "_inc": [ - 313 + 317 ], "_prepend": [ - 323 + 327 ], "_set": [ - 327 + 331 ], "pk_columns": [ - 322, + 326, "clip_render_jobs_pk_columns_input!" ] } ], "update_clip_render_jobs_many": [ - 319, + 323, { "updates": [ - 339, + 343, "[clip_render_jobs_updates!]!" ] } ], "update_custom_pages": [ - 362, + 366, { "_append": [ - 351 + 355 ], "_delete_at_path": [ - 355 + 359 ], "_delete_elem": [ - 356 + 360 ], "_delete_key": [ - 357 + 361 ], "_inc": [ - 358 + 362 ], "_prepend": [ - 366 + 370 ], "_set": [ - 368 + 372 ], "where": [ - 353, + 357, "custom_pages_bool_exp!" ] } ], "update_custom_pages_by_pk": [ - 348, + 352, { "_append": [ - 351 + 355 ], "_delete_at_path": [ - 355 + 359 ], "_delete_elem": [ - 356 + 360 ], "_delete_key": [ - 357 + 361 ], "_inc": [ - 358 + 362 ], "_prepend": [ - 366 + 370 ], "_set": [ - 368 + 372 ], "pk_columns": [ - 365, + 369, "custom_pages_pk_columns_input!" ] } ], "update_custom_pages_many": [ - 362, + 366, { "updates": [ - 376, + 380, "[custom_pages_updates!]!" ] } ], "update_db_backups": [ - 390, + 394, { "_inc": [ - 386 + 390 ], "_set": [ - 395 + 399 ], "where": [ - 384, + 388, "db_backups_bool_exp!" ] } ], "update_db_backups_by_pk": [ - 380, + 384, { "_inc": [ - 386 + 390 ], "_set": [ - 395 + 399 ], "pk_columns": [ - 393, + 397, "db_backups_pk_columns_input!" ] } ], "update_db_backups_many": [ - 390, + 394, { "updates": [ - 403, + 407, "[db_backups_updates!]!" ] } ], "update_direct_conversations": [ - 417, + 421, { "_inc": [ - 413 + 417 ], "_set": [ - 422 + 426 ], "where": [ - 411, + 415, "direct_conversations_bool_exp!" ] } ], "update_direct_conversations_by_pk": [ - 407, + 411, { "_inc": [ - 413 + 417 ], "_set": [ - 422 + 426 ], "pk_columns": [ - 420, + 424, "direct_conversations_pk_columns_input!" ] } ], "update_direct_conversations_many": [ - 417, + 421, { "updates": [ - 430, + 434, "[direct_conversations_updates!]!" ] } ], "update_direct_messages": [ - 444, + 448, { "_inc": [ - 440 + 444 ], "_set": [ - 449 + 453 ], "where": [ - 438, + 442, "direct_messages_bool_exp!" ] } ], "update_direct_messages_by_pk": [ - 434, + 438, { "_inc": [ - 440 + 444 ], "_set": [ - 449 + 453 ], "pk_columns": [ - 447, + 451, "direct_messages_pk_columns_input!" ] } ], "update_direct_messages_many": [ - 444, + 448, { "updates": [ - 457, + 461, "[direct_messages_updates!]!" ] } ], "update_draft_game_picks": [ - 480, + 484, { "_inc": [ - 474 + 478 ], "_set": [ - 487 + 491 ], "where": [ - 472, + 476, "draft_game_picks_bool_exp!" ] } ], "update_draft_game_picks_by_pk": [ - 461, + 465, { "_inc": [ - 474 + 478 ], "_set": [ - 487 + 491 ], "pk_columns": [ - 483, + 487, "draft_game_picks_pk_columns_input!" ] } ], "update_draft_game_picks_many": [ - 480, + 484, { "updates": [ - 499, + 503, "[draft_game_picks_updates!]!" ] } ], "update_draft_game_players": [ - 525, + 529, { "_inc": [ - 519 + 523 ], "_set": [ - 532 + 536 ], "where": [ - 517, + 521, "draft_game_players_bool_exp!" ] } ], "update_draft_game_players_by_pk": [ - 506, + 510, { "_inc": [ - 519 + 523 ], "_set": [ - 532 + 536 ], "pk_columns": [ - 528, + 532, "draft_game_players_pk_columns_input!" ] } ], "update_draft_game_players_many": [ - 525, + 529, { "updates": [ - 544, + 548, "[draft_game_players_updates!]!" ] } ], "update_draft_games": [ - 570, + 574, { "_inc": [ - 564 + 568 ], "_set": [ - 578 + 582 ], "where": [ - 562, + 566, "draft_games_bool_exp!" ] } ], "update_draft_games_by_pk": [ - 551, + 555, { "_inc": [ - 564 + 568 ], "_set": [ - 578 + 582 ], "pk_columns": [ - 574, + 578, "draft_games_pk_columns_input!" ] } ], "update_draft_games_many": [ - 570, + 574, { "updates": [ - 590, + 594, "[draft_games_updates!]!" ] } ], "update_e_award_sources": [ - 607, + 611, { "_set": [ - 612 + 616 ], "where": [ - 600, + 604, "e_award_sources_bool_exp!" ] } ], "update_e_award_sources_by_pk": [ - 597, + 601, { "_set": [ - 612 + 616 ], "pk_columns": [ - 610, + 614, "e_award_sources_pk_columns_input!" ] } ], "update_e_award_sources_many": [ - 607, + 611, { "updates": [ - 616, + 620, "[e_award_sources_updates!]!" ] } ], "update_e_award_tiers": [ - 627, + 631, { "_set": [ - 632 + 636 ], "where": [ - 620, + 624, "e_award_tiers_bool_exp!" ] } ], "update_e_award_tiers_by_pk": [ - 617, + 621, { "_set": [ - 632 + 636 ], "pk_columns": [ - 630, + 634, "e_award_tiers_pk_columns_input!" ] } ], "update_e_award_tiers_many": [ - 627, + 631, { "updates": [ - 636, + 640, "[e_award_tiers_updates!]!" ] } ], "update_e_check_in_settings": [ - 647, + 651, { "_set": [ - 652 + 656 ], "where": [ - 640, + 644, "e_check_in_settings_bool_exp!" ] } ], "update_e_check_in_settings_by_pk": [ - 637, + 641, { "_set": [ - 652 + 656 ], "pk_columns": [ - 650, + 654, "e_check_in_settings_pk_columns_input!" ] } ], "update_e_check_in_settings_many": [ - 647, + 651, { "updates": [ - 656, + 660, "[e_check_in_settings_updates!]!" ] } ], "update_e_draft_game_captain_selection": [ - 667, + 671, { "_set": [ - 673 + 677 ], "where": [ - 660, + 664, "e_draft_game_captain_selection_bool_exp!" ] } ], "update_e_draft_game_captain_selection_by_pk": [ - 657, + 661, { "_set": [ - 673 + 677 ], "pk_columns": [ - 671, + 675, "e_draft_game_captain_selection_pk_columns_input!" ] } ], "update_e_draft_game_captain_selection_many": [ - 667, + 671, { "updates": [ - 677, + 681, "[e_draft_game_captain_selection_updates!]!" ] } ], "update_e_draft_game_draft_order": [ - 688, + 692, { "_set": [ - 694 + 698 ], "where": [ - 681, + 685, "e_draft_game_draft_order_bool_exp!" ] } ], "update_e_draft_game_draft_order_by_pk": [ - 678, + 682, { "_set": [ - 694 + 698 ], "pk_columns": [ - 692, + 696, "e_draft_game_draft_order_pk_columns_input!" ] } ], "update_e_draft_game_draft_order_many": [ - 688, + 692, { "updates": [ - 698, + 702, "[e_draft_game_draft_order_updates!]!" ] } ], "update_e_draft_game_mode": [ - 709, + 713, { "_set": [ - 715 + 719 ], "where": [ - 702, + 706, "e_draft_game_mode_bool_exp!" ] } ], "update_e_draft_game_mode_by_pk": [ - 699, + 703, { "_set": [ - 715 + 719 ], "pk_columns": [ - 713, + 717, "e_draft_game_mode_pk_columns_input!" ] } ], "update_e_draft_game_mode_many": [ - 709, + 713, { "updates": [ - 719, + 723, "[e_draft_game_mode_updates!]!" ] } ], "update_e_draft_game_player_status": [ - 730, + 734, { "_set": [ - 736 + 740 ], "where": [ - 723, + 727, "e_draft_game_player_status_bool_exp!" ] } ], "update_e_draft_game_player_status_by_pk": [ - 720, + 724, { "_set": [ - 736 + 740 ], "pk_columns": [ - 734, + 738, "e_draft_game_player_status_pk_columns_input!" ] } ], "update_e_draft_game_player_status_many": [ - 730, + 734, { "updates": [ - 740, + 744, "[e_draft_game_player_status_updates!]!" ] } ], "update_e_draft_game_status": [ - 751, + 755, { "_set": [ - 757 + 761 ], "where": [ - 744, + 748, "e_draft_game_status_bool_exp!" ] } ], "update_e_draft_game_status_by_pk": [ - 741, + 745, { "_set": [ - 757 + 761 ], "pk_columns": [ - 755, + 759, "e_draft_game_status_pk_columns_input!" ] } ], "update_e_draft_game_status_many": [ - 751, + 755, { "updates": [ - 761, + 765, "[e_draft_game_status_updates!]!" ] } ], "update_e_event_media_access": [ - 772, + 776, { "_set": [ - 777 + 781 ], "where": [ - 765, + 769, "e_event_media_access_bool_exp!" ] } ], "update_e_event_media_access_by_pk": [ - 762, + 766, { "_set": [ - 777 + 781 ], "pk_columns": [ - 775, + 779, "e_event_media_access_pk_columns_input!" ] } ], "update_e_event_media_access_many": [ - 772, + 776, { "updates": [ - 781, + 785, "[e_event_media_access_updates!]!" ] } ], "update_e_event_visibility": [ - 792, + 796, { "_set": [ - 797 + 801 ], "where": [ - 785, + 789, "e_event_visibility_bool_exp!" ] } ], "update_e_event_visibility_by_pk": [ - 782, + 786, { "_set": [ - 797 + 801 ], "pk_columns": [ - 795, + 799, "e_event_visibility_pk_columns_input!" ] } ], "update_e_event_visibility_many": [ - 792, + 796, { "updates": [ - 801, + 805, "[e_event_visibility_updates!]!" ] } ], "update_e_friend_status": [ - 812, + 816, { "_set": [ - 818 + 822 ], "where": [ - 805, + 809, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 802, + 806, { "_set": [ - 818 + 822 ], "pk_columns": [ - 816, + 820, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 812, + 816, { "updates": [ - 822, + 826, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 833, + 837, { "_set": [ - 838 + 842 ], "where": [ - 826, + 830, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 823, + 827, { "_set": [ - 838 + 842 ], "pk_columns": [ - 836, + 840, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 833, + 837, { "updates": [ - 842, + 846, "[e_game_cfg_types_updates!]!" ] } ], + "update_e_game_plugin_channels": [ + 857, + { + "_set": [ + 862 + ], + "where": [ + 850, + "e_game_plugin_channels_bool_exp!" + ] + } + ], + "update_e_game_plugin_channels_by_pk": [ + 847, + { + "_set": [ + 862 + ], + "pk_columns": [ + 860, + "e_game_plugin_channels_pk_columns_input!" + ] + } + ], + "update_e_game_plugin_channels_many": [ + 857, + { + "updates": [ + 866, + "[e_game_plugin_channels_updates!]!" + ] + } + ], + "update_e_game_plugin_install_statuses": [ + 877, + { + "_set": [ + 882 + ], + "where": [ + 870, + "e_game_plugin_install_statuses_bool_exp!" + ] + } + ], + "update_e_game_plugin_install_statuses_by_pk": [ + 867, + { + "_set": [ + 882 + ], + "pk_columns": [ + 880, + "e_game_plugin_install_statuses_pk_columns_input!" + ] + } + ], + "update_e_game_plugin_install_statuses_many": [ + 877, + { + "updates": [ + 886, + "[e_game_plugin_install_statuses_updates!]!" + ] + } + ], + "update_e_game_plugin_kinds": [ + 897, + { + "_set": [ + 902 + ], + "where": [ + 890, + "e_game_plugin_kinds_bool_exp!" + ] + } + ], + "update_e_game_plugin_kinds_by_pk": [ + 887, + { + "_set": [ + 902 + ], + "pk_columns": [ + 900, + "e_game_plugin_kinds_pk_columns_input!" + ] + } + ], + "update_e_game_plugin_kinds_many": [ + 897, + { + "updates": [ + 906, + "[e_game_plugin_kinds_updates!]!" + ] + } + ], "update_e_game_server_node_statuses": [ - 853, + 917, { "_set": [ - 859 + 923 ], "where": [ - 846, + 910, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 843, + 907, { "_set": [ - 859 + 923 ], "pk_columns": [ - 857, + 921, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 853, + 917, { "updates": [ - 863, + 927, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_league_movement_types": [ - 874, + 938, { "_set": [ - 880 + 944 ], "where": [ - 867, + 931, "e_league_movement_types_bool_exp!" ] } ], "update_e_league_movement_types_by_pk": [ - 864, + 928, { "_set": [ - 880 + 944 ], "pk_columns": [ - 878, + 942, "e_league_movement_types_pk_columns_input!" ] } ], "update_e_league_movement_types_many": [ - 874, + 938, { "updates": [ - 884, + 948, "[e_league_movement_types_updates!]!" ] } ], "update_e_league_proposal_statuses": [ - 895, + 959, { "_set": [ - 901 + 965 ], "where": [ - 888, + 952, "e_league_proposal_statuses_bool_exp!" ] } ], "update_e_league_proposal_statuses_by_pk": [ - 885, + 949, { "_set": [ - 901 + 965 ], "pk_columns": [ - 899, + 963, "e_league_proposal_statuses_pk_columns_input!" ] } ], "update_e_league_proposal_statuses_many": [ - 895, + 959, { "updates": [ - 905, + 969, "[e_league_proposal_statuses_updates!]!" ] } ], "update_e_league_registration_statuses": [ - 916, + 980, { "_set": [ - 922 + 986 ], "where": [ - 909, + 973, "e_league_registration_statuses_bool_exp!" ] } ], "update_e_league_registration_statuses_by_pk": [ - 906, + 970, { "_set": [ - 922 + 986 ], "pk_columns": [ - 920, + 984, "e_league_registration_statuses_pk_columns_input!" ] } ], "update_e_league_registration_statuses_many": [ - 916, + 980, { "updates": [ - 926, + 990, "[e_league_registration_statuses_updates!]!" ] } ], "update_e_league_season_statuses": [ - 937, + 1001, { "_set": [ - 943 + 1007 ], "where": [ - 930, + 994, "e_league_season_statuses_bool_exp!" ] } ], "update_e_league_season_statuses_by_pk": [ - 927, + 991, { "_set": [ - 943 + 1007 ], "pk_columns": [ - 941, + 1005, "e_league_season_statuses_pk_columns_input!" ] } ], "update_e_league_season_statuses_many": [ - 937, + 1001, { "updates": [ - 947, + 1011, "[e_league_season_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 958, + 1022, { "_set": [ - 964 + 1028 ], "where": [ - 951, + 1015, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 948, + 1012, { "_set": [ - 964 + 1028 ], "pk_columns": [ - 962, + 1026, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 958, + 1022, { "updates": [ - 968, + 1032, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 979, + 1043, { "_set": [ - 984 + 1048 ], "where": [ - 972, + 1036, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 969, + 1033, { "_set": [ - 984 + 1048 ], "pk_columns": [ - 982, + 1046, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 979, + 1043, { "updates": [ - 988, + 1052, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 999, + 1063, { "_set": [ - 1005 + 1069 ], "where": [ - 992, + 1056, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 989, + 1053, { "_set": [ - 1005 + 1069 ], "pk_columns": [ - 1003, + 1067, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 999, + 1063, { "updates": [ - 1009, + 1073, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 1020, + 1084, { "_set": [ - 1025 + 1089 ], "where": [ - 1013, + 1077, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 1010, + 1074, { "_set": [ - 1025 + 1089 ], "pk_columns": [ - 1023, + 1087, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 1020, + 1084, { "updates": [ - 1029, + 1093, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 1040, + 1104, { "_set": [ - 1046 + 1110 ], "where": [ - 1033, + 1097, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 1030, + 1094, { "_set": [ - 1046 + 1110 ], "pk_columns": [ - 1044, + 1108, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 1040, + 1104, { "updates": [ - 1050, + 1114, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 1061, + 1125, { "_set": [ - 1066 + 1130 ], "where": [ - 1054, + 1118, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 1051, + 1115, { "_set": [ - 1066 + 1130 ], "pk_columns": [ - 1064, + 1128, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 1061, + 1125, { "updates": [ - 1070, + 1134, "[e_match_mode_updates!]!" ] } ], "update_e_match_party_sources": [ - 1081, + 1145, { "_set": [ - 1086 + 1150 ], "where": [ - 1074, + 1138, "e_match_party_sources_bool_exp!" ] } ], "update_e_match_party_sources_by_pk": [ - 1071, + 1135, { "_set": [ - 1086 + 1150 ], "pk_columns": [ - 1084, + 1148, "e_match_party_sources_pk_columns_input!" ] } ], "update_e_match_party_sources_many": [ - 1081, + 1145, { "updates": [ - 1090, + 1154, "[e_match_party_sources_updates!]!" ] } ], "update_e_match_status": [ - 1101, + 1165, { "_set": [ - 1107 + 1171 ], "where": [ - 1094, + 1158, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 1091, + 1155, { "_set": [ - 1107 + 1171 ], "pk_columns": [ - 1105, + 1169, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 1101, + 1165, { "updates": [ - 1111, + 1175, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 1122, + 1186, { "_set": [ - 1128 + 1192 ], "where": [ - 1115, + 1179, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 1112, + 1176, { "_set": [ - 1128 + 1192 ], "pk_columns": [ - 1126, + 1190, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 1122, + 1186, { "updates": [ - 1132, + 1196, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 1143, + 1207, { "_set": [ - 1148 + 1212 ], "where": [ - 1136, + 1200, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 1133, + 1197, { "_set": [ - 1148 + 1212 ], "pk_columns": [ - 1146, + 1210, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 1143, + 1207, { "updates": [ - 1152, + 1216, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 1163, + 1227, { "_set": [ - 1168 + 1232 ], "where": [ - 1156, + 1220, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 1153, + 1217, { "_set": [ - 1168 + 1232 ], "pk_columns": [ - 1166, + 1230, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 1163, + 1227, { "updates": [ - 1172, + 1236, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 1183, + 1247, { "_set": [ - 1188 + 1252 ], "where": [ - 1176, + 1240, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 1173, + 1237, { "_set": [ - 1188 + 1252 ], "pk_columns": [ - 1186, + 1250, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 1183, + 1247, { "updates": [ - 1192, + 1256, "[e_player_roles_updates!]!" ] } ], "update_e_plugin_runtimes": [ - 1203, + 1267, { "_set": [ - 1208 + 1272 ], "where": [ - 1196, + 1260, "e_plugin_runtimes_bool_exp!" ] } ], "update_e_plugin_runtimes_by_pk": [ - 1193, + 1257, { "_set": [ - 1208 + 1272 ], "pk_columns": [ - 1206, + 1270, "e_plugin_runtimes_pk_columns_input!" ] } ], "update_e_plugin_runtimes_many": [ - 1203, + 1267, { "updates": [ - 1212, + 1276, "[e_plugin_runtimes_updates!]!" ] } ], "update_e_ready_settings": [ - 1223, + 1287, { "_set": [ - 1228 + 1292 ], "where": [ - 1216, + 1280, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 1213, + 1277, { "_set": [ - 1228 + 1292 ], "pk_columns": [ - 1226, + 1290, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 1223, + 1287, { "updates": [ - 1232, + 1296, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 1243, + 1307, { "_set": [ - 1249 + 1313 ], "where": [ - 1236, + 1300, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 1233, + 1297, { "_set": [ - 1249 + 1313 ], "pk_columns": [ - 1247, + 1311, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 1243, + 1307, { "updates": [ - 1253, + 1317, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 1264, + 1328, { "_set": [ - 1269 + 1333 ], "where": [ - 1257, + 1321, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 1254, + 1318, { "_set": [ - 1269 + 1333 ], "pk_columns": [ - 1267, + 1331, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 1264, + 1328, { "updates": [ - 1273, + 1337, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 1284, + 1348, { "_set": [ - 1289 + 1353 ], "where": [ - 1277, + 1341, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 1274, + 1338, { "_set": [ - 1289 + 1353 ], "pk_columns": [ - 1287, + 1351, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 1284, + 1348, { "updates": [ - 1293, + 1357, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 1304, + 1368, { "_set": [ - 1309 + 1373 ], "where": [ - 1297, + 1361, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 1294, + 1358, { "_set": [ - 1309 + 1373 ], "pk_columns": [ - 1307, + 1371, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 1304, + 1368, { "updates": [ - 1313, + 1377, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 1324, + 1388, { "_set": [ - 1329 + 1393 ], "where": [ - 1317, + 1381, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 1314, + 1378, { "_set": [ - 1329 + 1393 ], "pk_columns": [ - 1327, + 1391, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 1324, + 1388, { "updates": [ - 1333, + 1397, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 1344, + 1408, { "_set": [ - 1350 + 1414 ], "where": [ - 1337, + 1401, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 1334, + 1398, { "_set": [ - 1350 + 1414 ], "pk_columns": [ - 1348, + 1412, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 1344, + 1408, { "updates": [ - 1354, + 1418, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 1365, + 1429, { "_set": [ - 1370 + 1434 ], "where": [ - 1358, + 1422, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 1355, + 1419, { "_set": [ - 1370 + 1434 ], "pk_columns": [ - 1368, + 1432, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 1365, + 1429, { "updates": [ - 1374, + 1438, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 1385, + 1449, { "_set": [ - 1390 + 1454 ], "where": [ - 1378, + 1442, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 1375, + 1439, { "_set": [ - 1390 + 1454 ], "pk_columns": [ - 1388, + 1452, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 1385, + 1449, { "updates": [ - 1394, + 1458, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_categories": [ - 1405, + 1469, { "_set": [ - 1411 + 1475 ], "where": [ - 1398, + 1462, "e_tournament_categories_bool_exp!" ] } ], "update_e_tournament_categories_by_pk": [ - 1395, + 1459, { "_set": [ - 1411 + 1475 ], "pk_columns": [ - 1409, + 1473, "e_tournament_categories_pk_columns_input!" ] } ], "update_e_tournament_categories_many": [ - 1405, + 1469, { "updates": [ - 1415, + 1479, "[e_tournament_categories_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 1426, + 1490, { "_set": [ - 1432 + 1496 ], "where": [ - 1419, + 1483, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 1416, + 1480, { "_set": [ - 1432 + 1496 ], "pk_columns": [ - 1430, + 1494, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 1426, + 1490, { "updates": [ - 1436, + 1500, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1447, + 1511, { "_set": [ - 1453 + 1517 ], "where": [ - 1440, + 1504, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1437, + 1501, { "_set": [ - 1453 + 1517 ], "pk_columns": [ - 1451, + 1515, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1447, + 1511, { "updates": [ - 1457, + 1521, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1468, + 1532, { "_set": [ - 1473 + 1537 ], "where": [ - 1461, + 1525, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1458, + 1522, { "_set": [ - 1473 + 1537 ], "pk_columns": [ - 1471, + 1535, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1468, + 1532, { "updates": [ - 1477, + 1541, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1488, + 1552, { "_set": [ - 1493 + 1557 ], "where": [ - 1481, + 1545, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1478, + 1542, { "_set": [ - 1493 + 1557 ], "pk_columns": [ - 1491, + 1555, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1488, + 1552, { "updates": [ - 1497, + 1561, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1508, + 1572, { "_set": [ - 1513 + 1577 ], "where": [ - 1501, + 1565, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1498, + 1562, { "_set": [ - 1513 + 1577 ], "pk_columns": [ - 1511, + 1575, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1508, + 1572, { "updates": [ - 1517, + 1581, "[e_winning_reasons_updates!]!" ] } ], "update_event_match_links": [ - 1526, + 1590, { "_set": [ - 1531 + 1595 ], "where": [ - 1521, + 1585, "event_match_links_bool_exp!" ] } ], "update_event_match_links_by_pk": [ - 1518, + 1582, { "_set": [ - 1531 + 1595 ], "pk_columns": [ - 1529, + 1593, "event_match_links_pk_columns_input!" ] } ], "update_event_match_links_many": [ - 1526, + 1590, { "updates": [ - 1535, + 1599, "[event_match_links_updates!]!" ] } ], "update_event_media": [ - 1553, + 1617, { "_inc": [ - 1547 + 1611 ], "_set": [ - 1600 + 1664 ], "where": [ - 1545, + 1609, "event_media_bool_exp!" ] } ], "update_event_media_by_pk": [ - 1536, + 1600, { "_inc": [ - 1547 + 1611 ], "_set": [ - 1600 + 1664 ], "pk_columns": [ - 1557, + 1621, "event_media_pk_columns_input!" ] } ], "update_event_media_many": [ - 1553, + 1617, { "updates": [ - 1612, + 1676, "[event_media_updates!]!" ] } ], "update_event_media_players": [ - 1575, + 1639, { "_inc": [ - 1569 + 1633 ], "_set": [ - 1580 + 1644 ], "where": [ - 1567, + 1631, "event_media_players_bool_exp!" ] } ], "update_event_media_players_by_pk": [ - 1558, + 1622, { "_inc": [ - 1569 + 1633 ], "_set": [ - 1580 + 1644 ], "pk_columns": [ - 1578, + 1642, "event_media_players_pk_columns_input!" ] } ], "update_event_media_players_many": [ - 1575, + 1639, { "updates": [ - 1592, + 1656, "[event_media_players_updates!]!" ] } ], "update_event_organizers": [ - 1636, + 1700, { "_inc": [ - 1630 + 1694 ], "_set": [ - 1641 + 1705 ], "where": [ - 1628, + 1692, "event_organizers_bool_exp!" ] } ], "update_event_organizers_by_pk": [ - 1619, + 1683, { "_inc": [ - 1630 + 1694 ], "_set": [ - 1641 + 1705 ], "pk_columns": [ - 1639, + 1703, "event_organizers_pk_columns_input!" ] } ], "update_event_organizers_many": [ - 1636, + 1700, { "updates": [ - 1653, + 1717, "[event_organizers_updates!]!" ] } ], "update_event_players": [ - 1677, + 1741, { "_inc": [ - 1671 + 1735 ], "_set": [ - 1682 + 1746 ], "where": [ - 1669, + 1733, "event_players_bool_exp!" ] } ], "update_event_players_by_pk": [ - 1660, + 1724, { "_inc": [ - 1671 + 1735 ], "_set": [ - 1682 + 1746 ], "pk_columns": [ - 1680, + 1744, "event_players_pk_columns_input!" ] } ], "update_event_players_many": [ - 1677, + 1741, { "updates": [ - 1694, + 1758, "[event_players_updates!]!" ] } ], "update_event_teams": [ - 1715, + 1779, { "_set": [ - 1720 + 1784 ], "where": [ - 1708, + 1772, "event_teams_bool_exp!" ] } ], "update_event_teams_by_pk": [ - 1701, + 1765, { "_set": [ - 1720 + 1784 ], "pk_columns": [ - 1718, + 1782, "event_teams_pk_columns_input!" ] } ], "update_event_teams_many": [ - 1715, + 1779, { "updates": [ - 1724, + 1788, "[event_teams_updates!]!" ] } ], "update_event_tournaments": [ - 1739, + 1803, { "_set": [ - 1744 + 1808 ], "where": [ - 1732, + 1796, "event_tournaments_bool_exp!" ] } ], "update_event_tournaments_by_pk": [ - 1725, + 1789, { "_set": [ - 1744 + 1808 ], "pk_columns": [ - 1742, + 1806, "event_tournaments_pk_columns_input!" ] } ], "update_event_tournaments_many": [ - 1739, + 1803, { "updates": [ - 1748, + 1812, "[event_tournaments_updates!]!" ] } ], "update_events": [ - 1759, + 1823, { "_inc": [ - 1755 + 1819 ], "_set": [ - 1765 + 1829 ], "where": [ - 1753, + 1817, "events_bool_exp!" ] } ], "update_events_by_pk": [ - 1749, + 1813, { "_inc": [ - 1755 + 1819 ], "_set": [ - 1765 + 1829 ], "pk_columns": [ - 1763, + 1827, "events_pk_columns_input!" ] } ], "update_events_many": [ - 1759, + 1823, { "updates": [ - 1773, + 1837, "[events_updates!]!" ] } ], "update_friends": [ - 1789, + 1853, { "_inc": [ - 1785 + 1849 ], "_set": [ - 1794 + 1858 ], "where": [ - 1783, + 1847, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1779, + 1843, { "_inc": [ - 1785 + 1849 ], "_set": [ - 1794 + 1858 ], "pk_columns": [ - 1792, + 1856, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1789, + 1853, { "updates": [ - 1802, + 1866, "[friends_updates!]!" ] } ], + "update_game_mode_plugins": [ + 1893, + { + "_append": [ + 1878 + ], + "_delete_at_path": [ + 1884 + ], + "_delete_elem": [ + 1885 + ], + "_delete_key": [ + 1886 + ], + "_inc": [ + 1887 + ], + "_prepend": [ + 1897 + ], + "_set": [ + 1901 + ], + "where": [ + 1882, + "game_mode_plugins_bool_exp!" + ] + } + ], + "update_game_mode_plugins_by_pk": [ + 1870, + { + "_append": [ + 1878 + ], + "_delete_at_path": [ + 1884 + ], + "_delete_elem": [ + 1885 + ], + "_delete_key": [ + 1886 + ], + "_inc": [ + 1887 + ], + "_prepend": [ + 1897 + ], + "_set": [ + 1901 + ], + "pk_columns": [ + 1896, + "game_mode_plugins_pk_columns_input!" + ] + } + ], + "update_game_mode_plugins_many": [ + 1893, + { + "updates": [ + 1913, + "[game_mode_plugins_updates!]!" + ] + } + ], + "update_game_modes": [ + 1932, + { + "_append": [ + 1923 + ], + "_delete_at_path": [ + 1926 + ], + "_delete_elem": [ + 1927 + ], + "_delete_key": [ + 1928 + ], + "_prepend": [ + 1937 + ], + "_set": [ + 1939 + ], + "where": [ + 1924, + "game_modes_bool_exp!" + ] + } + ], + "update_game_modes_by_pk": [ + 1920, + { + "_append": [ + 1923 + ], + "_delete_at_path": [ + 1926 + ], + "_delete_elem": [ + 1927 + ], + "_delete_key": [ + 1928 + ], + "_prepend": [ + 1937 + ], + "_set": [ + 1939 + ], + "pk_columns": [ + 1936, + "game_modes_pk_columns_input!" + ] + } + ], + "update_game_modes_many": [ + 1932, + { + "updates": [ + 1943, + "[game_modes_updates!]!" + ] + } + ], + "update_game_plugin_installs": [ + 1952, + { + "_set": [ + 1957 + ], + "where": [ + 1947, + "game_plugin_installs_bool_exp!" + ] + } + ], + "update_game_plugin_installs_by_pk": [ + 1944, + { + "_set": [ + 1957 + ], + "pk_columns": [ + 1955, + "game_plugin_installs_pk_columns_input!" + ] + } + ], + "update_game_plugin_installs_many": [ + 1952, + { + "updates": [ + 1961, + "[game_plugin_installs_updates!]!" + ] + } + ], + "update_game_plugin_versions": [ + 1981, + { + "_inc": [ + 1975 + ], + "_set": [ + 1988 + ], + "where": [ + 1973, + "game_plugin_versions_bool_exp!" + ] + } + ], + "update_game_plugin_versions_by_pk": [ + 1962, + { + "_inc": [ + 1975 + ], + "_set": [ + 1988 + ], + "pk_columns": [ + 1984, + "game_plugin_versions_pk_columns_input!" + ] + } + ], + "update_game_plugin_versions_many": [ + 1981, + { + "updates": [ + 2000, + "[game_plugin_versions_updates!]!" + ] + } + ], + "update_game_plugins": [ + 2020, + { + "_append": [ + 2010 + ], + "_delete_at_path": [ + 2014 + ], + "_delete_elem": [ + 2015 + ], + "_delete_key": [ + 2016 + ], + "_prepend": [ + 2025 + ], + "_set": [ + 2027 + ], + "where": [ + 2012, + "game_plugins_bool_exp!" + ] + } + ], + "update_game_plugins_by_pk": [ + 2007, + { + "_append": [ + 2010 + ], + "_delete_at_path": [ + 2014 + ], + "_delete_elem": [ + 2015 + ], + "_delete_key": [ + 2016 + ], + "_prepend": [ + 2025 + ], + "_set": [ + 2027 + ], + "pk_columns": [ + 2024, + "game_plugins_pk_columns_input!" + ] + } + ], + "update_game_plugins_many": [ + 2020, + { + "updates": [ + 2035, + "[game_plugins_updates!]!" + ] + } + ], + "update_game_server_node_plugins": [ + 2055, + { + "_set": [ + 2062 + ], + "where": [ + 2048, + "game_server_node_plugins_bool_exp!" + ] + } + ], + "update_game_server_node_plugins_by_pk": [ + 2039, + { + "_set": [ + 2062 + ], + "pk_columns": [ + 2058, + "game_server_node_plugins_pk_columns_input!" + ] + } + ], + "update_game_server_node_plugins_many": [ + 2055, + { + "updates": [ + 2066, + "[game_server_node_plugins_updates!]!" + ] + } + ], "update_game_server_nodes": [ - 1829, + 2090, { "_append": [ - 1814 + 2075 ], "_delete_at_path": [ - 1820 + 2081 ], "_delete_elem": [ - 1821 + 2082 ], "_delete_key": [ - 1822 + 2083 ], "_inc": [ - 1823 + 2084 ], "_prepend": [ - 1834 + 2095 ], "_set": [ - 1838 + 2099 ], "where": [ - 1818, + 2079, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1806, + 2067, { "_append": [ - 1814 + 2075 ], "_delete_at_path": [ - 1820 + 2081 ], "_delete_elem": [ - 1821 + 2082 ], "_delete_key": [ - 1822 + 2083 ], "_inc": [ - 1823 + 2084 ], "_prepend": [ - 1834 + 2095 ], "_set": [ - 1838 + 2099 ], "pk_columns": [ - 1833, + 2094, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1829, + 2090, { "updates": [ - 1850, + 2111, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1871, + 2132, { "_append": [ - 1860 + 2121 ], "_delete_at_path": [ - 1864 + 2125 ], "_delete_elem": [ - 1865 + 2126 ], "_delete_key": [ - 1866 + 2127 ], "_inc": [ - 1867 + 2128 ], "_prepend": [ - 1876 + 2137 ], "_set": [ - 1878 + 2139 ], "where": [ - 1862, + 2123, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1857, + 2118, { "_append": [ - 1860 + 2121 ], "_delete_at_path": [ - 1864 + 2125 ], "_delete_elem": [ - 1865 + 2126 ], "_delete_key": [ - 1866 + 2127 ], "_inc": [ - 1867 + 2128 ], "_prepend": [ - 1876 + 2137 ], "_set": [ - 1878 + 2139 ], "pk_columns": [ - 1875, + 2136, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1871, + 2132, { "updates": [ - 1886, + 2147, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1904, + 2165, { "_append": [ - 1893 + 2154 ], "_delete_at_path": [ - 1897 + 2158 ], "_delete_elem": [ - 1898 + 2159 ], "_delete_key": [ - 1899 + 2160 ], "_inc": [ - 1900 + 2161 ], "_prepend": [ - 1908 + 2169 ], "_set": [ - 1910 + 2171 ], "where": [ - 1895, + 2156, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1890, + 2151, { "_append": [ - 1893 + 2154 ], "_delete_at_path": [ - 1897 + 2158 ], "_delete_elem": [ - 1898 + 2159 ], "_delete_key": [ - 1899 + 2160 ], "_inc": [ - 1900 + 2161 ], "_prepend": [ - 1908 + 2169 ], "_set": [ - 1910 + 2171 ], "pk_columns": [ - 1907, + 2168, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1904, + 2165, { "updates": [ - 1918, + 2179, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1942, + 2203, { "_inc": [ - 1938 + 2199 ], "_set": [ - 1945 + 2206 ], "where": [ - 1937, + 2198, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1942, + 2203, { "updates": [ - 1952, + 2213, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 1967, + 2228, { "_inc": [ - 1963 + 2224 ], "_set": [ - 1973 + 2234 ], "where": [ - 1961, + 2222, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 1957, + 2218, { "_inc": [ - 1963 + 2224 ], "_set": [ - 1973 + 2234 ], "pk_columns": [ - 1971, + 2232, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 1967, + 2228, { "updates": [ - 1981, + 2242, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 2002, + 2263, { "_inc": [ - 1996 + 2257 ], "_set": [ - 2007 + 2268 ], "where": [ - 1994, + 2255, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 1985, + 2246, { "_inc": [ - 1996 + 2257 ], "_set": [ - 2007 + 2268 ], "pk_columns": [ - 2005, + 2266, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 2002, + 2263, { "updates": [ - 2019, + 2280, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 2043, + 2304, { "_inc": [ - 2037 + 2298 ], "_set": [ - 2048 + 2309 ], "where": [ - 2035, + 2296, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 2026, + 2287, { "_inc": [ - 2037 + 2298 ], "_set": [ - 2048 + 2309 ], "pk_columns": [ - 2046, + 2307, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 2043, + 2304, { "updates": [ - 2060, + 2321, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 2084, + 2345, { "_inc": [ - 2078 + 2339 ], "_set": [ - 2089 + 2350 ], "where": [ - 2076, + 2337, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 2067, + 2328, { "_inc": [ - 2078 + 2339 ], "_set": [ - 2089 + 2350 ], "pk_columns": [ - 2087, + 2348, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 2084, + 2345, { "updates": [ - 2101, + 2362, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 2122, + 2383, { "_set": [ - 2128 + 2389 ], "where": [ - 2115, + 2376, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 2108, + 2369, { "_set": [ - 2128 + 2389 ], "pk_columns": [ - 2126, + 2387, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 2122, + 2383, { "updates": [ - 2132, + 2393, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 2147, + 2408, { "_append": [ - 2136 + 2397 ], "_delete_at_path": [ - 2140 + 2401 ], "_delete_elem": [ - 2141 + 2402 ], "_delete_key": [ - 2142 + 2403 ], "_inc": [ - 2143 + 2404 ], "_prepend": [ - 2152 + 2413 ], "_set": [ - 2154 + 2415 ], "where": [ - 2138, + 2399, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 2133, + 2394, { "_append": [ - 2136 + 2397 ], "_delete_at_path": [ - 2140 + 2401 ], "_delete_elem": [ - 2141 + 2402 ], "_delete_key": [ - 2142 + 2403 ], "_inc": [ - 2143 + 2404 ], "_prepend": [ - 2152 + 2413 ], "_set": [ - 2154 + 2415 ], "pk_columns": [ - 2151, + 2412, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 2147, + 2408, { "updates": [ - 2162, + 2423, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 2183, + 2444, { "_inc": [ - 2177 + 2438 ], "_set": [ - 2188 + 2449 ], "where": [ - 2175, + 2436, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 2166, + 2427, { "_inc": [ - 2177 + 2438 ], "_set": [ - 2188 + 2449 ], "pk_columns": [ - 2186, + 2447, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 2183, + 2444, { "updates": [ - 2200, + 2461, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 2224, + 2485, { "_inc": [ - 2218 + 2479 ], "_set": [ - 2229 + 2490 ], "where": [ - 2216, + 2477, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 2207, + 2468, { "_inc": [ - 2218 + 2479 ], "_set": [ - 2229 + 2490 ], "pk_columns": [ - 2227, + 2488, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 2224, + 2485, { "updates": [ - 2241, + 2502, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 2265, + 2526, { "_inc": [ - 2259 + 2520 ], "_set": [ - 2271 + 2532 ], "where": [ - 2257, + 2518, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 2248, + 2509, { "_inc": [ - 2259 + 2520 ], "_set": [ - 2271 + 2532 ], "pk_columns": [ - 2269, + 2530, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 2265, + 2526, { "updates": [ - 2283, + 2544, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 2298, + 2559, { "_set": [ - 2304 + 2565 ], "where": [ - 2293, + 2554, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 2290, + 2551, { "_set": [ - 2304 + 2565 ], "pk_columns": [ - 2302, + 2563, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 2298, + 2559, { "updates": [ - 2308, + 2569, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 2317, + 2578, { "_set": [ - 2323 + 2584 ], "where": [ - 2312, + 2573, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 2309, + 2570, { "_set": [ - 2323 + 2584 ], "pk_columns": [ - 2321, + 2582, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 2317, + 2578, { "updates": [ - 2327, + 2588, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 2347, + 2608, { "_inc": [ - 2341 + 2602 ], "_set": [ - 2354 + 2615 ], "where": [ - 2339, + 2600, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 2328, + 2589, { "_inc": [ - 2341 + 2602 ], "_set": [ - 2354 + 2615 ], "pk_columns": [ - 2350, + 2611, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 2347, + 2608, { "updates": [ - 2366, + 2627, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 2381, + 2642, { "_set": [ - 2387 + 2648 ], "where": [ - 2376, + 2637, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 2373, + 2634, { "_set": [ - 2387 + 2648 ], "pk_columns": [ - 2385, + 2646, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 2381, + 2642, { "updates": [ - 2391, + 2652, "[map_pools_updates!]!" ] } ], "update_maps": [ - 2408, + 2669, { "_set": [ - 2416 + 2677 ], "where": [ - 2401, + 2662, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 2392, + 2653, { "_set": [ - 2416 + 2677 ], "pk_columns": [ - 2412, + 2673, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 2408, + 2669, { "updates": [ - 2420, + 2681, "[maps_updates!]!" ] } ], "update_match_clips": [ - 2438, + 2699, { "_inc": [ - 2432 + 2693 ], "_set": [ - 2444 + 2705 ], "where": [ - 2430, + 2691, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 2421, + 2682, { "_inc": [ - 2432 + 2693 ], "_set": [ - 2444 + 2705 ], "pk_columns": [ - 2442, + 2703, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 2438, + 2699, { "updates": [ - 2456, + 2717, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 2484, + 2745, { "_append": [ - 2469 + 2730 ], "_delete_at_path": [ - 2475 + 2736 ], "_delete_elem": [ - 2476 + 2737 ], "_delete_key": [ - 2477 + 2738 ], "_inc": [ - 2478 + 2739 ], "_prepend": [ - 2488 + 2749 ], "_set": [ - 2490 + 2751 ], "where": [ - 2473, + 2734, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 2463, + 2724, { "_append": [ - 2469 + 2730 ], "_delete_at_path": [ - 2475 + 2736 ], "_delete_elem": [ - 2476 + 2737 ], "_delete_key": [ - 2477 + 2738 ], "_inc": [ - 2478 + 2739 ], "_prepend": [ - 2488 + 2749 ], "_set": [ - 2490 + 2751 ], "pk_columns": [ - 2487, + 2748, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 2484, + 2745, { "updates": [ - 2502, + 2763, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 2528, + 2789, { "_inc": [ - 2522 + 2783 ], "_set": [ - 2535 + 2796 ], "where": [ - 2520, + 2781, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 2509, + 2770, { "_inc": [ - 2522 + 2783 ], "_set": [ - 2535 + 2796 ], "pk_columns": [ - 2531, + 2792, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 2528, + 2789, { "updates": [ - 2547, + 2808, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 2571, + 2832, { "_inc": [ - 2565 + 2826 ], "_set": [ - 2577 + 2838 ], "where": [ - 2563, + 2824, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 2554, + 2815, { "_inc": [ - 2565 + 2826 ], "_set": [ - 2577 + 2838 ], "pk_columns": [ - 2575, + 2836, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 2571, + 2832, { "updates": [ - 2589, + 2850, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2619, + 2880, { "_append": [ - 2604 + 2865 ], "_delete_at_path": [ - 2610 + 2871 ], "_delete_elem": [ - 2611 + 2872 ], "_delete_key": [ - 2612 + 2873 ], "_inc": [ - 2613 + 2874 ], "_prepend": [ - 2624 + 2885 ], "_set": [ - 2628 + 2889 ], "where": [ - 2608, + 2869, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2596, + 2857, { "_append": [ - 2604 + 2865 ], "_delete_at_path": [ - 2610 + 2871 ], "_delete_elem": [ - 2611 + 2872 ], "_delete_key": [ - 2612 + 2873 ], "_inc": [ - 2613 + 2874 ], "_prepend": [ - 2624 + 2885 ], "_set": [ - 2628 + 2889 ], "pk_columns": [ - 2623, + 2884, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2619, + 2880, { "updates": [ - 2640, + 2901, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2664, + 2925, { "_inc": [ - 2658 + 2919 ], "_set": [ - 2669 + 2930 ], "where": [ - 2656, + 2917, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2647, + 2908, { "_inc": [ - 2658 + 2919 ], "_set": [ - 2669 + 2930 ], "pk_columns": [ - 2667, + 2928, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2664, + 2925, { "updates": [ - 2681, + 2942, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2704, + 2965, { "_set": [ - 2711 + 2972 ], "where": [ - 2697, + 2958, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2688, + 2949, { "_set": [ - 2711 + 2972 ], "pk_columns": [ - 2707, + 2968, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2704, + 2965, { "updates": [ - 2715, + 2976, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2733, + 2994, { "_inc": [ - 2727 + 2988 ], "_set": [ - 2739 + 3000 ], "where": [ - 2725, + 2986, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2716, + 2977, { "_inc": [ - 2727 + 2988 ], "_set": [ - 2739 + 3000 ], "pk_columns": [ - 2737, + 2998, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2733, + 2994, { "updates": [ - 2751, + 3012, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2768, + 3038, { "_inc": [ - 2764 + 3032 ], "_set": [ - 2774 + 3046 ], "where": [ - 2762, + 3030, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2758, + 3019, { "_inc": [ - 2764 + 3032 ], "_set": [ - 2774 + 3046 ], "pk_columns": [ - 2772, + 3042, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2768, + 3038, { "updates": [ - 2782, + 3058, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2802, + 3081, { "_set": [ - 2809 + 3088 ], "where": [ - 2795, + 3074, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2786, + 3065, { "_set": [ - 2809 + 3088 ], "pk_columns": [ - 2805, + 3084, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2802, + 3081, { "updates": [ - 2813, + 3092, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2837, + 3116, { "_append": [ - 2822 + 3101 ], "_delete_at_path": [ - 2828 + 3107 ], "_delete_elem": [ - 2829 + 3108 ], "_delete_key": [ - 2830 + 3109 ], "_inc": [ - 2831 + 3110 ], "_prepend": [ - 2841 + 3120 ], "_set": [ - 2845 + 3124 ], "where": [ - 2826, + 3105, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2814, + 3093, { "_append": [ - 2822 + 3101 ], "_delete_at_path": [ - 2828 + 3107 ], "_delete_elem": [ - 2829 + 3108 ], "_delete_key": [ - 2830 + 3109 ], "_inc": [ - 2831 + 3110 ], "_prepend": [ - 2841 + 3120 ], "_set": [ - 2845 + 3124 ], "pk_columns": [ - 2840, + 3119, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2837, + 3116, { "updates": [ - 2857, + 3136, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2872, + 3151, { "_set": [ - 2877 + 3156 ], "where": [ - 2867, + 3146, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2864, + 3143, { "_set": [ - 2877 + 3156 ], "pk_columns": [ - 2875, + 3154, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2872, + 3151, { "updates": [ - 2881, + 3160, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2899, + 3180, { "_inc": [ - 2893 + 3174 ], "_set": [ - 2905 + 3188 ], "where": [ - 2891, + 3172, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2882, + 3161, { "_inc": [ - 2893 + 3174 ], "_set": [ - 2905 + 3188 ], "pk_columns": [ - 2903, + 3184, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2899, + 3180, { "updates": [ - 2917, + 3200, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2932, + 3215, { "_set": [ - 2937 + 3220 ], "where": [ - 2927, + 3210, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2924, + 3207, { "_set": [ - 2937 + 3220 ], "pk_columns": [ - 2935, + 3218, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2932, + 3215, { "updates": [ - 2941, + 3224, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2964, + 3247, { "_append": [ - 2950 + 3233 ], "_delete_at_path": [ - 2955 + 3238 ], "_delete_elem": [ - 2956 + 3239 ], "_delete_key": [ - 2957 + 3240 ], "_inc": [ - 2958 + 3241 ], "_prepend": [ - 2966 + 3249 ], "_set": [ - 2970 + 3253 ], "where": [ - 2954, + 3237, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2964, + 3247, { "updates": [ - 2981, + 3264, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2998, + 3281, { "_inc": [ - 2994 + 3277 ], "_set": [ - 3003 + 3286 ], "where": [ - 2992, + 3275, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2988, + 3271, { "_inc": [ - 2994 + 3277 ], "_set": [ - 3003 + 3286 ], "pk_columns": [ - 3001, + 3284, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2998, + 3281, { "updates": [ - 3011, + 3294, "[news_articles_updates!]!" ] } ], "update_notification_preferences": [ - 3025, + 3308, { "_inc": [ - 3021 + 3304 ], "_set": [ - 3030 + 3313 ], "where": [ - 3019, + 3302, "notification_preferences_bool_exp!" ] } ], "update_notification_preferences_by_pk": [ - 3015, + 3298, { "_inc": [ - 3021 + 3304 ], "_set": [ - 3030 + 3313 ], "pk_columns": [ - 3028, + 3311, "notification_preferences_pk_columns_input!" ] } ], "update_notification_preferences_many": [ - 3025, + 3308, { "updates": [ - 3038, + 3321, "[notification_preferences_updates!]!" ] } ], "update_notifications": [ - 3065, + 3348, { "_append": [ - 3050 + 3333 ], "_delete_at_path": [ - 3056 + 3339 ], "_delete_elem": [ - 3057 + 3340 ], "_delete_key": [ - 3058 + 3341 ], "_inc": [ - 3059 + 3342 ], "_prepend": [ - 3069 + 3352 ], "_set": [ - 3073 + 3356 ], "where": [ - 3054, + 3337, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 3042, + 3325, { "_append": [ - 3050 + 3333 ], "_delete_at_path": [ - 3056 + 3339 ], "_delete_elem": [ - 3057 + 3340 ], "_delete_key": [ - 3058 + 3341 ], "_inc": [ - 3059 + 3342 ], "_prepend": [ - 3069 + 3352 ], "_set": [ - 3073 + 3356 ], "pk_columns": [ - 3068, + 3351, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 3065, + 3348, { "updates": [ - 3085, + 3368, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 3112, + 3395, { "_inc": [ - 3106 + 3389 ], "_set": [ - 3117 + 3400 ], "where": [ - 3104, + 3387, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 3095, + 3378, { "_inc": [ - 3106 + 3389 ], "_set": [ - 3117 + 3400 ], "pk_columns": [ - 3115, + 3398, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 3112, + 3395, { "updates": [ - 3129, + 3412, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 3146, + 3429, { "_inc": [ - 3142 + 3425 ], "_set": [ - 3152 + 3435 ], "where": [ - 3140, + 3423, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 3136, + 3419, { "_inc": [ - 3142 + 3425 ], "_set": [ - 3152 + 3435 ], "pk_columns": [ - 3150, + 3433, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 3146, + 3429, { "updates": [ - 3160, + 3443, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 3174, + 3457, { "_inc": [ - 3170 + 3453 ], "_set": [ - 3179 + 3462 ], "where": [ - 3168, + 3451, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 3164, + 3447, { "_inc": [ - 3170 + 3453 ], "_set": [ - 3179 + 3462 ], "pk_columns": [ - 3177, + 3460, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 3174, + 3457, { "updates": [ - 3187, + 3470, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 3208, + 3491, { "_inc": [ - 3202 + 3485 ], "_set": [ - 3213 + 3496 ], "where": [ - 3200, + 3483, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 3191, + 3474, { "_inc": [ - 3202 + 3485 ], "_set": [ - 3213 + 3496 ], "pk_columns": [ - 3211, + 3494, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 3208, + 3491, { "updates": [ - 3225, + 3508, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 3251, + 3534, { "_inc": [ - 3245 + 3528 ], "_set": [ - 3258 + 3541 ], "where": [ - 3243, + 3526, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 3232, + 3515, { "_inc": [ - 3245 + 3528 ], "_set": [ - 3258 + 3541 ], "pk_columns": [ - 3254, + 3537, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 3251, + 3534, { "updates": [ - 3270, + 3553, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 3312, + 3595, { "_inc": [ - 3306 + 3589 ], "_set": [ - 3317 + 3600 ], "where": [ - 3304, + 3587, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 3295, + 3578, { "_inc": [ - 3306 + 3589 ], "_set": [ - 3317 + 3600 ], "pk_columns": [ - 3315, + 3598, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 3312, + 3595, { "updates": [ - 3329, + 3612, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 3346, + 3629, { "_inc": [ - 3342 + 3625 ], "_set": [ - 3351 + 3634 ], "where": [ - 3340, + 3623, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 3336, + 3619, { "_inc": [ - 3342 + 3625 ], "_set": [ - 3351 + 3634 ], "pk_columns": [ - 3349, + 3632, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 3346, + 3629, { "updates": [ - 3359, + 3642, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 3380, + 3663, { "_inc": [ - 3374 + 3657 ], "_set": [ - 3385 + 3668 ], "where": [ - 3372, + 3655, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 3363, + 3646, { "_inc": [ - 3374 + 3657 ], "_set": [ - 3385 + 3668 ], "pk_columns": [ - 3383, + 3666, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 3380, + 3663, { "updates": [ - 3397, + 3680, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 3423, + 3706, { "_inc": [ - 3417 + 3700 ], "_set": [ - 3430 + 3713 ], "where": [ - 3415, + 3698, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 3404, + 3687, { "_inc": [ - 3417 + 3700 ], "_set": [ - 3430 + 3713 ], "pk_columns": [ - 3426, + 3709, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 3423, + 3706, { "updates": [ - 3442, + 3725, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 3509, + 3792, { "_inc": [ - 3503 + 3786 ], "_set": [ - 3516 + 3799 ], "where": [ - 3460, + 3743, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 3449, + 3732, { "_inc": [ - 3503 + 3786 ], "_set": [ - 3516 + 3799 ], "pk_columns": [ - 3512, + 3795, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 3478, + 3761, { "_inc": [ - 3472 + 3755 ], "_set": [ - 3483 + 3766 ], "where": [ - 3470, + 3753, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 3461, + 3744, { "_inc": [ - 3472 + 3755 ], "_set": [ - 3483 + 3766 ], "pk_columns": [ - 3481, + 3764, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 3478, + 3761, { "updates": [ - 3495, + 3778, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 3509, + 3792, { "updates": [ - 3528, + 3811, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 3544, + 3827, { "_inc": [ - 3540 + 3823 ], "_set": [ - 3547 + 3830 ], "where": [ - 3539, + 3822, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 3544, + 3827, { "updates": [ - 3554, + 3837, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 3575, + 3858, { "_inc": [ - 3569 + 3852 ], "_set": [ - 3580 + 3863 ], "where": [ - 3567, + 3850, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 3558, + 3841, { "_inc": [ - 3569 + 3852 ], "_set": [ - 3580 + 3863 ], "pk_columns": [ - 3578, + 3861, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 3575, + 3858, { "updates": [ - 3592, + 3875, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3667, + 3950, { "_inc": [ - 3661 + 3944 ], "_set": [ - 3672 + 3955 ], "where": [ - 3659, + 3942, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3650, + 3933, { "_inc": [ - 3661 + 3944 ], "_set": [ - 3672 + 3955 ], "pk_columns": [ - 3670, + 3953, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3667, + 3950, { "updates": [ - 3684, + 3967, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3726, + 4009, { "_inc": [ - 3720 + 4003 ], "_set": [ - 3731 + 4014 ], "where": [ - 3718, + 4001, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3709, + 3992, { "_inc": [ - 3720 + 4003 ], "_set": [ - 3731 + 4014 ], "pk_columns": [ - 3729, + 4012, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3726, + 4009, { "updates": [ - 3743, + 4026, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3767, + 4050, { "_inc": [ - 3761 + 4044 ], "_set": [ - 3772 + 4055 ], "where": [ - 3759, + 4042, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3750, + 4033, { "_inc": [ - 3761 + 4044 ], "_set": [ - 3772 + 4055 ], "pk_columns": [ - 3770, + 4053, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3767, + 4050, { "updates": [ - 3784, + 4067, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3818, + 4101, { "_inc": [ - 3812 + 4095 ], "_set": [ - 3831 + 4114 ], "where": [ - 3810, + 4093, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3791, + 4074, { "_inc": [ - 3812 + 4095 ], "_set": [ - 3831 + 4114 ], "pk_columns": [ - 3821, + 4104, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3818, + 4101, { "updates": [ - 3843, + 4126, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3860, + 4143, { "_inc": [ - 3856 + 4139 ], "_set": [ - 3866 + 4149 ], "where": [ - 3854, + 4137, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3850, + 4133, { "_inc": [ - 3856 + 4139 ], "_set": [ - 3866 + 4149 ], "pk_columns": [ - 3864, + 4147, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3860, + 4143, { "updates": [ - 3874, + 4157, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3892, + 4175, { "_append": [ - 3881 + 4164 ], "_delete_at_path": [ - 3885 + 4168 ], "_delete_elem": [ - 3886 + 4169 ], "_delete_key": [ - 3887 + 4170 ], "_inc": [ - 3888 + 4171 ], "_prepend": [ - 3896 + 4179 ], "_set": [ - 3898 + 4181 ], "where": [ - 3883, + 4166, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3878, + 4161, { "_append": [ - 3881 + 4164 ], "_delete_at_path": [ - 3885 + 4168 ], "_delete_elem": [ - 3886 + 4169 ], "_delete_key": [ - 3887 + 4170 ], "_inc": [ - 3888 + 4171 ], "_prepend": [ - 3896 + 4179 ], "_set": [ - 3898 + 4181 ], "pk_columns": [ - 3895, + 4178, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3892, + 4175, { "updates": [ - 3906, + 4189, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3920, + 4203, { "_inc": [ - 3916 + 4199 ], "_set": [ - 3925 + 4208 ], "where": [ - 3914, + 4197, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3910, + 4193, { "_inc": [ - 3916 + 4199 ], "_set": [ - 3925 + 4208 ], "pk_columns": [ - 3923, + 4206, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3920, + 4203, { "updates": [ - 3933, + 4216, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3954, + 4237, { "_inc": [ - 3948 + 4231 ], "_set": [ - 3959 + 4242 ], "where": [ - 3946, + 4229, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3937, + 4220, { "_inc": [ - 3948 + 4231 ], "_set": [ - 3959 + 4242 ], "pk_columns": [ - 3957, + 4240, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3954, + 4237, { "updates": [ - 3971, + 4254, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3995, + 4278, { "_inc": [ - 3989 + 4272 ], "_set": [ - 4000 + 4283 ], "where": [ - 3987, + 4270, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3978, + 4261, { "_inc": [ - 3989 + 4272 ], "_set": [ - 4000 + 4283 ], "pk_columns": [ - 3998, + 4281, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3995, + 4278, { "updates": [ - 4012, + 4295, "[player_utility_updates!]!" ] } ], "update_players": [ - 4062, + 4345, { "_inc": [ - 4058 + 4341 ], "_set": [ - 4068 + 4351 ], "where": [ - 4056, + 4339, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 4052, + 4335, { "_inc": [ - 4058 + 4341 ], "_set": [ - 4068 + 4351 ], "pk_columns": [ - 4066, + 4349, "players_pk_columns_input!" ] } ], "update_players_many": [ - 4062, + 4345, { "updates": [ - 4076, + 4359, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 4090, + 4373, { "_inc": [ - 4086 + 4369 ], "_set": [ - 4095 + 4378 ], "where": [ - 4084, + 4367, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 4080, + 4363, { "_inc": [ - 4086 + 4369 ], "_set": [ - 4095 + 4378 ], "pk_columns": [ - 4093, + 4376, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 4090, + 4373, { "updates": [ - 4103, + 4386, "[plugin_versions_updates!]!" ] } ], "update_push_subscriptions": [ - 4117, + 4400, { "_inc": [ - 4113 + 4396 ], "_set": [ - 4122 + 4405 ], "where": [ - 4111, + 4394, "push_subscriptions_bool_exp!" ] } ], "update_push_subscriptions_by_pk": [ - 4107, + 4390, { "_inc": [ - 4113 + 4396 ], "_set": [ - 4122 + 4405 ], "pk_columns": [ - 4120, + 4403, "push_subscriptions_pk_columns_input!" ] } ], "update_push_subscriptions_many": [ - 4117, + 4400, { "updates": [ - 4130, + 4413, "[push_subscriptions_updates!]!" ] } ], "update_seasons": [ - 4148, + 4431, { "_inc": [ - 4144 + 4427 ], "_set": [ - 4154 + 4437 ], "where": [ - 4142, + 4425, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 4138, + 4421, { "_inc": [ - 4144 + 4427 ], "_set": [ - 4154 + 4437 ], "pk_columns": [ - 4152, + 4435, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 4148, + 4431, { "updates": [ - 4162, + 4445, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 4175, + 4458, { "_set": [ - 4181 + 4464 ], "where": [ - 4170, + 4453, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 4166, + 4449, { "_set": [ - 4181 + 4464 ], "pk_columns": [ - 4179, + 4462, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 4175, + 4458, { "updates": [ - 4189, + 4472, "[server_regions_updates!]!" ] } ], "update_servers": [ - 4212, + 4499, { + "_append": [ + 4484 + ], + "_delete_at_path": [ + 4490 + ], + "_delete_elem": [ + 4491 + ], + "_delete_key": [ + 4492 + ], "_inc": [ - 4206 + 4493 + ], + "_prepend": [ + 4504 ], "_set": [ - 4220 + 4508 ], "where": [ - 4204, + 4488, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 4193, + 4476, { + "_append": [ + 4484 + ], + "_delete_at_path": [ + 4490 + ], + "_delete_elem": [ + 4491 + ], + "_delete_key": [ + 4492 + ], "_inc": [ - 4206 + 4493 + ], + "_prepend": [ + 4504 ], "_set": [ - 4220 + 4508 ], "pk_columns": [ - 4216, + 4503, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 4212, + 4499, { "updates": [ - 4232, + 4520, "[servers_updates!]!" ] } ], "update_settings": [ - 4247, + 4535, { "_set": [ - 4252 + 4540 ], "where": [ - 4242, + 4530, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 4239, + 4527, { "_set": [ - 4252 + 4540 ], "pk_columns": [ - 4250, + 4538, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 4247, + 4535, { "updates": [ - 4256, + 4544, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 4273, + 4561, { "_set": [ - 4278 + 4566 ], "where": [ - 4266, + 4554, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 4259, + 4547, { "_set": [ - 4278 + 4566 ], "pk_columns": [ - 4276, + 4564, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 4273, + 4561, { "updates": [ - 4282, + 4570, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 4293, + 4581, { "_inc": [ - 4289 + 4577 ], "_set": [ - 4299 + 4587 ], "where": [ - 4287, + 4575, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 4283, + 4571, { "_inc": [ - 4289 + 4577 ], "_set": [ - 4299 + 4587 ], "pk_columns": [ - 4297, + 4585, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 4293, + 4581, { "updates": [ - 4307, + 4595, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 4321, + 4609, { "_inc": [ - 4317 + 4605 ], "_set": [ - 4326 + 4614 ], "where": [ - 4315, + 4603, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 4311, + 4599, { "_inc": [ - 4317 + 4605 ], "_set": [ - 4326 + 4614 ], "pk_columns": [ - 4324, + 4612, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 4321, + 4609, { "updates": [ - 4334, + 4622, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 4355, + 4643, { "_inc": [ - 4349 + 4637 ], "_set": [ - 4360 + 4648 ], "where": [ - 4347, + 4635, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 4338, + 4626, { "_inc": [ - 4349 + 4637 ], "_set": [ - 4360 + 4648 ], "pk_columns": [ - 4358, + 4646, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 4355, + 4643, { "updates": [ - 4372, + 4660, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 4398, + 4686, { "_inc": [ - 4392 + 4680 ], "_set": [ - 4405 + 4693 ], "where": [ - 4390, + 4678, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 4379, + 4667, { "_inc": [ - 4392 + 4680 ], "_set": [ - 4405 + 4693 ], "pk_columns": [ - 4401, + 4689, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 4398, + 4686, { "updates": [ - 4417, + 4705, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 4434, + 4722, { "_inc": [ - 4430 + 4718 ], "_set": [ - 4439 + 4727 ], "where": [ - 4428, + 4716, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 4424, + 4712, { "_inc": [ - 4430 + 4718 ], "_set": [ - 4439 + 4727 ], "pk_columns": [ - 4437, + 4725, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 4434, + 4722, { "updates": [ - 4447, + 4735, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 4467, + 4755, { "_set": [ - 4474 + 4762 ], "where": [ - 4460, + 4748, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 4451, + 4739, { "_set": [ - 4474 + 4762 ], "pk_columns": [ - 4470, + 4758, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 4467, + 4755, { "updates": [ - 4478, + 4766, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 4496, + 4784, { "_inc": [ - 4490 + 4778 ], "_set": [ - 4501 + 4789 ], "where": [ - 4488, + 4776, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 4479, + 4767, { "_inc": [ - 4490 + 4778 ], "_set": [ - 4501 + 4789 ], "pk_columns": [ - 4499, + 4787, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 4496, + 4784, { "updates": [ - 4513, + 4801, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 4539, + 4827, { "_inc": [ - 4533 + 4821 ], "_set": [ - 4547 + 4835 ], "where": [ - 4531, + 4819, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 4520, + 4808, { "_inc": [ - 4533 + 4821 ], "_set": [ - 4547 + 4835 ], "pk_columns": [ - 4543, + 4831, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 4539, + 4827, { "updates": [ - 4559, + 4847, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 4576, + 4864, { "_inc": [ - 4572 + 4860 ], "_set": [ - 4582 + 4870 ], "where": [ - 4570, + 4858, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 4566, + 4854, { "_inc": [ - 4572 + 4860 ], "_set": [ - 4582 + 4870 ], "pk_columns": [ - 4580, + 4868, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 4576, + 4864, { "updates": [ - 4590, + 4878, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 4604, + 4892, { "_inc": [ - 4600 + 4888 ], "_set": [ - 4609 + 4897 ], "where": [ - 4598, + 4886, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 4594, + 4882, { "_inc": [ - 4600 + 4888 ], "_set": [ - 4609 + 4897 ], "pk_columns": [ - 4607, + 4895, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 4604, + 4892, { "updates": [ - 4617, + 4905, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 4640, + 4928, { "_inc": [ - 4634 + 4922 ], "_set": [ - 4648 + 4936 ], "where": [ - 4632, + 4920, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 4621, + 4909, { "_inc": [ - 4634 + 4922 ], "_set": [ - 4648 + 4936 ], "pk_columns": [ - 4644, + 4932, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 4640, + 4928, { "updates": [ - 4660, + 4948, "[teams_updates!]!" ] } ], "update_tournament_awards": [ - 4689, + 4977, { "_inc": [ - 4683 + 4971 ], "_set": [ - 4695 + 4983 ], "where": [ - 4681, + 4969, "tournament_awards_bool_exp!" ] } ], "update_tournament_awards_by_pk": [ - 4672, + 4960, { "_inc": [ - 4683 + 4971 ], "_set": [ - 4695 + 4983 ], "pk_columns": [ - 4693, + 4981, "tournament_awards_pk_columns_input!" ] } ], "update_tournament_awards_many": [ - 4689, + 4977, { "updates": [ - 4707, + 4995, "[tournament_awards_updates!]!" ] } ], "update_tournament_brackets": [ - 4733, + 5021, { "_inc": [ - 4727 + 5015 ], "_set": [ - 4741 + 5029 ], "where": [ - 4725, + 5013, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4714, + 5002, { "_inc": [ - 4727 + 5015 ], "_set": [ - 4741 + 5029 ], "pk_columns": [ - 4737, + 5025, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4733, + 5021, { "updates": [ - 4753, + 5041, "[tournament_brackets_updates!]!" ] } ], "update_tournament_categories": [ - 4774, + 5062, { "_set": [ - 4779 + 5067 ], "where": [ - 4767, + 5055, "tournament_categories_bool_exp!" ] } ], "update_tournament_categories_by_pk": [ - 4760, + 5048, { "_set": [ - 4779 + 5067 ], "pk_columns": [ - 4777, + 5065, "tournament_categories_pk_columns_input!" ] } ], "update_tournament_categories_many": [ - 4774, + 5062, { "updates": [ - 4783, + 5071, "[tournament_categories_updates!]!" ] } ], "update_tournament_organizer_teams": [ - 4798, + 5086, { "_set": [ - 4803 + 5091 ], "where": [ - 4791, + 5079, "tournament_organizer_teams_bool_exp!" ] } ], "update_tournament_organizer_teams_by_pk": [ - 4784, + 5072, { "_set": [ - 4803 + 5091 ], "pk_columns": [ - 4801, + 5089, "tournament_organizer_teams_pk_columns_input!" ] } ], "update_tournament_organizer_teams_many": [ - 4798, + 5086, { "updates": [ - 4807, + 5095, "[tournament_organizer_teams_updates!]!" ] } ], "update_tournament_organizers": [ - 4825, + 5113, { "_inc": [ - 4819 + 5107 ], "_set": [ - 4830 + 5118 ], "where": [ - 4817, + 5105, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4808, + 5096, { "_inc": [ - 4819 + 5107 ], "_set": [ - 4830 + 5118 ], "pk_columns": [ - 4828, + 5116, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4825, + 5113, { "updates": [ - 4842, + 5130, "[tournament_organizers_updates!]!" ] } ], "update_tournament_prizes": [ - 4866, + 5154, { "_inc": [ - 4860 + 5148 ], "_set": [ - 4871 + 5159 ], "where": [ - 4858, + 5146, "tournament_prizes_bool_exp!" ] } ], "update_tournament_prizes_by_pk": [ - 4849, + 5137, { "_inc": [ - 4860 + 5148 ], "_set": [ - 4871 + 5159 ], "pk_columns": [ - 4869, + 5157, "tournament_prizes_pk_columns_input!" ] } ], "update_tournament_prizes_many": [ - 4866, + 5154, { "updates": [ - 4883, + 5171, "[tournament_prizes_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4907, + 5195, { "_inc": [ - 4901 + 5189 ], "_set": [ - 4912 + 5200 ], "where": [ - 4899, + 5187, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4890, + 5178, { "_inc": [ - 4901 + 5189 ], "_set": [ - 4912 + 5200 ], "pk_columns": [ - 4910, + 5198, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4907, + 5195, { "updates": [ - 4924, + 5212, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4954, + 5242, { "_append": [ - 4939 + 5227 ], "_delete_at_path": [ - 4945 + 5233 ], "_delete_elem": [ - 4946 + 5234 ], "_delete_key": [ - 4947 + 5235 ], "_inc": [ - 4948 + 5236 ], "_prepend": [ - 4959 + 5247 ], "_set": [ - 4963 + 5251 ], "where": [ - 4943, + 5231, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4931, + 5219, { "_append": [ - 4939 + 5227 ], "_delete_at_path": [ - 4945 + 5233 ], "_delete_elem": [ - 4946 + 5234 ], "_delete_key": [ - 4947 + 5235 ], "_inc": [ - 4948 + 5236 ], "_prepend": [ - 4959 + 5247 ], "_set": [ - 4963 + 5251 ], "pk_columns": [ - 4958, + 5246, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4954, + 5242, { "updates": [ - 4975, + 5263, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4999, + 5287, { "_inc": [ - 4993 + 5281 ], "_set": [ - 5004 + 5292 ], "where": [ - 4991, + 5279, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4982, + 5270, { "_inc": [ - 4993 + 5281 ], "_set": [ - 5004 + 5292 ], "pk_columns": [ - 5002, + 5290, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4999, + 5287, { "updates": [ - 5016, + 5304, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 5040, + 5328, { "_inc": [ - 5034 + 5322 ], "_set": [ - 5045 + 5333 ], "where": [ - 5032, + 5320, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 5023, + 5311, { "_inc": [ - 5034 + 5322 ], "_set": [ - 5045 + 5333 ], "pk_columns": [ - 5043, + 5331, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 5040, + 5328, { "updates": [ - 5057, + 5345, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 5081, + 5369, { "_inc": [ - 5075 + 5363 ], "_set": [ - 5087 + 5375 ], "where": [ - 5073, + 5361, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 5064, + 5352, { "_inc": [ - 5075 + 5363 ], "_set": [ - 5087 + 5375 ], "pk_columns": [ - 5085, + 5373, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 5081, + 5369, { "updates": [ - 5099, + 5387, "[tournament_teams_updates!]!" ] } ], "update_tournaments": [ - 5135, + 5423, { "_inc": [ - 5129 + 5417 ], "_set": [ - 5151 + 5439 ], "where": [ - 5127, + 5415, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 5106, + 5394, { "_inc": [ - 5129 + 5417 ], "_set": [ - 5151 + 5439 ], "pk_columns": [ - 5139, + 5427, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 5135, + 5423, { "updates": [ - 5163, + 5451, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 5335, + 5623, { "_inc": [ - 5331 + 5619 ], "_set": [ - 5339 + 5627 ], "where": [ - 5330, + 5618, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 5335, + 5623, { "updates": [ - 5346, + 5634, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 5446, + 5734, { "_inc": [ - 5442 + 5730 ], "_set": [ - 5449 + 5737 ], "where": [ - 5441, + 5729, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 5446, + 5734, { "updates": [ - 5456, + 5744, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 5668, + 5956, { "_inc": [ - 5662 + 5950 ], "_set": [ - 5671 + 5959 ], "where": [ - 5661, + 5949, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 5668, + 5956, { "updates": [ - 5682, + 5970, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5845, + 6133, { "_set": [ - 5850 + 6138 ], "where": [ - 5839, + 6127, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5845, + 6133, { "updates": [ - 5853, + 6141, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5939, + 6227, { "_inc": [ - 5933 + 6221 ], "_set": [ - 5953 + 6241 ], "where": [ - 5931, + 6219, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5912, + 6200, { "_inc": [ - 5933 + 6221 ], "_set": [ - 5953 + 6241 ], "pk_columns": [ - 5943, + 6231, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5939, + 6227, { "updates": [ - 5965, + 6253, "[v_team_stage_results_updates!]!" ] } ], "validateGamedata": [ - 83, + 86, { "game_server_node_id": [ - 5170, + 5458, "uuid!" ] } ], "watchDemo": [ - 104, + 108, { "match_map_demo_id": [ - 5170 + 5458 ], "match_map_id": [ - 5170, + 5458, "uuid!" ] } ], "writeServerFile": [ - 83, + 86, { "content": [ - 80, + 83, "String!" ], "file_path": [ - 80, + 83, "String!" ], "node_id": [ - 80, + 83, "String!" ], "server_id": [ - 80 + 83 ] } ], "__typename": [ - 80 + 83 ] }, "Subscription": { "_map_pool": [ - 107, + 111, { "distinct_on": [ - 119, + 123, "[_map_pool_select_column!]" ], "limit": [ @@ -165094,19 +171932,19 @@ export default { 40 ], "order_by": [ - 117, + 121, "[_map_pool_order_by!]" ], "where": [ - 110 + 114 ] } ], "_map_pool_aggregate": [ - 108, + 112, { "distinct_on": [ - 119, + 123, "[_map_pool_select_column!]" ], "limit": [ @@ -165116,48 +171954,48 @@ export default { 40 ], "order_by": [ - 117, + 121, "[_map_pool_order_by!]" ], "where": [ - 110 + 114 ] } ], "_map_pool_by_pk": [ - 107, + 111, { "map_id": [ - 5170, + 5458, "uuid!" ], "map_pool_id": [ - 5170, + 5458, "uuid!" ] } ], "_map_pool_stream": [ - 107, + 111, { "batch_size": [ 40, "Int!" ], "cursor": [ - 121, + 125, "[_map_pool_stream_cursor_input]!" ], "where": [ - 110 + 114 ] } ], "abandoned_matches": [ - 126, + 130, { "distinct_on": [ - 147, + 151, "[abandoned_matches_select_column!]" ], "limit": [ @@ -165167,19 +172005,19 @@ export default { 40 ], "order_by": [ - 145, + 149, "[abandoned_matches_order_by!]" ], "where": [ - 135 + 139 ] } ], "abandoned_matches_aggregate": [ - 127, + 131, { "distinct_on": [ - 147, + 151, "[abandoned_matches_select_column!]" ], "limit": [ @@ -165189,44 +172027,44 @@ export default { 40 ], "order_by": [ - 145, + 149, "[abandoned_matches_order_by!]" ], "where": [ - 135 + 139 ] } ], "abandoned_matches_by_pk": [ - 126, + 130, { "id": [ - 5170, + 5458, "uuid!" ] } ], "abandoned_matches_stream": [ - 126, + 130, { "batch_size": [ 40, "Int!" ], "cursor": [ - 155, + 159, "[abandoned_matches_stream_cursor_input]!" ], "where": [ - 135 + 139 ] } ], "api_keys": [ - 167, + 171, { "distinct_on": [ - 181, + 185, "[api_keys_select_column!]" ], "limit": [ @@ -165236,19 +172074,19 @@ export default { 40 ], "order_by": [ - 179, + 183, "[api_keys_order_by!]" ], "where": [ - 171 + 175 ] } ], "api_keys_aggregate": [ - 168, + 172, { "distinct_on": [ - 181, + 185, "[api_keys_select_column!]" ], "limit": [ @@ -165258,44 +172096,44 @@ export default { 40 ], "order_by": [ - 179, + 183, "[api_keys_order_by!]" ], "where": [ - 171 + 175 ] } ], "api_keys_by_pk": [ - 167, + 171, { "id": [ - 5170, + 5458, "uuid!" ] } ], "api_keys_stream": [ - 167, + 171, { "batch_size": [ 40, "Int!" ], "cursor": [ - 186, + 190, "[api_keys_stream_cursor_input]!" ], "where": [ - 171 + 175 ] } ], "award_recipients": [ - 195, + 199, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -165305,19 +172143,19 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "award_recipients_aggregate": [ - 196, + 200, { "distinct_on": [ - 216, + 220, "[award_recipients_select_column!]" ], "limit": [ @@ -165327,44 +172165,44 @@ export default { 40 ], "order_by": [ - 214, + 218, "[award_recipients_order_by!]" ], "where": [ - 204 + 208 ] } ], "award_recipients_by_pk": [ - 195, + 199, { "id": [ - 5170, + 5458, "uuid!" ] } ], "award_recipients_stream": [ - 195, + 199, { "batch_size": [ 40, "Int!" ], "cursor": [ - 224, + 228, "[award_recipients_stream_cursor_input]!" ], "where": [ - 204 + 208 ] } ], "awards": [ - 236, + 240, { "distinct_on": [ - 251, + 255, "[awards_select_column!]" ], "limit": [ @@ -165374,19 +172212,19 @@ export default { 40 ], "order_by": [ - 249, + 253, "[awards_order_by!]" ], "where": [ - 240 + 244 ] } ], "awards_aggregate": [ - 237, + 241, { "distinct_on": [ - 251, + 255, "[awards_select_column!]" ], "limit": [ @@ -165396,44 +172234,44 @@ export default { 40 ], "order_by": [ - 249, + 253, "[awards_order_by!]" ], "where": [ - 240 + 244 ] } ], "awards_by_pk": [ - 236, + 240, { "id": [ - 5170, + 5458, "uuid!" ] } ], "awards_stream": [ - 236, + 240, { "batch_size": [ 40, "Int!" ], "cursor": [ - 256, + 260, "[awards_stream_cursor_input]!" ], "where": [ - 240 + 244 ] } ], "chat_read_state": [ - 269, + 273, { "distinct_on": [ - 283, + 287, "[chat_read_state_select_column!]" ], "limit": [ @@ -165443,19 +172281,19 @@ export default { 40 ], "order_by": [ - 281, + 285, "[chat_read_state_order_by!]" ], "where": [ - 273 + 277 ] } ], "chat_read_state_aggregate": [ - 270, + 274, { "distinct_on": [ - 283, + 287, "[chat_read_state_select_column!]" ], "limit": [ @@ -165465,48 +172303,48 @@ export default { 40 ], "order_by": [ - 281, + 285, "[chat_read_state_order_by!]" ], "where": [ - 273 + 277 ] } ], "chat_read_state_by_pk": [ - 269, + 273, { "steam_id": [ - 264, + 268, "bigint!" ], "thread": [ - 80, + 83, "String!" ] } ], "chat_read_state_stream": [ - 269, + 273, { "batch_size": [ 40, "Int!" ], "cursor": [ - 288, + 292, "[chat_read_state_stream_cursor_input]!" ], "where": [ - 273 + 277 ] } ], "clip_render_jobs": [ - 296, + 300, { "distinct_on": [ - 324, + 328, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -165516,19 +172354,19 @@ export default { 40 ], "order_by": [ - 321, + 325, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 312 ] } ], "clip_render_jobs_aggregate": [ - 297, + 301, { "distinct_on": [ - 324, + 328, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -165538,44 +172376,44 @@ export default { 40 ], "order_by": [ - 321, + 325, "[clip_render_jobs_order_by!]" ], "where": [ - 308 + 312 ] } ], "clip_render_jobs_by_pk": [ - 296, + 300, { "id": [ - 5170, + 5458, "uuid!" ] } ], "clip_render_jobs_stream": [ - 296, + 300, { "batch_size": [ 40, "Int!" ], "cursor": [ - 334, + 338, "[clip_render_jobs_stream_cursor_input]!" ], "where": [ - 308 + 312 ] } ], "custom_pages": [ - 348, + 352, { "distinct_on": [ - 367, + 371, "[custom_pages_select_column!]" ], "limit": [ @@ -165585,19 +172423,19 @@ export default { 40 ], "order_by": [ - 364, + 368, "[custom_pages_order_by!]" ], "where": [ - 353 + 357 ] } ], "custom_pages_aggregate": [ - 349, + 353, { "distinct_on": [ - 367, + 371, "[custom_pages_select_column!]" ], "limit": [ @@ -165607,44 +172445,44 @@ export default { 40 ], "order_by": [ - 364, + 368, "[custom_pages_order_by!]" ], "where": [ - 353 + 357 ] } ], "custom_pages_by_pk": [ - 348, + 352, { "id": [ - 5170, + 5458, "uuid!" ] } ], "custom_pages_stream": [ - 348, + 352, { "batch_size": [ 40, "Int!" ], "cursor": [ - 372, + 376, "[custom_pages_stream_cursor_input]!" ], "where": [ - 353 + 357 ] } ], "db_backups": [ - 380, + 384, { "distinct_on": [ - 394, + 398, "[db_backups_select_column!]" ], "limit": [ @@ -165654,19 +172492,19 @@ export default { 40 ], "order_by": [ - 392, + 396, "[db_backups_order_by!]" ], "where": [ - 384 + 388 ] } ], "db_backups_aggregate": [ - 381, + 385, { "distinct_on": [ - 394, + 398, "[db_backups_select_column!]" ], "limit": [ @@ -165676,44 +172514,44 @@ export default { 40 ], "order_by": [ - 392, + 396, "[db_backups_order_by!]" ], "where": [ - 384 + 388 ] } ], "db_backups_by_pk": [ - 380, + 384, { "id": [ - 5170, + 5458, "uuid!" ] } ], "db_backups_stream": [ - 380, + 384, { "batch_size": [ 40, "Int!" ], "cursor": [ - 399, + 403, "[db_backups_stream_cursor_input]!" ], "where": [ - 384 + 388 ] } ], "direct_conversations": [ - 407, + 411, { "distinct_on": [ - 421, + 425, "[direct_conversations_select_column!]" ], "limit": [ @@ -165723,19 +172561,19 @@ export default { 40 ], "order_by": [ - 419, + 423, "[direct_conversations_order_by!]" ], "where": [ - 411 + 415 ] } ], "direct_conversations_aggregate": [ - 408, + 412, { "distinct_on": [ - 421, + 425, "[direct_conversations_select_column!]" ], "limit": [ @@ -165745,48 +172583,48 @@ export default { 40 ], "order_by": [ - 419, + 423, "[direct_conversations_order_by!]" ], "where": [ - 411 + 415 ] } ], "direct_conversations_by_pk": [ - 407, + 411, { "room_id": [ - 80, + 83, "String!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "direct_conversations_stream": [ - 407, + 411, { "batch_size": [ 40, "Int!" ], "cursor": [ - 426, + 430, "[direct_conversations_stream_cursor_input]!" ], "where": [ - 411 + 415 ] } ], "direct_messages": [ - 434, + 438, { "distinct_on": [ - 448, + 452, "[direct_messages_select_column!]" ], "limit": [ @@ -165796,19 +172634,19 @@ export default { 40 ], "order_by": [ - 446, + 450, "[direct_messages_order_by!]" ], "where": [ - 438 + 442 ] } ], "direct_messages_aggregate": [ - 435, + 439, { "distinct_on": [ - 448, + 452, "[direct_messages_select_column!]" ], "limit": [ @@ -165818,44 +172656,44 @@ export default { 40 ], "order_by": [ - 446, + 450, "[direct_messages_order_by!]" ], "where": [ - 438 + 442 ] } ], "direct_messages_by_pk": [ - 434, + 438, { "id": [ - 5170, + 5458, "uuid!" ] } ], "direct_messages_stream": [ - 434, + 438, { "batch_size": [ 40, "Int!" ], "cursor": [ - 453, + 457, "[direct_messages_stream_cursor_input]!" ], "where": [ - 438 + 442 ] } ], "draft_game_picks": [ - 461, + 465, { "distinct_on": [ - 484, + 488, "[draft_game_picks_select_column!]" ], "limit": [ @@ -165865,19 +172703,19 @@ export default { 40 ], "order_by": [ - 482, + 486, "[draft_game_picks_order_by!]" ], "where": [ - 472 + 476 ] } ], "draft_game_picks_aggregate": [ - 462, + 466, { "distinct_on": [ - 484, + 488, "[draft_game_picks_select_column!]" ], "limit": [ @@ -165887,44 +172725,44 @@ export default { 40 ], "order_by": [ - 482, + 486, "[draft_game_picks_order_by!]" ], "where": [ - 472 + 476 ] } ], "draft_game_picks_by_pk": [ - 461, + 465, { "id": [ - 5170, + 5458, "uuid!" ] } ], "draft_game_picks_stream": [ - 461, + 465, { "batch_size": [ 40, "Int!" ], "cursor": [ - 494, + 498, "[draft_game_picks_stream_cursor_input]!" ], "where": [ - 472 + 476 ] } ], "draft_game_players": [ - 506, + 510, { "distinct_on": [ - 529, + 533, "[draft_game_players_select_column!]" ], "limit": [ @@ -165934,19 +172772,19 @@ export default { 40 ], "order_by": [ - 527, + 531, "[draft_game_players_order_by!]" ], "where": [ - 517 + 521 ] } ], "draft_game_players_aggregate": [ - 507, + 511, { "distinct_on": [ - 529, + 533, "[draft_game_players_select_column!]" ], "limit": [ @@ -165956,48 +172794,48 @@ export default { 40 ], "order_by": [ - 527, + 531, "[draft_game_players_order_by!]" ], "where": [ - 517 + 521 ] } ], "draft_game_players_by_pk": [ - 506, + 510, { "draft_game_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "draft_game_players_stream": [ - 506, + 510, { "batch_size": [ 40, "Int!" ], "cursor": [ - 539, + 543, "[draft_game_players_stream_cursor_input]!" ], "where": [ - 517 + 521 ] } ], "draft_games": [ - 551, + 555, { "distinct_on": [ - 575, + 579, "[draft_games_select_column!]" ], "limit": [ @@ -166007,19 +172845,19 @@ export default { 40 ], "order_by": [ - 573, + 577, "[draft_games_order_by!]" ], "where": [ - 562 + 566 ] } ], "draft_games_aggregate": [ - 552, + 556, { "distinct_on": [ - 575, + 579, "[draft_games_select_column!]" ], "limit": [ @@ -166029,44 +172867,44 @@ export default { 40 ], "order_by": [ - 573, + 577, "[draft_games_order_by!]" ], "where": [ - 562 + 566 ] } ], "draft_games_by_pk": [ - 551, + 555, { "id": [ - 5170, + 5458, "uuid!" ] } ], "draft_games_stream": [ - 551, + 555, { "batch_size": [ 40, "Int!" ], "cursor": [ - 585, + 589, "[draft_games_stream_cursor_input]!" ], "where": [ - 562 + 566 ] } ], "e_award_sources": [ - 597, + 601, { "distinct_on": [ - 611, + 615, "[e_award_sources_select_column!]" ], "limit": [ @@ -166076,19 +172914,19 @@ export default { 40 ], "order_by": [ - 609, + 613, "[e_award_sources_order_by!]" ], "where": [ - 600 + 604 ] } ], "e_award_sources_aggregate": [ - 598, + 602, { "distinct_on": [ - 611, + 615, "[e_award_sources_select_column!]" ], "limit": [ @@ -166098,44 +172936,44 @@ export default { 40 ], "order_by": [ - 609, + 613, "[e_award_sources_order_by!]" ], "where": [ - 600 + 604 ] } ], "e_award_sources_by_pk": [ - 597, + 601, { "value": [ - 80, + 83, "String!" ] } ], "e_award_sources_stream": [ - 597, + 601, { "batch_size": [ 40, "Int!" ], "cursor": [ - 613, + 617, "[e_award_sources_stream_cursor_input]!" ], "where": [ - 600 + 604 ] } ], "e_award_tiers": [ - 617, + 621, { "distinct_on": [ - 631, + 635, "[e_award_tiers_select_column!]" ], "limit": [ @@ -166145,19 +172983,19 @@ export default { 40 ], "order_by": [ - 629, + 633, "[e_award_tiers_order_by!]" ], "where": [ - 620 + 624 ] } ], "e_award_tiers_aggregate": [ - 618, + 622, { "distinct_on": [ - 631, + 635, "[e_award_tiers_select_column!]" ], "limit": [ @@ -166167,44 +173005,44 @@ export default { 40 ], "order_by": [ - 629, + 633, "[e_award_tiers_order_by!]" ], "where": [ - 620 + 624 ] } ], "e_award_tiers_by_pk": [ - 617, + 621, { "value": [ - 80, + 83, "String!" ] } ], "e_award_tiers_stream": [ - 617, + 621, { "batch_size": [ 40, "Int!" ], "cursor": [ - 633, + 637, "[e_award_tiers_stream_cursor_input]!" ], "where": [ - 620 + 624 ] } ], "e_check_in_settings": [ - 637, + 641, { "distinct_on": [ - 651, + 655, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -166214,19 +173052,19 @@ export default { 40 ], "order_by": [ - 649, + 653, "[e_check_in_settings_order_by!]" ], "where": [ - 640 + 644 ] } ], "e_check_in_settings_aggregate": [ - 638, + 642, { "distinct_on": [ - 651, + 655, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -166236,44 +173074,44 @@ export default { 40 ], "order_by": [ - 649, + 653, "[e_check_in_settings_order_by!]" ], "where": [ - 640 + 644 ] } ], "e_check_in_settings_by_pk": [ - 637, + 641, { "value": [ - 80, + 83, "String!" ] } ], "e_check_in_settings_stream": [ - 637, + 641, { "batch_size": [ 40, "Int!" ], "cursor": [ - 653, + 657, "[e_check_in_settings_stream_cursor_input]!" ], "where": [ - 640 + 644 ] } ], "e_draft_game_captain_selection": [ - 657, + 661, { "distinct_on": [ - 672, + 676, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -166283,19 +173121,19 @@ export default { 40 ], "order_by": [ - 670, + 674, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 660 + 664 ] } ], "e_draft_game_captain_selection_aggregate": [ - 658, + 662, { "distinct_on": [ - 672, + 676, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -166305,44 +173143,44 @@ export default { 40 ], "order_by": [ - 670, + 674, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 660 + 664 ] } ], "e_draft_game_captain_selection_by_pk": [ - 657, + 661, { "value": [ - 80, + 83, "String!" ] } ], "e_draft_game_captain_selection_stream": [ - 657, + 661, { "batch_size": [ 40, "Int!" ], "cursor": [ - 674, + 678, "[e_draft_game_captain_selection_stream_cursor_input]!" ], "where": [ - 660 + 664 ] } ], "e_draft_game_draft_order": [ - 678, + 682, { "distinct_on": [ - 693, + 697, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -166352,19 +173190,19 @@ export default { 40 ], "order_by": [ - 691, + 695, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 681 + 685 ] } ], "e_draft_game_draft_order_aggregate": [ - 679, + 683, { "distinct_on": [ - 693, + 697, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -166374,44 +173212,44 @@ export default { 40 ], "order_by": [ - 691, + 695, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 681 + 685 ] } ], "e_draft_game_draft_order_by_pk": [ - 678, + 682, { "value": [ - 80, + 83, "String!" ] } ], "e_draft_game_draft_order_stream": [ - 678, + 682, { "batch_size": [ 40, "Int!" ], "cursor": [ - 695, + 699, "[e_draft_game_draft_order_stream_cursor_input]!" ], "where": [ - 681 + 685 ] } ], "e_draft_game_mode": [ - 699, + 703, { "distinct_on": [ - 714, + 718, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -166421,19 +173259,19 @@ export default { 40 ], "order_by": [ - 712, + 716, "[e_draft_game_mode_order_by!]" ], "where": [ - 702 + 706 ] } ], "e_draft_game_mode_aggregate": [ - 700, + 704, { "distinct_on": [ - 714, + 718, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -166443,44 +173281,44 @@ export default { 40 ], "order_by": [ - 712, + 716, "[e_draft_game_mode_order_by!]" ], "where": [ - 702 + 706 ] } ], "e_draft_game_mode_by_pk": [ - 699, + 703, { "value": [ - 80, + 83, "String!" ] } ], "e_draft_game_mode_stream": [ - 699, + 703, { "batch_size": [ 40, "Int!" ], "cursor": [ - 716, + 720, "[e_draft_game_mode_stream_cursor_input]!" ], "where": [ - 702 + 706 ] } ], "e_draft_game_player_status": [ - 720, + 724, { "distinct_on": [ - 735, + 739, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -166490,19 +173328,19 @@ export default { 40 ], "order_by": [ - 733, + 737, "[e_draft_game_player_status_order_by!]" ], "where": [ - 723 + 727 ] } ], "e_draft_game_player_status_aggregate": [ - 721, + 725, { "distinct_on": [ - 735, + 739, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -166512,44 +173350,44 @@ export default { 40 ], "order_by": [ - 733, + 737, "[e_draft_game_player_status_order_by!]" ], "where": [ - 723 + 727 ] } ], "e_draft_game_player_status_by_pk": [ - 720, + 724, { "value": [ - 80, + 83, "String!" ] } ], "e_draft_game_player_status_stream": [ - 720, + 724, { "batch_size": [ 40, "Int!" ], "cursor": [ - 737, + 741, "[e_draft_game_player_status_stream_cursor_input]!" ], "where": [ - 723 + 727 ] } ], "e_draft_game_status": [ - 741, + 745, { "distinct_on": [ - 756, + 760, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -166559,19 +173397,19 @@ export default { 40 ], "order_by": [ - 754, + 758, "[e_draft_game_status_order_by!]" ], "where": [ - 744 + 748 ] } ], "e_draft_game_status_aggregate": [ - 742, + 746, { "distinct_on": [ - 756, + 760, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -166581,44 +173419,44 @@ export default { 40 ], "order_by": [ - 754, + 758, "[e_draft_game_status_order_by!]" ], "where": [ - 744 + 748 ] } ], "e_draft_game_status_by_pk": [ - 741, + 745, { "value": [ - 80, + 83, "String!" ] } ], "e_draft_game_status_stream": [ - 741, + 745, { "batch_size": [ 40, "Int!" ], "cursor": [ - 758, + 762, "[e_draft_game_status_stream_cursor_input]!" ], "where": [ - 744 + 748 ] } ], "e_event_media_access": [ - 762, + 766, { "distinct_on": [ - 776, + 780, "[e_event_media_access_select_column!]" ], "limit": [ @@ -166628,19 +173466,19 @@ export default { 40 ], "order_by": [ - 774, + 778, "[e_event_media_access_order_by!]" ], "where": [ - 765 + 769 ] } ], "e_event_media_access_aggregate": [ - 763, + 767, { "distinct_on": [ - 776, + 780, "[e_event_media_access_select_column!]" ], "limit": [ @@ -166650,44 +173488,44 @@ export default { 40 ], "order_by": [ - 774, + 778, "[e_event_media_access_order_by!]" ], "where": [ - 765 + 769 ] } ], "e_event_media_access_by_pk": [ - 762, + 766, { "value": [ - 80, + 83, "String!" ] } ], "e_event_media_access_stream": [ - 762, + 766, { "batch_size": [ 40, "Int!" ], "cursor": [ - 778, + 782, "[e_event_media_access_stream_cursor_input]!" ], "where": [ - 765 + 769 ] } ], "e_event_visibility": [ - 782, + 786, { "distinct_on": [ - 796, + 800, "[e_event_visibility_select_column!]" ], "limit": [ @@ -166697,19 +173535,19 @@ export default { 40 ], "order_by": [ - 794, + 798, "[e_event_visibility_order_by!]" ], "where": [ - 785 + 789 ] } ], "e_event_visibility_aggregate": [ - 783, + 787, { "distinct_on": [ - 796, + 800, "[e_event_visibility_select_column!]" ], "limit": [ @@ -166719,44 +173557,44 @@ export default { 40 ], "order_by": [ - 794, + 798, "[e_event_visibility_order_by!]" ], "where": [ - 785 + 789 ] } ], "e_event_visibility_by_pk": [ - 782, + 786, { "value": [ - 80, + 83, "String!" ] } ], "e_event_visibility_stream": [ - 782, + 786, { "batch_size": [ 40, "Int!" ], "cursor": [ - 798, + 802, "[e_event_visibility_stream_cursor_input]!" ], "where": [ - 785 + 789 ] } ], "e_friend_status": [ - 802, + 806, { "distinct_on": [ - 817, + 821, "[e_friend_status_select_column!]" ], "limit": [ @@ -166766,19 +173604,19 @@ export default { 40 ], "order_by": [ - 815, + 819, "[e_friend_status_order_by!]" ], "where": [ - 805 + 809 ] } ], "e_friend_status_aggregate": [ - 803, + 807, { "distinct_on": [ - 817, + 821, "[e_friend_status_select_column!]" ], "limit": [ @@ -166788,44 +173626,44 @@ export default { 40 ], "order_by": [ - 815, + 819, "[e_friend_status_order_by!]" ], "where": [ - 805 + 809 ] } ], "e_friend_status_by_pk": [ - 802, + 806, { "value": [ - 80, + 83, "String!" ] } ], "e_friend_status_stream": [ - 802, + 806, { "batch_size": [ 40, "Int!" ], "cursor": [ - 819, + 823, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 805 + 809 ] } ], "e_game_cfg_types": [ - 823, + 827, { "distinct_on": [ - 837, + 841, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -166835,19 +173673,19 @@ export default { 40 ], "order_by": [ - 835, + 839, "[e_game_cfg_types_order_by!]" ], "where": [ - 826 + 830 ] } ], "e_game_cfg_types_aggregate": [ - 824, + 828, { "distinct_on": [ - 837, + 841, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -166857,44 +173695,251 @@ export default { 40 ], "order_by": [ - 835, + 839, "[e_game_cfg_types_order_by!]" ], "where": [ - 826 + 830 ] } ], "e_game_cfg_types_by_pk": [ - 823, + 827, { "value": [ - 80, + 83, "String!" ] } ], "e_game_cfg_types_stream": [ - 823, + 827, { "batch_size": [ 40, "Int!" ], "cursor": [ - 839, + 843, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 826 + 830 + ] + } + ], + "e_game_plugin_channels": [ + 847, + { + "distinct_on": [ + 861, + "[e_game_plugin_channels_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 859, + "[e_game_plugin_channels_order_by!]" + ], + "where": [ + 850 + ] + } + ], + "e_game_plugin_channels_aggregate": [ + 848, + { + "distinct_on": [ + 861, + "[e_game_plugin_channels_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 859, + "[e_game_plugin_channels_order_by!]" + ], + "where": [ + 850 + ] + } + ], + "e_game_plugin_channels_by_pk": [ + 847, + { + "value": [ + 83, + "String!" + ] + } + ], + "e_game_plugin_channels_stream": [ + 847, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 863, + "[e_game_plugin_channels_stream_cursor_input]!" + ], + "where": [ + 850 + ] + } + ], + "e_game_plugin_install_statuses": [ + 867, + { + "distinct_on": [ + 881, + "[e_game_plugin_install_statuses_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 879, + "[e_game_plugin_install_statuses_order_by!]" + ], + "where": [ + 870 + ] + } + ], + "e_game_plugin_install_statuses_aggregate": [ + 868, + { + "distinct_on": [ + 881, + "[e_game_plugin_install_statuses_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 879, + "[e_game_plugin_install_statuses_order_by!]" + ], + "where": [ + 870 + ] + } + ], + "e_game_plugin_install_statuses_by_pk": [ + 867, + { + "value": [ + 83, + "String!" + ] + } + ], + "e_game_plugin_install_statuses_stream": [ + 867, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 883, + "[e_game_plugin_install_statuses_stream_cursor_input]!" + ], + "where": [ + 870 + ] + } + ], + "e_game_plugin_kinds": [ + 887, + { + "distinct_on": [ + 901, + "[e_game_plugin_kinds_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 899, + "[e_game_plugin_kinds_order_by!]" + ], + "where": [ + 890 + ] + } + ], + "e_game_plugin_kinds_aggregate": [ + 888, + { + "distinct_on": [ + 901, + "[e_game_plugin_kinds_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 899, + "[e_game_plugin_kinds_order_by!]" + ], + "where": [ + 890 + ] + } + ], + "e_game_plugin_kinds_by_pk": [ + 887, + { + "value": [ + 83, + "String!" + ] + } + ], + "e_game_plugin_kinds_stream": [ + 887, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 903, + "[e_game_plugin_kinds_stream_cursor_input]!" + ], + "where": [ + 890 ] } ], "e_game_server_node_statuses": [ - 843, + 907, { "distinct_on": [ - 858, + 922, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -166904,19 +173949,19 @@ export default { 40 ], "order_by": [ - 856, + 920, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 846 + 910 ] } ], "e_game_server_node_statuses_aggregate": [ - 844, + 908, { "distinct_on": [ - 858, + 922, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -166926,44 +173971,44 @@ export default { 40 ], "order_by": [ - 856, + 920, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 846 + 910 ] } ], "e_game_server_node_statuses_by_pk": [ - 843, + 907, { "value": [ - 80, + 83, "String!" ] } ], "e_game_server_node_statuses_stream": [ - 843, + 907, { "batch_size": [ 40, "Int!" ], "cursor": [ - 860, + 924, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 846 + 910 ] } ], "e_league_movement_types": [ - 864, + 928, { "distinct_on": [ - 879, + 943, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -166973,19 +174018,19 @@ export default { 40 ], "order_by": [ - 877, + 941, "[e_league_movement_types_order_by!]" ], "where": [ - 867 + 931 ] } ], "e_league_movement_types_aggregate": [ - 865, + 929, { "distinct_on": [ - 879, + 943, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -166995,44 +174040,44 @@ export default { 40 ], "order_by": [ - 877, + 941, "[e_league_movement_types_order_by!]" ], "where": [ - 867 + 931 ] } ], "e_league_movement_types_by_pk": [ - 864, + 928, { "value": [ - 80, + 83, "String!" ] } ], "e_league_movement_types_stream": [ - 864, + 928, { "batch_size": [ 40, "Int!" ], "cursor": [ - 881, + 945, "[e_league_movement_types_stream_cursor_input]!" ], "where": [ - 867 + 931 ] } ], "e_league_proposal_statuses": [ - 885, + 949, { "distinct_on": [ - 900, + 964, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -167042,19 +174087,19 @@ export default { 40 ], "order_by": [ - 898, + 962, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 888 + 952 ] } ], "e_league_proposal_statuses_aggregate": [ - 886, + 950, { "distinct_on": [ - 900, + 964, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -167064,44 +174109,44 @@ export default { 40 ], "order_by": [ - 898, + 962, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 888 + 952 ] } ], "e_league_proposal_statuses_by_pk": [ - 885, + 949, { "value": [ - 80, + 83, "String!" ] } ], "e_league_proposal_statuses_stream": [ - 885, + 949, { "batch_size": [ 40, "Int!" ], "cursor": [ - 902, + 966, "[e_league_proposal_statuses_stream_cursor_input]!" ], "where": [ - 888 + 952 ] } ], "e_league_registration_statuses": [ - 906, + 970, { "distinct_on": [ - 921, + 985, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -167111,19 +174156,19 @@ export default { 40 ], "order_by": [ - 919, + 983, "[e_league_registration_statuses_order_by!]" ], "where": [ - 909 + 973 ] } ], "e_league_registration_statuses_aggregate": [ - 907, + 971, { "distinct_on": [ - 921, + 985, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -167133,44 +174178,44 @@ export default { 40 ], "order_by": [ - 919, + 983, "[e_league_registration_statuses_order_by!]" ], "where": [ - 909 + 973 ] } ], "e_league_registration_statuses_by_pk": [ - 906, + 970, { "value": [ - 80, + 83, "String!" ] } ], "e_league_registration_statuses_stream": [ - 906, + 970, { "batch_size": [ 40, "Int!" ], "cursor": [ - 923, + 987, "[e_league_registration_statuses_stream_cursor_input]!" ], "where": [ - 909 + 973 ] } ], "e_league_season_statuses": [ - 927, + 991, { "distinct_on": [ - 942, + 1006, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -167180,19 +174225,19 @@ export default { 40 ], "order_by": [ - 940, + 1004, "[e_league_season_statuses_order_by!]" ], "where": [ - 930 + 994 ] } ], "e_league_season_statuses_aggregate": [ - 928, + 992, { "distinct_on": [ - 942, + 1006, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -167202,44 +174247,44 @@ export default { 40 ], "order_by": [ - 940, + 1004, "[e_league_season_statuses_order_by!]" ], "where": [ - 930 + 994 ] } ], "e_league_season_statuses_by_pk": [ - 927, + 991, { "value": [ - 80, + 83, "String!" ] } ], "e_league_season_statuses_stream": [ - 927, + 991, { "batch_size": [ 40, "Int!" ], "cursor": [ - 944, + 1008, "[e_league_season_statuses_stream_cursor_input]!" ], "where": [ - 930 + 994 ] } ], "e_lobby_access": [ - 948, + 1012, { "distinct_on": [ - 963, + 1027, "[e_lobby_access_select_column!]" ], "limit": [ @@ -167249,19 +174294,19 @@ export default { 40 ], "order_by": [ - 961, + 1025, "[e_lobby_access_order_by!]" ], "where": [ - 951 + 1015 ] } ], "e_lobby_access_aggregate": [ - 949, + 1013, { "distinct_on": [ - 963, + 1027, "[e_lobby_access_select_column!]" ], "limit": [ @@ -167271,44 +174316,44 @@ export default { 40 ], "order_by": [ - 961, + 1025, "[e_lobby_access_order_by!]" ], "where": [ - 951 + 1015 ] } ], "e_lobby_access_by_pk": [ - 948, + 1012, { "value": [ - 80, + 83, "String!" ] } ], "e_lobby_access_stream": [ - 948, + 1012, { "batch_size": [ 40, "Int!" ], "cursor": [ - 965, + 1029, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 951 + 1015 ] } ], "e_lobby_player_status": [ - 969, + 1033, { "distinct_on": [ - 983, + 1047, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -167318,19 +174363,19 @@ export default { 40 ], "order_by": [ - 981, + 1045, "[e_lobby_player_status_order_by!]" ], "where": [ - 972 + 1036 ] } ], "e_lobby_player_status_aggregate": [ - 970, + 1034, { "distinct_on": [ - 983, + 1047, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -167340,44 +174385,44 @@ export default { 40 ], "order_by": [ - 981, + 1045, "[e_lobby_player_status_order_by!]" ], "where": [ - 972 + 1036 ] } ], "e_lobby_player_status_by_pk": [ - 969, + 1033, { "value": [ - 80, + 83, "String!" ] } ], "e_lobby_player_status_stream": [ - 969, + 1033, { "batch_size": [ 40, "Int!" ], "cursor": [ - 985, + 1049, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 972 + 1036 ] } ], "e_map_pool_types": [ - 989, + 1053, { "distinct_on": [ - 1004, + 1068, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -167387,19 +174432,19 @@ export default { 40 ], "order_by": [ - 1002, + 1066, "[e_map_pool_types_order_by!]" ], "where": [ - 992 + 1056 ] } ], "e_map_pool_types_aggregate": [ - 990, + 1054, { "distinct_on": [ - 1004, + 1068, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -167409,44 +174454,44 @@ export default { 40 ], "order_by": [ - 1002, + 1066, "[e_map_pool_types_order_by!]" ], "where": [ - 992 + 1056 ] } ], "e_map_pool_types_by_pk": [ - 989, + 1053, { "value": [ - 80, + 83, "String!" ] } ], "e_map_pool_types_stream": [ - 989, + 1053, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1006, + 1070, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 992 + 1056 ] } ], "e_match_clip_visibility": [ - 1010, + 1074, { "distinct_on": [ - 1024, + 1088, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -167456,19 +174501,19 @@ export default { 40 ], "order_by": [ - 1022, + 1086, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1013 + 1077 ] } ], "e_match_clip_visibility_aggregate": [ - 1011, + 1075, { "distinct_on": [ - 1024, + 1088, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -167478,44 +174523,44 @@ export default { 40 ], "order_by": [ - 1022, + 1086, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1013 + 1077 ] } ], "e_match_clip_visibility_by_pk": [ - 1010, + 1074, { "value": [ - 80, + 83, "String!" ] } ], "e_match_clip_visibility_stream": [ - 1010, + 1074, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1026, + 1090, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 1013 + 1077 ] } ], "e_match_map_status": [ - 1030, + 1094, { "distinct_on": [ - 1045, + 1109, "[e_match_map_status_select_column!]" ], "limit": [ @@ -167525,19 +174570,19 @@ export default { 40 ], "order_by": [ - 1043, + 1107, "[e_match_map_status_order_by!]" ], "where": [ - 1033 + 1097 ] } ], "e_match_map_status_aggregate": [ - 1031, + 1095, { "distinct_on": [ - 1045, + 1109, "[e_match_map_status_select_column!]" ], "limit": [ @@ -167547,44 +174592,44 @@ export default { 40 ], "order_by": [ - 1043, + 1107, "[e_match_map_status_order_by!]" ], "where": [ - 1033 + 1097 ] } ], "e_match_map_status_by_pk": [ - 1030, + 1094, { "value": [ - 80, + 83, "String!" ] } ], "e_match_map_status_stream": [ - 1030, + 1094, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1047, + 1111, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 1033 + 1097 ] } ], "e_match_mode": [ - 1051, + 1115, { "distinct_on": [ - 1065, + 1129, "[e_match_mode_select_column!]" ], "limit": [ @@ -167594,19 +174639,19 @@ export default { 40 ], "order_by": [ - 1063, + 1127, "[e_match_mode_order_by!]" ], "where": [ - 1054 + 1118 ] } ], "e_match_mode_aggregate": [ - 1052, + 1116, { "distinct_on": [ - 1065, + 1129, "[e_match_mode_select_column!]" ], "limit": [ @@ -167616,44 +174661,44 @@ export default { 40 ], "order_by": [ - 1063, + 1127, "[e_match_mode_order_by!]" ], "where": [ - 1054 + 1118 ] } ], "e_match_mode_by_pk": [ - 1051, + 1115, { "value": [ - 80, + 83, "String!" ] } ], "e_match_mode_stream": [ - 1051, + 1115, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1067, + 1131, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 1054 + 1118 ] } ], "e_match_party_sources": [ - 1071, + 1135, { "distinct_on": [ - 1085, + 1149, "[e_match_party_sources_select_column!]" ], "limit": [ @@ -167663,19 +174708,19 @@ export default { 40 ], "order_by": [ - 1083, + 1147, "[e_match_party_sources_order_by!]" ], "where": [ - 1074 + 1138 ] } ], "e_match_party_sources_aggregate": [ - 1072, + 1136, { "distinct_on": [ - 1085, + 1149, "[e_match_party_sources_select_column!]" ], "limit": [ @@ -167685,44 +174730,44 @@ export default { 40 ], "order_by": [ - 1083, + 1147, "[e_match_party_sources_order_by!]" ], "where": [ - 1074 + 1138 ] } ], "e_match_party_sources_by_pk": [ - 1071, + 1135, { "value": [ - 80, + 83, "String!" ] } ], "e_match_party_sources_stream": [ - 1071, + 1135, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1087, + 1151, "[e_match_party_sources_stream_cursor_input]!" ], "where": [ - 1074 + 1138 ] } ], "e_match_status": [ - 1091, + 1155, { "distinct_on": [ - 1106, + 1170, "[e_match_status_select_column!]" ], "limit": [ @@ -167732,19 +174777,19 @@ export default { 40 ], "order_by": [ - 1104, + 1168, "[e_match_status_order_by!]" ], "where": [ - 1094 + 1158 ] } ], "e_match_status_aggregate": [ - 1092, + 1156, { "distinct_on": [ - 1106, + 1170, "[e_match_status_select_column!]" ], "limit": [ @@ -167754,44 +174799,44 @@ export default { 40 ], "order_by": [ - 1104, + 1168, "[e_match_status_order_by!]" ], "where": [ - 1094 + 1158 ] } ], "e_match_status_by_pk": [ - 1091, + 1155, { "value": [ - 80, + 83, "String!" ] } ], "e_match_status_stream": [ - 1091, + 1155, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1108, + 1172, "[e_match_status_stream_cursor_input]!" ], "where": [ - 1094 + 1158 ] } ], "e_match_types": [ - 1112, + 1176, { "distinct_on": [ - 1127, + 1191, "[e_match_types_select_column!]" ], "limit": [ @@ -167801,19 +174846,19 @@ export default { 40 ], "order_by": [ - 1125, + 1189, "[e_match_types_order_by!]" ], "where": [ - 1115 + 1179 ] } ], "e_match_types_aggregate": [ - 1113, + 1177, { "distinct_on": [ - 1127, + 1191, "[e_match_types_select_column!]" ], "limit": [ @@ -167823,44 +174868,44 @@ export default { 40 ], "order_by": [ - 1125, + 1189, "[e_match_types_order_by!]" ], "where": [ - 1115 + 1179 ] } ], "e_match_types_by_pk": [ - 1112, + 1176, { "value": [ - 80, + 83, "String!" ] } ], "e_match_types_stream": [ - 1112, + 1176, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1129, + 1193, "[e_match_types_stream_cursor_input]!" ], "where": [ - 1115 + 1179 ] } ], "e_notification_types": [ - 1133, + 1197, { "distinct_on": [ - 1147, + 1211, "[e_notification_types_select_column!]" ], "limit": [ @@ -167870,19 +174915,19 @@ export default { 40 ], "order_by": [ - 1145, + 1209, "[e_notification_types_order_by!]" ], "where": [ - 1136 + 1200 ] } ], "e_notification_types_aggregate": [ - 1134, + 1198, { "distinct_on": [ - 1147, + 1211, "[e_notification_types_select_column!]" ], "limit": [ @@ -167892,44 +174937,44 @@ export default { 40 ], "order_by": [ - 1145, + 1209, "[e_notification_types_order_by!]" ], "where": [ - 1136 + 1200 ] } ], "e_notification_types_by_pk": [ - 1133, + 1197, { "value": [ - 80, + 83, "String!" ] } ], "e_notification_types_stream": [ - 1133, + 1197, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1149, + 1213, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 1136 + 1200 ] } ], "e_objective_types": [ - 1153, + 1217, { "distinct_on": [ - 1167, + 1231, "[e_objective_types_select_column!]" ], "limit": [ @@ -167939,19 +174984,19 @@ export default { 40 ], "order_by": [ - 1165, + 1229, "[e_objective_types_order_by!]" ], "where": [ - 1156 + 1220 ] } ], "e_objective_types_aggregate": [ - 1154, + 1218, { "distinct_on": [ - 1167, + 1231, "[e_objective_types_select_column!]" ], "limit": [ @@ -167961,44 +175006,44 @@ export default { 40 ], "order_by": [ - 1165, + 1229, "[e_objective_types_order_by!]" ], "where": [ - 1156 + 1220 ] } ], "e_objective_types_by_pk": [ - 1153, + 1217, { "value": [ - 80, + 83, "String!" ] } ], "e_objective_types_stream": [ - 1153, + 1217, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1169, + 1233, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 1156 + 1220 ] } ], "e_player_roles": [ - 1173, + 1237, { "distinct_on": [ - 1187, + 1251, "[e_player_roles_select_column!]" ], "limit": [ @@ -168008,19 +175053,19 @@ export default { 40 ], "order_by": [ - 1185, + 1249, "[e_player_roles_order_by!]" ], "where": [ - 1176 + 1240 ] } ], "e_player_roles_aggregate": [ - 1174, + 1238, { "distinct_on": [ - 1187, + 1251, "[e_player_roles_select_column!]" ], "limit": [ @@ -168030,44 +175075,44 @@ export default { 40 ], "order_by": [ - 1185, + 1249, "[e_player_roles_order_by!]" ], "where": [ - 1176 + 1240 ] } ], "e_player_roles_by_pk": [ - 1173, + 1237, { "value": [ - 80, + 83, "String!" ] } ], "e_player_roles_stream": [ - 1173, + 1237, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1189, + 1253, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 1176 + 1240 ] } ], "e_plugin_runtimes": [ - 1193, + 1257, { "distinct_on": [ - 1207, + 1271, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -168077,19 +175122,19 @@ export default { 40 ], "order_by": [ - 1205, + 1269, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1196 + 1260 ] } ], "e_plugin_runtimes_aggregate": [ - 1194, + 1258, { "distinct_on": [ - 1207, + 1271, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -168099,44 +175144,44 @@ export default { 40 ], "order_by": [ - 1205, + 1269, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1196 + 1260 ] } ], "e_plugin_runtimes_by_pk": [ - 1193, + 1257, { "value": [ - 80, + 83, "String!" ] } ], "e_plugin_runtimes_stream": [ - 1193, + 1257, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1209, + 1273, "[e_plugin_runtimes_stream_cursor_input]!" ], "where": [ - 1196 + 1260 ] } ], "e_ready_settings": [ - 1213, + 1277, { "distinct_on": [ - 1227, + 1291, "[e_ready_settings_select_column!]" ], "limit": [ @@ -168146,19 +175191,19 @@ export default { 40 ], "order_by": [ - 1225, + 1289, "[e_ready_settings_order_by!]" ], "where": [ - 1216 + 1280 ] } ], "e_ready_settings_aggregate": [ - 1214, + 1278, { "distinct_on": [ - 1227, + 1291, "[e_ready_settings_select_column!]" ], "limit": [ @@ -168168,44 +175213,44 @@ export default { 40 ], "order_by": [ - 1225, + 1289, "[e_ready_settings_order_by!]" ], "where": [ - 1216 + 1280 ] } ], "e_ready_settings_by_pk": [ - 1213, + 1277, { "value": [ - 80, + 83, "String!" ] } ], "e_ready_settings_stream": [ - 1213, + 1277, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1229, + 1293, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 1216 + 1280 ] } ], "e_sanction_types": [ - 1233, + 1297, { "distinct_on": [ - 1248, + 1312, "[e_sanction_types_select_column!]" ], "limit": [ @@ -168215,19 +175260,19 @@ export default { 40 ], "order_by": [ - 1246, + 1310, "[e_sanction_types_order_by!]" ], "where": [ - 1236 + 1300 ] } ], "e_sanction_types_aggregate": [ - 1234, + 1298, { "distinct_on": [ - 1248, + 1312, "[e_sanction_types_select_column!]" ], "limit": [ @@ -168237,44 +175282,44 @@ export default { 40 ], "order_by": [ - 1246, + 1310, "[e_sanction_types_order_by!]" ], "where": [ - 1236 + 1300 ] } ], "e_sanction_types_by_pk": [ - 1233, + 1297, { "value": [ - 80, + 83, "String!" ] } ], "e_sanction_types_stream": [ - 1233, + 1297, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1250, + 1314, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 1236 + 1300 ] } ], "e_scrim_request_statuses": [ - 1254, + 1318, { "distinct_on": [ - 1268, + 1332, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -168284,19 +175329,19 @@ export default { 40 ], "order_by": [ - 1266, + 1330, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1257 + 1321 ] } ], "e_scrim_request_statuses_aggregate": [ - 1255, + 1319, { "distinct_on": [ - 1268, + 1332, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -168306,44 +175351,44 @@ export default { 40 ], "order_by": [ - 1266, + 1330, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1257 + 1321 ] } ], "e_scrim_request_statuses_by_pk": [ - 1254, + 1318, { "value": [ - 80, + 83, "String!" ] } ], "e_scrim_request_statuses_stream": [ - 1254, + 1318, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1270, + 1334, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 1257 + 1321 ] } ], "e_server_types": [ - 1274, + 1338, { "distinct_on": [ - 1288, + 1352, "[e_server_types_select_column!]" ], "limit": [ @@ -168353,19 +175398,19 @@ export default { 40 ], "order_by": [ - 1286, + 1350, "[e_server_types_order_by!]" ], "where": [ - 1277 + 1341 ] } ], "e_server_types_aggregate": [ - 1275, + 1339, { "distinct_on": [ - 1288, + 1352, "[e_server_types_select_column!]" ], "limit": [ @@ -168375,44 +175420,44 @@ export default { 40 ], "order_by": [ - 1286, + 1350, "[e_server_types_order_by!]" ], "where": [ - 1277 + 1341 ] } ], "e_server_types_by_pk": [ - 1274, + 1338, { "value": [ - 80, + 83, "String!" ] } ], "e_server_types_stream": [ - 1274, + 1338, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1290, + 1354, "[e_server_types_stream_cursor_input]!" ], "where": [ - 1277 + 1341 ] } ], "e_sides": [ - 1294, + 1358, { "distinct_on": [ - 1308, + 1372, "[e_sides_select_column!]" ], "limit": [ @@ -168422,19 +175467,19 @@ export default { 40 ], "order_by": [ - 1306, + 1370, "[e_sides_order_by!]" ], "where": [ - 1297 + 1361 ] } ], "e_sides_aggregate": [ - 1295, + 1359, { "distinct_on": [ - 1308, + 1372, "[e_sides_select_column!]" ], "limit": [ @@ -168444,44 +175489,44 @@ export default { 40 ], "order_by": [ - 1306, + 1370, "[e_sides_order_by!]" ], "where": [ - 1297 + 1361 ] } ], "e_sides_by_pk": [ - 1294, + 1358, { "value": [ - 80, + 83, "String!" ] } ], "e_sides_stream": [ - 1294, + 1358, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1310, + 1374, "[e_sides_stream_cursor_input]!" ], "where": [ - 1297 + 1361 ] } ], "e_system_alert_types": [ - 1314, + 1378, { "distinct_on": [ - 1328, + 1392, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -168491,19 +175536,19 @@ export default { 40 ], "order_by": [ - 1326, + 1390, "[e_system_alert_types_order_by!]" ], "where": [ - 1317 + 1381 ] } ], "e_system_alert_types_aggregate": [ - 1315, + 1379, { "distinct_on": [ - 1328, + 1392, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -168513,44 +175558,44 @@ export default { 40 ], "order_by": [ - 1326, + 1390, "[e_system_alert_types_order_by!]" ], "where": [ - 1317 + 1381 ] } ], "e_system_alert_types_by_pk": [ - 1314, + 1378, { "value": [ - 80, + 83, "String!" ] } ], "e_system_alert_types_stream": [ - 1314, + 1378, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1330, + 1394, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 1317 + 1381 ] } ], "e_team_roles": [ - 1334, + 1398, { "distinct_on": [ - 1349, + 1413, "[e_team_roles_select_column!]" ], "limit": [ @@ -168560,19 +175605,19 @@ export default { 40 ], "order_by": [ - 1347, + 1411, "[e_team_roles_order_by!]" ], "where": [ - 1337 + 1401 ] } ], "e_team_roles_aggregate": [ - 1335, + 1399, { "distinct_on": [ - 1349, + 1413, "[e_team_roles_select_column!]" ], "limit": [ @@ -168582,44 +175627,44 @@ export default { 40 ], "order_by": [ - 1347, + 1411, "[e_team_roles_order_by!]" ], "where": [ - 1337 + 1401 ] } ], "e_team_roles_by_pk": [ - 1334, + 1398, { "value": [ - 80, + 83, "String!" ] } ], "e_team_roles_stream": [ - 1334, + 1398, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1351, + 1415, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 1337 + 1401 ] } ], "e_team_roster_statuses": [ - 1355, + 1419, { "distinct_on": [ - 1369, + 1433, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -168629,19 +175674,19 @@ export default { 40 ], "order_by": [ - 1367, + 1431, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1358 + 1422 ] } ], "e_team_roster_statuses_aggregate": [ - 1356, + 1420, { "distinct_on": [ - 1369, + 1433, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -168651,44 +175696,44 @@ export default { 40 ], "order_by": [ - 1367, + 1431, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1358 + 1422 ] } ], "e_team_roster_statuses_by_pk": [ - 1355, + 1419, { "value": [ - 80, + 83, "String!" ] } ], "e_team_roster_statuses_stream": [ - 1355, + 1419, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1371, + 1435, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 1358 + 1422 ] } ], "e_timeout_settings": [ - 1375, + 1439, { "distinct_on": [ - 1389, + 1453, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -168698,19 +175743,19 @@ export default { 40 ], "order_by": [ - 1387, + 1451, "[e_timeout_settings_order_by!]" ], "where": [ - 1378 + 1442 ] } ], "e_timeout_settings_aggregate": [ - 1376, + 1440, { "distinct_on": [ - 1389, + 1453, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -168720,44 +175765,44 @@ export default { 40 ], "order_by": [ - 1387, + 1451, "[e_timeout_settings_order_by!]" ], "where": [ - 1378 + 1442 ] } ], "e_timeout_settings_by_pk": [ - 1375, + 1439, { "value": [ - 80, + 83, "String!" ] } ], "e_timeout_settings_stream": [ - 1375, + 1439, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1391, + 1455, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 1378 + 1442 ] } ], "e_tournament_categories": [ - 1395, + 1459, { "distinct_on": [ - 1410, + 1474, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -168767,19 +175812,19 @@ export default { 40 ], "order_by": [ - 1408, + 1472, "[e_tournament_categories_order_by!]" ], "where": [ - 1398 + 1462 ] } ], "e_tournament_categories_aggregate": [ - 1396, + 1460, { "distinct_on": [ - 1410, + 1474, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -168789,44 +175834,44 @@ export default { 40 ], "order_by": [ - 1408, + 1472, "[e_tournament_categories_order_by!]" ], "where": [ - 1398 + 1462 ] } ], "e_tournament_categories_by_pk": [ - 1395, + 1459, { "value": [ - 80, + 83, "String!" ] } ], "e_tournament_categories_stream": [ - 1395, + 1459, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1412, + 1476, "[e_tournament_categories_stream_cursor_input]!" ], "where": [ - 1398 + 1462 ] } ], "e_tournament_stage_types": [ - 1416, + 1480, { "distinct_on": [ - 1431, + 1495, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -168836,19 +175881,19 @@ export default { 40 ], "order_by": [ - 1429, + 1493, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1419 + 1483 ] } ], "e_tournament_stage_types_aggregate": [ - 1417, + 1481, { "distinct_on": [ - 1431, + 1495, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -168858,44 +175903,44 @@ export default { 40 ], "order_by": [ - 1429, + 1493, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1419 + 1483 ] } ], "e_tournament_stage_types_by_pk": [ - 1416, + 1480, { "value": [ - 80, + 83, "String!" ] } ], "e_tournament_stage_types_stream": [ - 1416, + 1480, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1433, + 1497, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 1419 + 1483 ] } ], "e_tournament_status": [ - 1437, + 1501, { "distinct_on": [ - 1452, + 1516, "[e_tournament_status_select_column!]" ], "limit": [ @@ -168905,19 +175950,19 @@ export default { 40 ], "order_by": [ - 1450, + 1514, "[e_tournament_status_order_by!]" ], "where": [ - 1440 + 1504 ] } ], "e_tournament_status_aggregate": [ - 1438, + 1502, { "distinct_on": [ - 1452, + 1516, "[e_tournament_status_select_column!]" ], "limit": [ @@ -168927,44 +175972,44 @@ export default { 40 ], "order_by": [ - 1450, + 1514, "[e_tournament_status_order_by!]" ], "where": [ - 1440 + 1504 ] } ], "e_tournament_status_by_pk": [ - 1437, + 1501, { "value": [ - 80, + 83, "String!" ] } ], "e_tournament_status_stream": [ - 1437, + 1501, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1454, + 1518, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1440 + 1504 ] } ], "e_utility_types": [ - 1458, + 1522, { "distinct_on": [ - 1472, + 1536, "[e_utility_types_select_column!]" ], "limit": [ @@ -168974,19 +176019,19 @@ export default { 40 ], "order_by": [ - 1470, + 1534, "[e_utility_types_order_by!]" ], "where": [ - 1461 + 1525 ] } ], "e_utility_types_aggregate": [ - 1459, + 1523, { "distinct_on": [ - 1472, + 1536, "[e_utility_types_select_column!]" ], "limit": [ @@ -168996,44 +176041,44 @@ export default { 40 ], "order_by": [ - 1470, + 1534, "[e_utility_types_order_by!]" ], "where": [ - 1461 + 1525 ] } ], "e_utility_types_by_pk": [ - 1458, + 1522, { "value": [ - 80, + 83, "String!" ] } ], "e_utility_types_stream": [ - 1458, + 1522, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1474, + 1538, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1461 + 1525 ] } ], "e_veto_pick_types": [ - 1478, + 1542, { "distinct_on": [ - 1492, + 1556, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -169043,19 +176088,19 @@ export default { 40 ], "order_by": [ - 1490, + 1554, "[e_veto_pick_types_order_by!]" ], "where": [ - 1481 + 1545 ] } ], "e_veto_pick_types_aggregate": [ - 1479, + 1543, { "distinct_on": [ - 1492, + 1556, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -169065,44 +176110,44 @@ export default { 40 ], "order_by": [ - 1490, + 1554, "[e_veto_pick_types_order_by!]" ], "where": [ - 1481 + 1545 ] } ], "e_veto_pick_types_by_pk": [ - 1478, + 1542, { "value": [ - 80, + 83, "String!" ] } ], "e_veto_pick_types_stream": [ - 1478, + 1542, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1494, + 1558, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1481 + 1545 ] } ], "e_winning_reasons": [ - 1498, + 1562, { "distinct_on": [ - 1512, + 1576, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -169112,19 +176157,19 @@ export default { 40 ], "order_by": [ - 1510, + 1574, "[e_winning_reasons_order_by!]" ], "where": [ - 1501 + 1565 ] } ], "e_winning_reasons_aggregate": [ - 1499, + 1563, { "distinct_on": [ - 1512, + 1576, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -169134,44 +176179,44 @@ export default { 40 ], "order_by": [ - 1510, + 1574, "[e_winning_reasons_order_by!]" ], "where": [ - 1501 + 1565 ] } ], "e_winning_reasons_by_pk": [ - 1498, + 1562, { "value": [ - 80, + 83, "String!" ] } ], "e_winning_reasons_stream": [ - 1498, + 1562, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1514, + 1578, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1501 + 1565 ] } ], "event_match_links": [ - 1518, + 1582, { "distinct_on": [ - 1530, + 1594, "[event_match_links_select_column!]" ], "limit": [ @@ -169181,19 +176226,19 @@ export default { 40 ], "order_by": [ - 1528, + 1592, "[event_match_links_order_by!]" ], "where": [ - 1521 + 1585 ] } ], "event_match_links_aggregate": [ - 1519, + 1583, { "distinct_on": [ - 1530, + 1594, "[event_match_links_select_column!]" ], "limit": [ @@ -169203,48 +176248,48 @@ export default { 40 ], "order_by": [ - 1528, + 1592, "[event_match_links_order_by!]" ], "where": [ - 1521 + 1585 ] } ], "event_match_links_by_pk": [ - 1518, + 1582, { "event_id": [ - 5170, + 5458, "uuid!" ], "match_id": [ - 5170, + 5458, "uuid!" ] } ], "event_match_links_stream": [ - 1518, + 1582, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1532, + 1596, "[event_match_links_stream_cursor_input]!" ], "where": [ - 1521 + 1585 ] } ], "event_media": [ - 1536, + 1600, { "distinct_on": [ - 1599, + 1663, "[event_media_select_column!]" ], "limit": [ @@ -169254,19 +176299,19 @@ export default { 40 ], "order_by": [ - 1556, + 1620, "[event_media_order_by!]" ], "where": [ - 1545 + 1609 ] } ], "event_media_aggregate": [ - 1537, + 1601, { "distinct_on": [ - 1599, + 1663, "[event_media_select_column!]" ], "limit": [ @@ -169276,28 +176321,28 @@ export default { 40 ], "order_by": [ - 1556, + 1620, "[event_media_order_by!]" ], "where": [ - 1545 + 1609 ] } ], "event_media_by_pk": [ - 1536, + 1600, { "id": [ - 5170, + 5458, "uuid!" ] } ], "event_media_players": [ - 1558, + 1622, { "distinct_on": [ - 1579, + 1643, "[event_media_players_select_column!]" ], "limit": [ @@ -169307,19 +176352,19 @@ export default { 40 ], "order_by": [ - 1577, + 1641, "[event_media_players_order_by!]" ], "where": [ - 1567 + 1631 ] } ], "event_media_players_aggregate": [ - 1559, + 1623, { "distinct_on": [ - 1579, + 1643, "[event_media_players_select_column!]" ], "limit": [ @@ -169329,64 +176374,64 @@ export default { 40 ], "order_by": [ - 1577, + 1641, "[event_media_players_order_by!]" ], "where": [ - 1567 + 1631 ] } ], "event_media_players_by_pk": [ - 1558, + 1622, { "media_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "event_media_players_stream": [ - 1558, + 1622, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1587, + 1651, "[event_media_players_stream_cursor_input]!" ], "where": [ - 1567 + 1631 ] } ], "event_media_stream": [ - 1536, + 1600, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1607, + 1671, "[event_media_stream_cursor_input]!" ], "where": [ - 1545 + 1609 ] } ], "event_organizers": [ - 1619, + 1683, { "distinct_on": [ - 1640, + 1704, "[event_organizers_select_column!]" ], "limit": [ @@ -169396,19 +176441,19 @@ export default { 40 ], "order_by": [ - 1638, + 1702, "[event_organizers_order_by!]" ], "where": [ - 1628 + 1692 ] } ], "event_organizers_aggregate": [ - 1620, + 1684, { "distinct_on": [ - 1640, + 1704, "[event_organizers_select_column!]" ], "limit": [ @@ -169418,48 +176463,48 @@ export default { 40 ], "order_by": [ - 1638, + 1702, "[event_organizers_order_by!]" ], "where": [ - 1628 + 1692 ] } ], "event_organizers_by_pk": [ - 1619, + 1683, { "event_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "event_organizers_stream": [ - 1619, + 1683, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1648, + 1712, "[event_organizers_stream_cursor_input]!" ], "where": [ - 1628 + 1692 ] } ], "event_players": [ - 1660, + 1724, { "distinct_on": [ - 1681, + 1745, "[event_players_select_column!]" ], "limit": [ @@ -169469,19 +176514,19 @@ export default { 40 ], "order_by": [ - 1679, + 1743, "[event_players_order_by!]" ], "where": [ - 1669 + 1733 ] } ], "event_players_aggregate": [ - 1661, + 1725, { "distinct_on": [ - 1681, + 1745, "[event_players_select_column!]" ], "limit": [ @@ -169491,48 +176536,48 @@ export default { 40 ], "order_by": [ - 1679, + 1743, "[event_players_order_by!]" ], "where": [ - 1669 + 1733 ] } ], "event_players_by_pk": [ - 1660, + 1724, { "event_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "event_players_stream": [ - 1660, + 1724, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1689, + 1753, "[event_players_stream_cursor_input]!" ], "where": [ - 1669 + 1733 ] } ], "event_teams": [ - 1701, + 1765, { "distinct_on": [ - 1719, + 1783, "[event_teams_select_column!]" ], "limit": [ @@ -169542,19 +176587,19 @@ export default { 40 ], "order_by": [ - 1717, + 1781, "[event_teams_order_by!]" ], "where": [ - 1708 + 1772 ] } ], "event_teams_aggregate": [ - 1702, + 1766, { "distinct_on": [ - 1719, + 1783, "[event_teams_select_column!]" ], "limit": [ @@ -169564,48 +176609,48 @@ export default { 40 ], "order_by": [ - 1717, + 1781, "[event_teams_order_by!]" ], "where": [ - 1708 + 1772 ] } ], "event_teams_by_pk": [ - 1701, + 1765, { "event_id": [ - 5170, + 5458, "uuid!" ], "team_id": [ - 5170, + 5458, "uuid!" ] } ], "event_teams_stream": [ - 1701, + 1765, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1721, + 1785, "[event_teams_stream_cursor_input]!" ], "where": [ - 1708 + 1772 ] } ], "event_tournaments": [ - 1725, + 1789, { "distinct_on": [ - 1743, + 1807, "[event_tournaments_select_column!]" ], "limit": [ @@ -169615,19 +176660,19 @@ export default { 40 ], "order_by": [ - 1741, + 1805, "[event_tournaments_order_by!]" ], "where": [ - 1732 + 1796 ] } ], "event_tournaments_aggregate": [ - 1726, + 1790, { "distinct_on": [ - 1743, + 1807, "[event_tournaments_select_column!]" ], "limit": [ @@ -169637,48 +176682,48 @@ export default { 40 ], "order_by": [ - 1741, + 1805, "[event_tournaments_order_by!]" ], "where": [ - 1732 + 1796 ] } ], "event_tournaments_by_pk": [ - 1725, + 1789, { "event_id": [ - 5170, + 5458, "uuid!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "event_tournaments_stream": [ - 1725, + 1789, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1745, + 1809, "[event_tournaments_stream_cursor_input]!" ], "where": [ - 1732 + 1796 ] } ], "events": [ - 1749, + 1813, { "distinct_on": [ - 1764, + 1828, "[events_select_column!]" ], "limit": [ @@ -169688,19 +176733,19 @@ export default { 40 ], "order_by": [ - 1762, + 1826, "[events_order_by!]" ], "where": [ - 1753 + 1817 ] } ], "events_aggregate": [ - 1750, + 1814, { "distinct_on": [ - 1764, + 1828, "[events_select_column!]" ], "limit": [ @@ -169710,44 +176755,44 @@ export default { 40 ], "order_by": [ - 1762, + 1826, "[events_order_by!]" ], "where": [ - 1753 + 1817 ] } ], "events_by_pk": [ - 1749, + 1813, { "id": [ - 5170, + 5458, "uuid!" ] } ], "events_stream": [ - 1749, + 1813, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1769, + 1833, "[events_stream_cursor_input]!" ], "where": [ - 1753 + 1817 ] } ], "friends": [ - 1779, + 1843, { "distinct_on": [ - 1793, + 1857, "[friends_select_column!]" ], "limit": [ @@ -169757,19 +176802,19 @@ export default { 40 ], "order_by": [ - 1791, + 1855, "[friends_order_by!]" ], "where": [ - 1783 + 1847 ] } ], "friends_aggregate": [ - 1780, + 1844, { "distinct_on": [ - 1793, + 1857, "[friends_select_column!]" ], "limit": [ @@ -169779,48 +176824,474 @@ export default { 40 ], "order_by": [ - 1791, + 1855, "[friends_order_by!]" ], "where": [ - 1783 + 1847 ] } ], "friends_by_pk": [ - 1779, + 1843, { "other_player_steam_id": [ - 264, + 268, "bigint!" ], "player_steam_id": [ - 264, + 268, "bigint!" ] } ], "friends_stream": [ - 1779, + 1843, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1798, + 1862, "[friends_stream_cursor_input]!" ], "where": [ - 1783 + 1847 + ] + } + ], + "game_mode_plugins": [ + 1870, + { + "distinct_on": [ + 1898, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1895, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1882 + ] + } + ], + "game_mode_plugins_aggregate": [ + 1871, + { + "distinct_on": [ + 1898, + "[game_mode_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1895, + "[game_mode_plugins_order_by!]" + ], + "where": [ + 1882 + ] + } + ], + "game_mode_plugins_by_pk": [ + 1870, + { + "game_mode_id": [ + 5458, + "uuid!" + ], + "plugin_slug": [ + 83, + "String!" + ] + } + ], + "game_mode_plugins_stream": [ + 1870, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 1908, + "[game_mode_plugins_stream_cursor_input]!" + ], + "where": [ + 1882 + ] + } + ], + "game_modes": [ + 1920, + { + "distinct_on": [ + 1938, + "[game_modes_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1935, + "[game_modes_order_by!]" + ], + "where": [ + 1924 + ] + } + ], + "game_modes_aggregate": [ + 1921, + { + "distinct_on": [ + 1938, + "[game_modes_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1935, + "[game_modes_order_by!]" + ], + "where": [ + 1924 + ] + } + ], + "game_modes_by_pk": [ + 1920, + { + "id": [ + 5458, + "uuid!" + ] + } + ], + "game_modes_stream": [ + 1920, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 1940, + "[game_modes_stream_cursor_input]!" + ], + "where": [ + 1924 + ] + } + ], + "game_plugin_installs": [ + 1944, + { + "distinct_on": [ + 1956, + "[game_plugin_installs_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1954, + "[game_plugin_installs_order_by!]" + ], + "where": [ + 1947 + ] + } + ], + "game_plugin_installs_aggregate": [ + 1945, + { + "distinct_on": [ + 1956, + "[game_plugin_installs_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1954, + "[game_plugin_installs_order_by!]" + ], + "where": [ + 1947 + ] + } + ], + "game_plugin_installs_by_pk": [ + 1944, + { + "plugin_slug": [ + 83, + "String!" + ] + } + ], + "game_plugin_installs_stream": [ + 1944, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 1958, + "[game_plugin_installs_stream_cursor_input]!" + ], + "where": [ + 1947 + ] + } + ], + "game_plugin_versions": [ + 1962, + { + "distinct_on": [ + 1985, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1983, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 1973 + ] + } + ], + "game_plugin_versions_aggregate": [ + 1963, + { + "distinct_on": [ + 1985, + "[game_plugin_versions_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 1983, + "[game_plugin_versions_order_by!]" + ], + "where": [ + 1973 + ] + } + ], + "game_plugin_versions_by_pk": [ + 1962, + { + "plugin_slug": [ + 83, + "String!" + ], + "runtime": [ + 1262, + "e_plugin_runtimes_enum!" + ], + "version": [ + 83, + "String!" + ] + } + ], + "game_plugin_versions_stream": [ + 1962, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 1995, + "[game_plugin_versions_stream_cursor_input]!" + ], + "where": [ + 1973 + ] + } + ], + "game_plugins": [ + 2007, + { + "distinct_on": [ + 2026, + "[game_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2023, + "[game_plugins_order_by!]" + ], + "where": [ + 2012 + ] + } + ], + "game_plugins_aggregate": [ + 2008, + { + "distinct_on": [ + 2026, + "[game_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2023, + "[game_plugins_order_by!]" + ], + "where": [ + 2012 + ] + } + ], + "game_plugins_by_pk": [ + 2007, + { + "slug": [ + 83, + "String!" + ] + } + ], + "game_plugins_stream": [ + 2007, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 2031, + "[game_plugins_stream_cursor_input]!" + ], + "where": [ + 2012 + ] + } + ], + "game_server_node_plugins": [ + 2039, + { + "distinct_on": [ + 2059, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2057, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2048 + ] + } + ], + "game_server_node_plugins_aggregate": [ + 2040, + { + "distinct_on": [ + 2059, + "[game_server_node_plugins_select_column!]" + ], + "limit": [ + 40 + ], + "offset": [ + 40 + ], + "order_by": [ + 2057, + "[game_server_node_plugins_order_by!]" + ], + "where": [ + 2048 + ] + } + ], + "game_server_node_plugins_by_pk": [ + 2039, + { + "id": [ + 5458, + "uuid!" + ] + } + ], + "game_server_node_plugins_stream": [ + 2039, + { + "batch_size": [ + 40, + "Int!" + ], + "cursor": [ + 2063, + "[game_server_node_plugins_stream_cursor_input]!" + ], + "where": [ + 2048 ] } ], "game_server_nodes": [ - 1806, + 2067, { "distinct_on": [ - 1835, + 2096, "[game_server_nodes_select_column!]" ], "limit": [ @@ -169830,19 +177301,19 @@ export default { 40 ], "order_by": [ - 1832, + 2093, "[game_server_nodes_order_by!]" ], "where": [ - 1818 + 2079 ] } ], "game_server_nodes_aggregate": [ - 1807, + 2068, { "distinct_on": [ - 1835, + 2096, "[game_server_nodes_select_column!]" ], "limit": [ @@ -169852,44 +177323,44 @@ export default { 40 ], "order_by": [ - 1832, + 2093, "[game_server_nodes_order_by!]" ], "where": [ - 1818 + 2079 ] } ], "game_server_nodes_by_pk": [ - 1806, + 2067, { "id": [ - 80, + 83, "String!" ] } ], "game_server_nodes_stream": [ - 1806, + 2067, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1845, + 2106, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1818 + 2079 ] } ], "game_versions": [ - 1857, + 2118, { "distinct_on": [ - 1877, + 2138, "[game_versions_select_column!]" ], "limit": [ @@ -169899,19 +177370,19 @@ export default { 40 ], "order_by": [ - 1874, + 2135, "[game_versions_order_by!]" ], "where": [ - 1862 + 2123 ] } ], "game_versions_aggregate": [ - 1858, + 2119, { "distinct_on": [ - 1877, + 2138, "[game_versions_select_column!]" ], "limit": [ @@ -169921,16 +177392,16 @@ export default { 40 ], "order_by": [ - 1874, + 2135, "[game_versions_order_by!]" ], "where": [ - 1862 + 2123 ] } ], "game_versions_by_pk": [ - 1857, + 2118, { "build_id": [ 40, @@ -169939,26 +177410,26 @@ export default { } ], "game_versions_stream": [ - 1857, + 2118, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1882, + 2143, "[game_versions_stream_cursor_input]!" ], "where": [ - 1862 + 2123 ] } ], "gamedata_signature_validations": [ - 1890, + 2151, { "distinct_on": [ - 1909, + 2170, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -169968,19 +177439,19 @@ export default { 40 ], "order_by": [ - 1906, + 2167, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1895 + 2156 ] } ], "gamedata_signature_validations_aggregate": [ - 1891, + 2152, { "distinct_on": [ - 1909, + 2170, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -169990,48 +177461,48 @@ export default { 40 ], "order_by": [ - 1906, + 2167, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1895 + 2156 ] } ], "gamedata_signature_validations_by_pk": [ - 1890, + 2151, { "id": [ - 5170, + 5458, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1890, + 2151, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1914, + 2175, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1895 + 2156 ] } ], "get_event_leaderboard": [ - 1933, + 2194, { "args": [ - 1922, + 2183, "get_event_leaderboard_args!" ], "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -170041,23 +177512,23 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "get_event_leaderboard_aggregate": [ - 1934, + 2195, { "args": [ - 1922, + 2183, "get_event_leaderboard_args!" ], "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -170067,23 +177538,23 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "get_leaderboard": [ - 1933, + 2194, { "args": [ - 1923, + 2184, "get_leaderboard_args!" ], "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -170093,23 +177564,23 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "get_leaderboard_aggregate": [ - 1934, + 2195, { "args": [ - 1923, + 2184, "get_leaderboard_args!" ], "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -170119,23 +177590,23 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "get_league_season_leaderboard": [ - 1933, + 2194, { "args": [ - 1924, + 2185, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -170145,23 +177616,23 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "get_league_season_leaderboard_aggregate": [ - 1934, + 2195, { "args": [ - 1924, + 2185, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -170171,23 +177642,23 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "get_player_leaderboard_rank": [ - 3535, + 3818, { "args": [ - 1925, + 2186, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3546, + 3829, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -170197,23 +177668,23 @@ export default { 40 ], "order_by": [ - 3545, + 3828, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3822 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3536, + 3819, { "args": [ - 1925, + 2186, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3546, + 3829, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -170223,19 +177694,19 @@ export default { 40 ], "order_by": [ - 3545, + 3828, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3822 ] } ], "leaderboard_entries": [ - 1933, + 2194, { "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -170245,19 +177716,19 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "leaderboard_entries_aggregate": [ - 1934, + 2195, { "distinct_on": [ - 1944, + 2205, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -170267,35 +177738,35 @@ export default { 40 ], "order_by": [ - 1943, + 2204, "[leaderboard_entries_order_by!]" ], "where": [ - 1937 + 2198 ] } ], "leaderboard_entries_stream": [ - 1933, + 2194, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1949, + 2210, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1937 + 2198 ] } ], "league_divisions": [ - 1957, + 2218, { "distinct_on": [ - 1972, + 2233, "[league_divisions_select_column!]" ], "limit": [ @@ -170305,19 +177776,19 @@ export default { 40 ], "order_by": [ - 1970, + 2231, "[league_divisions_order_by!]" ], "where": [ - 1961 + 2222 ] } ], "league_divisions_aggregate": [ - 1958, + 2219, { "distinct_on": [ - 1972, + 2233, "[league_divisions_select_column!]" ], "limit": [ @@ -170327,44 +177798,44 @@ export default { 40 ], "order_by": [ - 1970, + 2231, "[league_divisions_order_by!]" ], "where": [ - 1961 + 2222 ] } ], "league_divisions_by_pk": [ - 1957, + 2218, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_divisions_stream": [ - 1957, + 2218, { "batch_size": [ 40, "Int!" ], "cursor": [ - 1977, + 2238, "[league_divisions_stream_cursor_input]!" ], "where": [ - 1961 + 2222 ] } ], "league_match_weeks": [ - 1985, + 2246, { "distinct_on": [ - 2006, + 2267, "[league_match_weeks_select_column!]" ], "limit": [ @@ -170374,19 +177845,19 @@ export default { 40 ], "order_by": [ - 2004, + 2265, "[league_match_weeks_order_by!]" ], "where": [ - 1994 + 2255 ] } ], "league_match_weeks_aggregate": [ - 1986, + 2247, { "distinct_on": [ - 2006, + 2267, "[league_match_weeks_select_column!]" ], "limit": [ @@ -170396,44 +177867,44 @@ export default { 40 ], "order_by": [ - 2004, + 2265, "[league_match_weeks_order_by!]" ], "where": [ - 1994 + 2255 ] } ], "league_match_weeks_by_pk": [ - 1985, + 2246, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_match_weeks_stream": [ - 1985, + 2246, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2014, + 2275, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 1994 + 2255 ] } ], "league_relegation_playoffs": [ - 2026, + 2287, { "distinct_on": [ - 2047, + 2308, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -170443,19 +177914,19 @@ export default { 40 ], "order_by": [ - 2045, + 2306, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2035 + 2296 ] } ], "league_relegation_playoffs_aggregate": [ - 2027, + 2288, { "distinct_on": [ - 2047, + 2308, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -170465,44 +177936,44 @@ export default { 40 ], "order_by": [ - 2045, + 2306, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2035 + 2296 ] } ], "league_relegation_playoffs_by_pk": [ - 2026, + 2287, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 2026, + 2287, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2055, + 2316, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 2035 + 2296 ] } ], "league_scheduling_proposals": [ - 2067, + 2328, { "distinct_on": [ - 2088, + 2349, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -170512,19 +177983,19 @@ export default { 40 ], "order_by": [ - 2086, + 2347, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2076 + 2337 ] } ], "league_scheduling_proposals_aggregate": [ - 2068, + 2329, { "distinct_on": [ - 2088, + 2349, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -170534,44 +178005,44 @@ export default { 40 ], "order_by": [ - 2086, + 2347, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2076 + 2337 ] } ], "league_scheduling_proposals_by_pk": [ - 2067, + 2328, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 2067, + 2328, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2096, + 2357, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 2076 + 2337 ] } ], "league_season_divisions": [ - 2108, + 2369, { "distinct_on": [ - 2127, + 2388, "[league_season_divisions_select_column!]" ], "limit": [ @@ -170581,19 +178052,19 @@ export default { 40 ], "order_by": [ - 2125, + 2386, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2376 ] } ], "league_season_divisions_aggregate": [ - 2109, + 2370, { "distinct_on": [ - 2127, + 2388, "[league_season_divisions_select_column!]" ], "limit": [ @@ -170603,44 +178074,44 @@ export default { 40 ], "order_by": [ - 2125, + 2386, "[league_season_divisions_order_by!]" ], "where": [ - 2115 + 2376 ] } ], "league_season_divisions_by_pk": [ - 2108, + 2369, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_season_divisions_stream": [ - 2108, + 2369, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2129, + 2390, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 2115 + 2376 ] } ], "league_seasons": [ - 2133, + 2394, { "distinct_on": [ - 2153, + 2414, "[league_seasons_select_column!]" ], "limit": [ @@ -170650,19 +178121,19 @@ export default { 40 ], "order_by": [ - 2150, + 2411, "[league_seasons_order_by!]" ], "where": [ - 2138 + 2399 ] } ], "league_seasons_aggregate": [ - 2134, + 2395, { "distinct_on": [ - 2153, + 2414, "[league_seasons_select_column!]" ], "limit": [ @@ -170672,44 +178143,44 @@ export default { 40 ], "order_by": [ - 2150, + 2411, "[league_seasons_order_by!]" ], "where": [ - 2138 + 2399 ] } ], "league_seasons_by_pk": [ - 2133, + 2394, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_seasons_stream": [ - 2133, + 2394, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2158, + 2419, "[league_seasons_stream_cursor_input]!" ], "where": [ - 2138 + 2399 ] } ], "league_team_movements": [ - 2166, + 2427, { "distinct_on": [ - 2187, + 2448, "[league_team_movements_select_column!]" ], "limit": [ @@ -170719,19 +178190,19 @@ export default { 40 ], "order_by": [ - 2185, + 2446, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2436 ] } ], "league_team_movements_aggregate": [ - 2167, + 2428, { "distinct_on": [ - 2187, + 2448, "[league_team_movements_select_column!]" ], "limit": [ @@ -170741,44 +178212,44 @@ export default { 40 ], "order_by": [ - 2185, + 2446, "[league_team_movements_order_by!]" ], "where": [ - 2175 + 2436 ] } ], "league_team_movements_by_pk": [ - 2166, + 2427, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_team_movements_stream": [ - 2166, + 2427, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2195, + 2456, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 2175 + 2436 ] } ], "league_team_rosters": [ - 2207, + 2468, { "distinct_on": [ - 2228, + 2489, "[league_team_rosters_select_column!]" ], "limit": [ @@ -170788,19 +178259,19 @@ export default { 40 ], "order_by": [ - 2226, + 2487, "[league_team_rosters_order_by!]" ], "where": [ - 2216 + 2477 ] } ], "league_team_rosters_aggregate": [ - 2208, + 2469, { "distinct_on": [ - 2228, + 2489, "[league_team_rosters_select_column!]" ], "limit": [ @@ -170810,48 +178281,48 @@ export default { 40 ], "order_by": [ - 2226, + 2487, "[league_team_rosters_order_by!]" ], "where": [ - 2216 + 2477 ] } ], "league_team_rosters_by_pk": [ - 2207, + 2468, { "league_team_season_id": [ - 5170, + 5458, "uuid!" ], "player_steam_id": [ - 264, + 268, "bigint!" ] } ], "league_team_rosters_stream": [ - 2207, + 2468, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2236, + 2497, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 2216 + 2477 ] } ], "league_team_seasons": [ - 2248, + 2509, { "distinct_on": [ - 2270, + 2531, "[league_team_seasons_select_column!]" ], "limit": [ @@ -170861,19 +178332,19 @@ export default { 40 ], "order_by": [ - 2268, + 2529, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2518 ] } ], "league_team_seasons_aggregate": [ - 2249, + 2510, { "distinct_on": [ - 2270, + 2531, "[league_team_seasons_select_column!]" ], "limit": [ @@ -170883,44 +178354,44 @@ export default { 40 ], "order_by": [ - 2268, + 2529, "[league_team_seasons_order_by!]" ], "where": [ - 2257 + 2518 ] } ], "league_team_seasons_by_pk": [ - 2248, + 2509, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_team_seasons_stream": [ - 2248, + 2509, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2278, + 2539, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 2257 + 2518 ] } ], "league_teams": [ - 2290, + 2551, { "distinct_on": [ - 2303, + 2564, "[league_teams_select_column!]" ], "limit": [ @@ -170930,19 +178401,19 @@ export default { 40 ], "order_by": [ - 2301, + 2562, "[league_teams_order_by!]" ], "where": [ - 2293 + 2554 ] } ], "league_teams_aggregate": [ - 2291, + 2552, { "distinct_on": [ - 2303, + 2564, "[league_teams_select_column!]" ], "limit": [ @@ -170952,44 +178423,44 @@ export default { 40 ], "order_by": [ - 2301, + 2562, "[league_teams_order_by!]" ], "where": [ - 2293 + 2554 ] } ], "league_teams_by_pk": [ - 2290, + 2551, { "id": [ - 5170, + 5458, "uuid!" ] } ], "league_teams_stream": [ - 2290, + 2551, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2305, + 2566, "[league_teams_stream_cursor_input]!" ], "where": [ - 2293 + 2554 ] } ], "lobbies": [ - 2309, + 2570, { "distinct_on": [ - 2322, + 2583, "[lobbies_select_column!]" ], "limit": [ @@ -170999,19 +178470,19 @@ export default { 40 ], "order_by": [ - 2320, + 2581, "[lobbies_order_by!]" ], "where": [ - 2312 + 2573 ] } ], "lobbies_aggregate": [ - 2310, + 2571, { "distinct_on": [ - 2322, + 2583, "[lobbies_select_column!]" ], "limit": [ @@ -171021,44 +178492,44 @@ export default { 40 ], "order_by": [ - 2320, + 2581, "[lobbies_order_by!]" ], "where": [ - 2312 + 2573 ] } ], "lobbies_by_pk": [ - 2309, + 2570, { "id": [ - 5170, + 5458, "uuid!" ] } ], "lobbies_stream": [ - 2309, + 2570, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2324, + 2585, "[lobbies_stream_cursor_input]!" ], "where": [ - 2312 + 2573 ] } ], "lobby_players": [ - 2328, + 2589, { "distinct_on": [ - 2351, + 2612, "[lobby_players_select_column!]" ], "limit": [ @@ -171068,19 +178539,19 @@ export default { 40 ], "order_by": [ - 2349, + 2610, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2600 ] } ], "lobby_players_aggregate": [ - 2329, + 2590, { "distinct_on": [ - 2351, + 2612, "[lobby_players_select_column!]" ], "limit": [ @@ -171090,48 +178561,48 @@ export default { 40 ], "order_by": [ - 2349, + 2610, "[lobby_players_order_by!]" ], "where": [ - 2339 + 2600 ] } ], "lobby_players_by_pk": [ - 2328, + 2589, { "lobby_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "lobby_players_stream": [ - 2328, + 2589, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2361, + 2622, "[lobby_players_stream_cursor_input]!" ], "where": [ - 2339 + 2600 ] } ], "map_pools": [ - 2373, + 2634, { "distinct_on": [ - 2386, + 2647, "[map_pools_select_column!]" ], "limit": [ @@ -171141,19 +178612,19 @@ export default { 40 ], "order_by": [ - 2384, + 2645, "[map_pools_order_by!]" ], "where": [ - 2376 + 2637 ] } ], "map_pools_aggregate": [ - 2374, + 2635, { "distinct_on": [ - 2386, + 2647, "[map_pools_select_column!]" ], "limit": [ @@ -171163,44 +178634,44 @@ export default { 40 ], "order_by": [ - 2384, + 2645, "[map_pools_order_by!]" ], "where": [ - 2376 + 2637 ] } ], "map_pools_by_pk": [ - 2373, + 2634, { "id": [ - 5170, + 5458, "uuid!" ] } ], "map_pools_stream": [ - 2373, + 2634, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2388, + 2649, "[map_pools_stream_cursor_input]!" ], "where": [ - 2376 + 2637 ] } ], "maps": [ - 2392, + 2653, { "distinct_on": [ - 2413, + 2674, "[maps_select_column!]" ], "limit": [ @@ -171210,19 +178681,19 @@ export default { 40 ], "order_by": [ - 2411, + 2672, "[maps_order_by!]" ], "where": [ - 2401 + 2662 ] } ], "maps_aggregate": [ - 2393, + 2654, { "distinct_on": [ - 2413, + 2674, "[maps_select_column!]" ], "limit": [ @@ -171232,44 +178703,44 @@ export default { 40 ], "order_by": [ - 2411, + 2672, "[maps_order_by!]" ], "where": [ - 2401 + 2662 ] } ], "maps_by_pk": [ - 2392, + 2653, { "id": [ - 5170, + 5458, "uuid!" ] } ], "maps_stream": [ - 2392, + 2653, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2417, + 2678, "[maps_stream_cursor_input]!" ], "where": [ - 2401 + 2662 ] } ], "match_clips": [ - 2421, + 2682, { "distinct_on": [ - 2443, + 2704, "[match_clips_select_column!]" ], "limit": [ @@ -171279,19 +178750,19 @@ export default { 40 ], "order_by": [ - 2441, + 2702, "[match_clips_order_by!]" ], "where": [ - 2430 + 2691 ] } ], "match_clips_aggregate": [ - 2422, + 2683, { "distinct_on": [ - 2443, + 2704, "[match_clips_select_column!]" ], "limit": [ @@ -171301,44 +178772,44 @@ export default { 40 ], "order_by": [ - 2441, + 2702, "[match_clips_order_by!]" ], "where": [ - 2430 + 2691 ] } ], "match_clips_by_pk": [ - 2421, + 2682, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_clips_stream": [ - 2421, + 2682, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2451, + 2712, "[match_clips_stream_cursor_input]!" ], "where": [ - 2430 + 2691 ] } ], "match_demo_sessions": [ - 2463, + 2724, { "distinct_on": [ - 2489, + 2750, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -171348,19 +178819,19 @@ export default { 40 ], "order_by": [ - 2486, + 2747, "[match_demo_sessions_order_by!]" ], "where": [ - 2473 + 2734 ] } ], "match_demo_sessions_aggregate": [ - 2464, + 2725, { "distinct_on": [ - 2489, + 2750, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -171370,44 +178841,44 @@ export default { 40 ], "order_by": [ - 2486, + 2747, "[match_demo_sessions_order_by!]" ], "where": [ - 2473 + 2734 ] } ], "match_demo_sessions_by_pk": [ - 2463, + 2724, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_demo_sessions_stream": [ - 2463, + 2724, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2497, + 2758, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 2473 + 2734 ] } ], "match_lineup_players": [ - 2509, + 2770, { "distinct_on": [ - 2532, + 2793, "[match_lineup_players_select_column!]" ], "limit": [ @@ -171417,19 +178888,19 @@ export default { 40 ], "order_by": [ - 2530, + 2791, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2781 ] } ], "match_lineup_players_aggregate": [ - 2510, + 2771, { "distinct_on": [ - 2532, + 2793, "[match_lineup_players_select_column!]" ], "limit": [ @@ -171439,44 +178910,44 @@ export default { 40 ], "order_by": [ - 2530, + 2791, "[match_lineup_players_order_by!]" ], "where": [ - 2520 + 2781 ] } ], "match_lineup_players_by_pk": [ - 2509, + 2770, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_lineup_players_stream": [ - 2509, + 2770, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2542, + 2803, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 2520 + 2781 ] } ], "match_lineups": [ - 2554, + 2815, { "distinct_on": [ - 2576, + 2837, "[match_lineups_select_column!]" ], "limit": [ @@ -171486,19 +178957,19 @@ export default { 40 ], "order_by": [ - 2574, + 2835, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2824 ] } ], "match_lineups_aggregate": [ - 2555, + 2816, { "distinct_on": [ - 2576, + 2837, "[match_lineups_select_column!]" ], "limit": [ @@ -171508,44 +178979,44 @@ export default { 40 ], "order_by": [ - 2574, + 2835, "[match_lineups_order_by!]" ], "where": [ - 2563 + 2824 ] } ], "match_lineups_by_pk": [ - 2554, + 2815, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_lineups_stream": [ - 2554, + 2815, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2584, + 2845, "[match_lineups_stream_cursor_input]!" ], "where": [ - 2563 + 2824 ] } ], "match_map_demos": [ - 2596, + 2857, { "distinct_on": [ - 2625, + 2886, "[match_map_demos_select_column!]" ], "limit": [ @@ -171555,19 +179026,19 @@ export default { 40 ], "order_by": [ - 2622, + 2883, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2869 ] } ], "match_map_demos_aggregate": [ - 2597, + 2858, { "distinct_on": [ - 2625, + 2886, "[match_map_demos_select_column!]" ], "limit": [ @@ -171577,44 +179048,44 @@ export default { 40 ], "order_by": [ - 2622, + 2883, "[match_map_demos_order_by!]" ], "where": [ - 2608 + 2869 ] } ], "match_map_demos_by_pk": [ - 2596, + 2857, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_map_demos_stream": [ - 2596, + 2857, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2635, + 2896, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2608 + 2869 ] } ], "match_map_rounds": [ - 2647, + 2908, { "distinct_on": [ - 2668, + 2929, "[match_map_rounds_select_column!]" ], "limit": [ @@ -171624,19 +179095,19 @@ export default { 40 ], "order_by": [ - 2666, + 2927, "[match_map_rounds_order_by!]" ], "where": [ - 2656 + 2917 ] } ], "match_map_rounds_aggregate": [ - 2648, + 2909, { "distinct_on": [ - 2668, + 2929, "[match_map_rounds_select_column!]" ], "limit": [ @@ -171646,44 +179117,44 @@ export default { 40 ], "order_by": [ - 2666, + 2927, "[match_map_rounds_order_by!]" ], "where": [ - 2656 + 2917 ] } ], "match_map_rounds_by_pk": [ - 2647, + 2908, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_map_rounds_stream": [ - 2647, + 2908, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2676, + 2937, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2656 + 2917 ] } ], "match_map_veto_picks": [ - 2688, + 2949, { "distinct_on": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -171693,19 +179164,19 @@ export default { 40 ], "order_by": [ - 2706, + 2967, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2958 ] } ], "match_map_veto_picks_aggregate": [ - 2689, + 2950, { "distinct_on": [ - 2708, + 2969, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -171715,44 +179186,44 @@ export default { 40 ], "order_by": [ - 2706, + 2967, "[match_map_veto_picks_order_by!]" ], "where": [ - 2697 + 2958 ] } ], "match_map_veto_picks_by_pk": [ - 2688, + 2949, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2688, + 2949, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2712, + 2973, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2697 + 2958 ] } ], "match_maps": [ - 2716, + 2977, { "distinct_on": [ - 2738, + 2999, "[match_maps_select_column!]" ], "limit": [ @@ -171762,19 +179233,19 @@ export default { 40 ], "order_by": [ - 2736, + 2997, "[match_maps_order_by!]" ], "where": [ - 2725 + 2986 ] } ], "match_maps_aggregate": [ - 2717, + 2978, { "distinct_on": [ - 2738, + 2999, "[match_maps_select_column!]" ], "limit": [ @@ -171784,44 +179255,44 @@ export default { 40 ], "order_by": [ - 2736, + 2997, "[match_maps_order_by!]" ], "where": [ - 2725 + 2986 ] } ], "match_maps_by_pk": [ - 2716, + 2977, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_maps_stream": [ - 2716, + 2977, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2746, + 3007, "[match_maps_stream_cursor_input]!" ], "where": [ - 2725 + 2986 ] } ], "match_options": [ - 2758, + 3019, { "distinct_on": [ - 2773, + 3043, "[match_options_select_column!]" ], "limit": [ @@ -171831,19 +179302,19 @@ export default { 40 ], "order_by": [ - 2771, + 3041, "[match_options_order_by!]" ], "where": [ - 2762 + 3030 ] } ], "match_options_aggregate": [ - 2759, + 3020, { "distinct_on": [ - 2773, + 3043, "[match_options_select_column!]" ], "limit": [ @@ -171853,44 +179324,44 @@ export default { 40 ], "order_by": [ - 2771, + 3041, "[match_options_order_by!]" ], "where": [ - 2762 + 3030 ] } ], "match_options_by_pk": [ - 2758, + 3019, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_options_stream": [ - 2758, + 3019, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2778, + 3053, "[match_options_stream_cursor_input]!" ], "where": [ - 2762 + 3030 ] } ], "match_region_veto_picks": [ - 2786, + 3065, { "distinct_on": [ - 2806, + 3085, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -171900,19 +179371,19 @@ export default { 40 ], "order_by": [ - 2804, + 3083, "[match_region_veto_picks_order_by!]" ], "where": [ - 2795 + 3074 ] } ], "match_region_veto_picks_aggregate": [ - 2787, + 3066, { "distinct_on": [ - 2806, + 3085, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -171922,44 +179393,44 @@ export default { 40 ], "order_by": [ - 2804, + 3083, "[match_region_veto_picks_order_by!]" ], "where": [ - 2795 + 3074 ] } ], "match_region_veto_picks_by_pk": [ - 2786, + 3065, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2786, + 3065, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2810, + 3089, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2795 + 3074 ] } ], "match_streams": [ - 2814, + 3093, { "distinct_on": [ - 2842, + 3121, "[match_streams_select_column!]" ], "limit": [ @@ -171969,19 +179440,19 @@ export default { 40 ], "order_by": [ - 2839, + 3118, "[match_streams_order_by!]" ], "where": [ - 2826 + 3105 ] } ], "match_streams_aggregate": [ - 2815, + 3094, { "distinct_on": [ - 2842, + 3121, "[match_streams_select_column!]" ], "limit": [ @@ -171991,44 +179462,44 @@ export default { 40 ], "order_by": [ - 2839, + 3118, "[match_streams_order_by!]" ], "where": [ - 2826 + 3105 ] } ], "match_streams_by_pk": [ - 2814, + 3093, { "id": [ - 5170, + 5458, "uuid!" ] } ], "match_streams_stream": [ - 2814, + 3093, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2852, + 3131, "[match_streams_stream_cursor_input]!" ], "where": [ - 2826 + 3105 ] } ], "match_type_cfgs": [ - 2864, + 3143, { "distinct_on": [ - 2876, + 3155, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -172038,19 +179509,19 @@ export default { 40 ], "order_by": [ - 2874, + 3153, "[match_type_cfgs_order_by!]" ], "where": [ - 2867 + 3146 ] } ], "match_type_cfgs_aggregate": [ - 2865, + 3144, { "distinct_on": [ - 2876, + 3155, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -172060,44 +179531,44 @@ export default { 40 ], "order_by": [ - 2874, + 3153, "[match_type_cfgs_order_by!]" ], "where": [ - 2867 + 3146 ] } ], "match_type_cfgs_by_pk": [ - 2864, + 3143, { "type": [ - 828, + 832, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 2864, + 3143, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2878, + 3157, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2867 + 3146 ] } ], "matches": [ - 2882, + 3161, { "distinct_on": [ - 2904, + 3185, "[matches_select_column!]" ], "limit": [ @@ -172107,19 +179578,19 @@ export default { 40 ], "order_by": [ - 2902, + 3183, "[matches_order_by!]" ], "where": [ - 2891 + 3172 ] } ], "matches_aggregate": [ - 2883, + 3162, { "distinct_on": [ - 2904, + 3185, "[matches_select_column!]" ], "limit": [ @@ -172129,44 +179600,44 @@ export default { 40 ], "order_by": [ - 2902, + 3183, "[matches_order_by!]" ], "where": [ - 2891 + 3172 ] } ], "matches_by_pk": [ - 2882, + 3161, { "id": [ - 5170, + 5458, "uuid!" ] } ], "matches_stream": [ - 2882, + 3161, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2912, + 3195, "[matches_stream_cursor_input]!" ], "where": [ - 2891 + 3172 ] } ], "migration_hashes_hashes": [ - 2924, + 3207, { "distinct_on": [ - 2936, + 3219, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -172176,19 +179647,19 @@ export default { 40 ], "order_by": [ - 2934, + 3217, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2927 + 3210 ] } ], "migration_hashes_hashes_aggregate": [ - 2925, + 3208, { "distinct_on": [ - 2936, + 3219, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -172198,44 +179669,44 @@ export default { 40 ], "order_by": [ - 2934, + 3217, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2927 + 3210 ] } ], "migration_hashes_hashes_by_pk": [ - 2924, + 3207, { "name": [ - 80, + 83, "String!" ] } ], "migration_hashes_hashes_stream": [ - 2924, + 3207, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2938, + 3221, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2927 + 3210 ] } ], "my_friends": [ - 2942, + 3225, { "distinct_on": [ - 2967, + 3250, "[my_friends_select_column!]" ], "limit": [ @@ -172245,19 +179716,19 @@ export default { 40 ], "order_by": [ - 2965, + 3248, "[my_friends_order_by!]" ], "where": [ - 2954 + 3237 ] } ], "my_friends_aggregate": [ - 2943, + 3226, { "distinct_on": [ - 2967, + 3250, "[my_friends_select_column!]" ], "limit": [ @@ -172267,35 +179738,35 @@ export default { 40 ], "order_by": [ - 2965, + 3248, "[my_friends_order_by!]" ], "where": [ - 2954 + 3237 ] } ], "my_friends_stream": [ - 2942, + 3225, { "batch_size": [ 40, "Int!" ], "cursor": [ - 2977, + 3260, "[my_friends_stream_cursor_input]!" ], "where": [ - 2954 + 3237 ] } ], "news_articles": [ - 2988, + 3271, { "distinct_on": [ - 3002, + 3285, "[news_articles_select_column!]" ], "limit": [ @@ -172305,19 +179776,19 @@ export default { 40 ], "order_by": [ - 3000, + 3283, "[news_articles_order_by!]" ], "where": [ - 2992 + 3275 ] } ], "news_articles_aggregate": [ - 2989, + 3272, { "distinct_on": [ - 3002, + 3285, "[news_articles_select_column!]" ], "limit": [ @@ -172327,44 +179798,44 @@ export default { 40 ], "order_by": [ - 3000, + 3283, "[news_articles_order_by!]" ], "where": [ - 2992 + 3275 ] } ], "news_articles_by_pk": [ - 2988, + 3271, { "id": [ - 5170, + 5458, "uuid!" ] } ], "news_articles_stream": [ - 2988, + 3271, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3007, + 3290, "[news_articles_stream_cursor_input]!" ], "where": [ - 2992 + 3275 ] } ], "notification_preferences": [ - 3015, + 3298, { "distinct_on": [ - 3029, + 3312, "[notification_preferences_select_column!]" ], "limit": [ @@ -172374,19 +179845,19 @@ export default { 40 ], "order_by": [ - 3027, + 3310, "[notification_preferences_order_by!]" ], "where": [ - 3019 + 3302 ] } ], "notification_preferences_aggregate": [ - 3016, + 3299, { "distinct_on": [ - 3029, + 3312, "[notification_preferences_select_column!]" ], "limit": [ @@ -172396,52 +179867,52 @@ export default { 40 ], "order_by": [ - 3027, + 3310, "[notification_preferences_order_by!]" ], "where": [ - 3019 + 3302 ] } ], "notification_preferences_by_pk": [ - 3015, + 3298, { "channel": [ - 80, + 83, "String!" ], "key": [ - 80, + 83, "String!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "notification_preferences_stream": [ - 3015, + 3298, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3034, + 3317, "[notification_preferences_stream_cursor_input]!" ], "where": [ - 3019 + 3302 ] } ], "notifications": [ - 3042, + 3325, { "distinct_on": [ - 3070, + 3353, "[notifications_select_column!]" ], "limit": [ @@ -172451,19 +179922,19 @@ export default { 40 ], "order_by": [ - 3067, + 3350, "[notifications_order_by!]" ], "where": [ - 3054 + 3337 ] } ], "notifications_aggregate": [ - 3043, + 3326, { "distinct_on": [ - 3070, + 3353, "[notifications_select_column!]" ], "limit": [ @@ -172473,44 +179944,44 @@ export default { 40 ], "order_by": [ - 3067, + 3350, "[notifications_order_by!]" ], "where": [ - 3054 + 3337 ] } ], "notifications_by_pk": [ - 3042, + 3325, { "id": [ - 5170, + 5458, "uuid!" ] } ], "notifications_stream": [ - 3042, + 3325, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3080, + 3363, "[notifications_stream_cursor_input]!" ], "where": [ - 3054 + 3337 ] } ], "pending_match_import_players": [ - 3095, + 3378, { "distinct_on": [ - 3116, + 3399, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -172520,19 +179991,19 @@ export default { 40 ], "order_by": [ - 3114, + 3397, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3387 ] } ], "pending_match_import_players_aggregate": [ - 3096, + 3379, { "distinct_on": [ - 3116, + 3399, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -172542,48 +180013,48 @@ export default { 40 ], "order_by": [ - 3114, + 3397, "[pending_match_import_players_order_by!]" ], "where": [ - 3104 + 3387 ] } ], "pending_match_import_players_by_pk": [ - 3095, + 3378, { "steam_id": [ - 264, + 268, "bigint!" ], "valve_match_id": [ - 3092, + 3375, "numeric!" ] } ], "pending_match_import_players_stream": [ - 3095, + 3378, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3124, + 3407, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 3104 + 3387 ] } ], "pending_match_imports": [ - 3136, + 3419, { "distinct_on": [ - 3151, + 3434, "[pending_match_imports_select_column!]" ], "limit": [ @@ -172593,19 +180064,19 @@ export default { 40 ], "order_by": [ - 3149, + 3432, "[pending_match_imports_order_by!]" ], "where": [ - 3140 + 3423 ] } ], "pending_match_imports_aggregate": [ - 3137, + 3420, { "distinct_on": [ - 3151, + 3434, "[pending_match_imports_select_column!]" ], "limit": [ @@ -172615,44 +180086,44 @@ export default { 40 ], "order_by": [ - 3149, + 3432, "[pending_match_imports_order_by!]" ], "where": [ - 3140 + 3423 ] } ], "pending_match_imports_by_pk": [ - 3136, + 3419, { "valve_match_id": [ - 3092, + 3375, "numeric!" ] } ], "pending_match_imports_stream": [ - 3136, + 3419, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3156, + 3439, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 3140 + 3423 ] } ], "player_aim_stats_demo": [ - 3164, + 3447, { "distinct_on": [ - 3178, + 3461, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -172662,19 +180133,19 @@ export default { 40 ], "order_by": [ - 3176, + 3459, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3168 + 3451 ] } ], "player_aim_stats_demo_aggregate": [ - 3165, + 3448, { "distinct_on": [ - 3178, + 3461, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -172684,48 +180155,48 @@ export default { 40 ], "order_by": [ - 3176, + 3459, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3168 + 3451 ] } ], "player_aim_stats_demo_by_pk": [ - 3164, + 3447, { "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 3164, + 3447, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3183, + 3466, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 3168 + 3451 ] } ], "player_aim_weapon_stats": [ - 3191, + 3474, { "distinct_on": [ - 3212, + 3495, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -172735,19 +180206,19 @@ export default { 40 ], "order_by": [ - 3210, + 3493, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3200 + 3483 ] } ], "player_aim_weapon_stats_aggregate": [ - 3192, + 3475, { "distinct_on": [ - 3212, + 3495, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -172757,52 +180228,52 @@ export default { 40 ], "order_by": [ - 3210, + 3493, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3200 + 3483 ] } ], "player_aim_weapon_stats_by_pk": [ - 3191, + 3474, { "match_map_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ], "weapon_class": [ - 80, + 83, "String!" ] } ], "player_aim_weapon_stats_stream": [ - 3191, + 3474, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3220, + 3503, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 3200 + 3483 ] } ], "player_assists": [ - 3232, + 3515, { "distinct_on": [ - 3255, + 3538, "[player_assists_select_column!]" ], "limit": [ @@ -172812,19 +180283,19 @@ export default { 40 ], "order_by": [ - 3253, + 3536, "[player_assists_order_by!]" ], "where": [ - 3243 + 3526 ] } ], "player_assists_aggregate": [ - 3233, + 3516, { "distinct_on": [ - 3255, + 3538, "[player_assists_select_column!]" ], "limit": [ @@ -172834,56 +180305,56 @@ export default { 40 ], "order_by": [ - 3253, + 3536, "[player_assists_order_by!]" ], "where": [ - 3243 + 3526 ] } ], "player_assists_by_pk": [ - 3232, + 3515, { "attacked_steam_id": [ - 264, + 268, "bigint!" ], "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "player_assists_stream": [ - 3232, + 3515, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3265, + 3548, "[player_assists_stream_cursor_input]!" ], "where": [ - 3243 + 3526 ] } ], "player_career_stats_v": [ - 3277, + 3560, { "distinct_on": [ - 3285, + 3568, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -172893,19 +180364,19 @@ export default { 40 ], "order_by": [ - 3284, + 3567, "[player_career_stats_v_order_by!]" ], "where": [ - 3281 + 3564 ] } ], "player_career_stats_v_aggregate": [ - 3278, + 3561, { "distinct_on": [ - 3285, + 3568, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -172915,35 +180386,35 @@ export default { 40 ], "order_by": [ - 3284, + 3567, "[player_career_stats_v_order_by!]" ], "where": [ - 3281 + 3564 ] } ], "player_career_stats_v_stream": [ - 3277, + 3560, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3289, + 3572, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 3281 + 3564 ] } ], "player_damages": [ - 3295, + 3578, { "distinct_on": [ - 3316, + 3599, "[player_damages_select_column!]" ], "limit": [ @@ -172953,19 +180424,19 @@ export default { 40 ], "order_by": [ - 3314, + 3597, "[player_damages_order_by!]" ], "where": [ - 3304 + 3587 ] } ], "player_damages_aggregate": [ - 3296, + 3579, { "distinct_on": [ - 3316, + 3599, "[player_damages_select_column!]" ], "limit": [ @@ -172975,52 +180446,52 @@ export default { 40 ], "order_by": [ - 3314, + 3597, "[player_damages_order_by!]" ], "where": [ - 3304 + 3587 ] } ], "player_damages_by_pk": [ - 3295, + 3578, { "id": [ - 5170, + 5458, "uuid!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "player_damages_stream": [ - 3295, + 3578, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3324, + 3607, "[player_damages_stream_cursor_input]!" ], "where": [ - 3304 + 3587 ] } ], "player_elo": [ - 3336, + 3619, { "distinct_on": [ - 3350, + 3633, "[player_elo_select_column!]" ], "limit": [ @@ -173030,19 +180501,19 @@ export default { 40 ], "order_by": [ - 3348, + 3631, "[player_elo_order_by!]" ], "where": [ - 3340 + 3623 ] } ], "player_elo_aggregate": [ - 3337, + 3620, { "distinct_on": [ - 3350, + 3633, "[player_elo_select_column!]" ], "limit": [ @@ -173052,52 +180523,52 @@ export default { 40 ], "order_by": [ - 3348, + 3631, "[player_elo_order_by!]" ], "where": [ - 3340 + 3623 ] } ], "player_elo_by_pk": [ - 3336, + 3619, { "match_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ], "type": [ - 1117, + 1181, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 3336, + 3619, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3355, + 3638, "[player_elo_stream_cursor_input]!" ], "where": [ - 3340 + 3623 ] } ], "player_faceit_rank_history": [ - 3363, + 3646, { "distinct_on": [ - 3384, + 3667, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -173107,19 +180578,19 @@ export default { 40 ], "order_by": [ - 3382, + 3665, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3372 + 3655 ] } ], "player_faceit_rank_history_aggregate": [ - 3364, + 3647, { "distinct_on": [ - 3384, + 3667, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -173129,44 +180600,44 @@ export default { 40 ], "order_by": [ - 3382, + 3665, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3372 + 3655 ] } ], "player_faceit_rank_history_by_pk": [ - 3363, + 3646, { "id": [ - 5170, + 5458, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 3363, + 3646, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3392, + 3675, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 3372 + 3655 ] } ], "player_flashes": [ - 3404, + 3687, { "distinct_on": [ - 3427, + 3710, "[player_flashes_select_column!]" ], "limit": [ @@ -173176,19 +180647,19 @@ export default { 40 ], "order_by": [ - 3425, + 3708, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3698 ] } ], "player_flashes_aggregate": [ - 3405, + 3688, { "distinct_on": [ - 3427, + 3710, "[player_flashes_select_column!]" ], "limit": [ @@ -173198,56 +180669,56 @@ export default { 40 ], "order_by": [ - 3425, + 3708, "[player_flashes_order_by!]" ], "where": [ - 3415 + 3698 ] } ], "player_flashes_by_pk": [ - 3404, + 3687, { "attacked_steam_id": [ - 264, + 268, "bigint!" ], "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "player_flashes_stream": [ - 3404, + 3687, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3437, + 3720, "[player_flashes_stream_cursor_input]!" ], "where": [ - 3415 + 3698 ] } ], "player_kills": [ - 3449, + 3732, { "distinct_on": [ - 3513, + 3796, "[player_kills_select_column!]" ], "limit": [ @@ -173257,19 +180728,19 @@ export default { 40 ], "order_by": [ - 3511, + 3794, "[player_kills_order_by!]" ], "where": [ - 3460 + 3743 ] } ], "player_kills_aggregate": [ - 3450, + 3733, { "distinct_on": [ - 3513, + 3796, "[player_kills_select_column!]" ], "limit": [ @@ -173279,40 +180750,40 @@ export default { 40 ], "order_by": [ - 3511, + 3794, "[player_kills_order_by!]" ], "where": [ - 3460 + 3743 ] } ], "player_kills_by_pk": [ - 3449, + 3732, { "attacked_steam_id": [ - 264, + 268, "bigint!" ], "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3461, + 3744, { "distinct_on": [ - 3482, + 3765, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -173322,19 +180793,19 @@ export default { 40 ], "order_by": [ - 3480, + 3763, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3470 + 3753 ] } ], "player_kills_by_weapon_aggregate": [ - 3462, + 3745, { "distinct_on": [ - 3482, + 3765, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -173344,64 +180815,64 @@ export default { 40 ], "order_by": [ - 3480, + 3763, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3470 + 3753 ] } ], "player_kills_by_weapon_by_pk": [ - 3461, + 3744, { "player_steam_id": [ - 264, + 268, "bigint!" ], "with": [ - 80, + 83, "String!" ] } ], "player_kills_by_weapon_stream": [ - 3461, + 3744, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3490, + 3773, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 3470 + 3753 ] } ], "player_kills_stream": [ - 3449, + 3732, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3523, + 3806, "[player_kills_stream_cursor_input]!" ], "where": [ - 3460 + 3743 ] } ], "player_leaderboard_rank": [ - 3535, + 3818, { "distinct_on": [ - 3546, + 3829, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -173411,19 +180882,19 @@ export default { 40 ], "order_by": [ - 3545, + 3828, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3822 ] } ], "player_leaderboard_rank_aggregate": [ - 3536, + 3819, { "distinct_on": [ - 3546, + 3829, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -173433,35 +180904,35 @@ export default { 40 ], "order_by": [ - 3545, + 3828, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3539 + 3822 ] } ], "player_leaderboard_rank_stream": [ - 3535, + 3818, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3551, + 3834, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 3539 + 3822 ] } ], "player_match_map_stats": [ - 3558, + 3841, { "distinct_on": [ - 3579, + 3862, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -173471,19 +180942,19 @@ export default { 40 ], "order_by": [ - 3577, + 3860, "[player_match_map_stats_order_by!]" ], "where": [ - 3567 + 3850 ] } ], "player_match_map_stats_aggregate": [ - 3559, + 3842, { "distinct_on": [ - 3579, + 3862, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -173493,48 +180964,48 @@ export default { 40 ], "order_by": [ - 3577, + 3860, "[player_match_map_stats_order_by!]" ], "where": [ - 3567 + 3850 ] } ], "player_match_map_stats_by_pk": [ - 3558, + 3841, { "match_map_id": [ - 5170, + 5458, "uuid!" ], "steam_id": [ - 264, + 268, "bigint!" ] } ], "player_match_map_stats_stream": [ - 3558, + 3841, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3587, + 3870, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 3567 + 3850 ] } ], "player_match_performance_v": [ - 3599, + 3882, { "distinct_on": [ - 3607, + 3890, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -173544,19 +181015,19 @@ export default { 40 ], "order_by": [ - 3606, + 3889, "[player_match_performance_v_order_by!]" ], "where": [ - 3603 + 3886 ] } ], "player_match_performance_v_aggregate": [ - 3600, + 3883, { "distinct_on": [ - 3607, + 3890, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -173566,35 +181037,35 @@ export default { 40 ], "order_by": [ - 3606, + 3889, "[player_match_performance_v_order_by!]" ], "where": [ - 3603 + 3886 ] } ], "player_match_performance_v_stream": [ - 3599, + 3882, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3611, + 3894, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 3603 + 3886 ] } ], "player_match_stats_v": [ - 3617, + 3900, { "distinct_on": [ - 3633, + 3916, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -173604,19 +181075,19 @@ export default { 40 ], "order_by": [ - 3632, + 3915, "[player_match_stats_v_order_by!]" ], "where": [ - 3626 + 3909 ] } ], "player_match_stats_v_aggregate": [ - 3618, + 3901, { "distinct_on": [ - 3633, + 3916, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -173626,35 +181097,35 @@ export default { 40 ], "order_by": [ - 3632, + 3915, "[player_match_stats_v_order_by!]" ], "where": [ - 3626 + 3909 ] } ], "player_match_stats_v_stream": [ - 3617, + 3900, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3640, + 3923, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3626 + 3909 ] } ], "player_objectives": [ - 3650, + 3933, { "distinct_on": [ - 3671, + 3954, "[player_objectives_select_column!]" ], "limit": [ @@ -173664,19 +181135,19 @@ export default { 40 ], "order_by": [ - 3669, + 3952, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3942 ] } ], "player_objectives_aggregate": [ - 3651, + 3934, { "distinct_on": [ - 3671, + 3954, "[player_objectives_select_column!]" ], "limit": [ @@ -173686,52 +181157,52 @@ export default { 40 ], "order_by": [ - 3669, + 3952, "[player_objectives_order_by!]" ], "where": [ - 3659 + 3942 ] } ], "player_objectives_by_pk": [ - 3650, + 3933, { "match_map_id": [ - 5170, + 5458, "uuid!" ], "player_steam_id": [ - 264, + 268, "bigint!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "player_objectives_stream": [ - 3650, + 3933, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3679, + 3962, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3659 + 3942 ] } ], "player_performance_v": [ - 3691, + 3974, { "distinct_on": [ - 3699, + 3982, "[player_performance_v_select_column!]" ], "limit": [ @@ -173741,19 +181212,19 @@ export default { 40 ], "order_by": [ - 3698, + 3981, "[player_performance_v_order_by!]" ], "where": [ - 3695 + 3978 ] } ], "player_performance_v_aggregate": [ - 3692, + 3975, { "distinct_on": [ - 3699, + 3982, "[player_performance_v_select_column!]" ], "limit": [ @@ -173763,35 +181234,35 @@ export default { 40 ], "order_by": [ - 3698, + 3981, "[player_performance_v_order_by!]" ], "where": [ - 3695 + 3978 ] } ], "player_performance_v_stream": [ - 3691, + 3974, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3703, + 3986, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3695 + 3978 ] } ], "player_premier_rank_history": [ - 3709, + 3992, { "distinct_on": [ - 3730, + 4013, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -173801,19 +181272,19 @@ export default { 40 ], "order_by": [ - 3728, + 4011, "[player_premier_rank_history_order_by!]" ], "where": [ - 3718 + 4001 ] } ], "player_premier_rank_history_aggregate": [ - 3710, + 3993, { "distinct_on": [ - 3730, + 4013, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -173823,44 +181294,44 @@ export default { 40 ], "order_by": [ - 3728, + 4011, "[player_premier_rank_history_order_by!]" ], "where": [ - 3718 + 4001 ] } ], "player_premier_rank_history_by_pk": [ - 3709, + 3992, { "id": [ - 5170, + 5458, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3709, + 3992, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3738, + 4021, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3718 + 4001 ] } ], "player_sanctions": [ - 3750, + 4033, { "distinct_on": [ - 3771, + 4054, "[player_sanctions_select_column!]" ], "limit": [ @@ -173870,19 +181341,19 @@ export default { 40 ], "order_by": [ - 3769, + 4052, "[player_sanctions_order_by!]" ], "where": [ - 3759 + 4042 ] } ], "player_sanctions_aggregate": [ - 3751, + 4034, { "distinct_on": [ - 3771, + 4054, "[player_sanctions_select_column!]" ], "limit": [ @@ -173892,48 +181363,48 @@ export default { 40 ], "order_by": [ - 3769, + 4052, "[player_sanctions_order_by!]" ], "where": [ - 3759 + 4042 ] } ], "player_sanctions_by_pk": [ - 3750, + 4033, { "created_at": [ - 4670, + 4958, "timestamptz!" ], "id": [ - 5170, + 5458, "uuid!" ] } ], "player_sanctions_stream": [ - 3750, + 4033, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3779, + 4062, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3759 + 4042 ] } ], "player_season_stats": [ - 3791, + 4074, { "distinct_on": [ - 3822, + 4105, "[player_season_stats_select_column!]" ], "limit": [ @@ -173943,19 +181414,19 @@ export default { 40 ], "order_by": [ - 3820, + 4103, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4093 ] } ], "player_season_stats_aggregate": [ - 3792, + 4075, { "distinct_on": [ - 3822, + 4105, "[player_season_stats_select_column!]" ], "limit": [ @@ -173965,48 +181436,48 @@ export default { 40 ], "order_by": [ - 3820, + 4103, "[player_season_stats_order_by!]" ], "where": [ - 3810 + 4093 ] } ], "player_season_stats_by_pk": [ - 3791, + 4074, { "player_steam_id": [ - 264, + 268, "bigint!" ], "season_id": [ - 5170, + 5458, "uuid!" ] } ], "player_season_stats_stream": [ - 3791, + 4074, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3838, + 4121, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3810 + 4093 ] } ], "player_stats": [ - 3850, + 4133, { "distinct_on": [ - 3865, + 4148, "[player_stats_select_column!]" ], "limit": [ @@ -174016,19 +181487,19 @@ export default { 40 ], "order_by": [ - 3863, + 4146, "[player_stats_order_by!]" ], "where": [ - 3854 + 4137 ] } ], "player_stats_aggregate": [ - 3851, + 4134, { "distinct_on": [ - 3865, + 4148, "[player_stats_select_column!]" ], "limit": [ @@ -174038,44 +181509,44 @@ export default { 40 ], "order_by": [ - 3863, + 4146, "[player_stats_order_by!]" ], "where": [ - 3854 + 4137 ] } ], "player_stats_by_pk": [ - 3850, + 4133, { "player_steam_id": [ - 264, + 268, "bigint!" ] } ], "player_stats_stream": [ - 3850, + 4133, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3870, + 4153, "[player_stats_stream_cursor_input]!" ], "where": [ - 3854 + 4137 ] } ], "player_steam_bot_friend": [ - 3878, + 4161, { "distinct_on": [ - 3897, + 4180, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -174085,19 +181556,19 @@ export default { 40 ], "order_by": [ - 3894, + 4177, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3883 + 4166 ] } ], "player_steam_bot_friend_aggregate": [ - 3879, + 4162, { "distinct_on": [ - 3897, + 4180, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -174107,44 +181578,44 @@ export default { 40 ], "order_by": [ - 3894, + 4177, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3883 + 4166 ] } ], "player_steam_bot_friend_by_pk": [ - 3878, + 4161, { "steam_id": [ - 264, + 268, "bigint!" ] } ], "player_steam_bot_friend_stream": [ - 3878, + 4161, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3902, + 4185, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3883 + 4166 ] } ], "player_steam_match_auth": [ - 3910, + 4193, { "distinct_on": [ - 3924, + 4207, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -174154,19 +181625,19 @@ export default { 40 ], "order_by": [ - 3922, + 4205, "[player_steam_match_auth_order_by!]" ], "where": [ - 3914 + 4197 ] } ], "player_steam_match_auth_aggregate": [ - 3911, + 4194, { "distinct_on": [ - 3924, + 4207, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -174176,44 +181647,44 @@ export default { 40 ], "order_by": [ - 3922, + 4205, "[player_steam_match_auth_order_by!]" ], "where": [ - 3914 + 4197 ] } ], "player_steam_match_auth_by_pk": [ - 3910, + 4193, { "steam_id": [ - 264, + 268, "bigint!" ] } ], "player_steam_match_auth_stream": [ - 3910, + 4193, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3929, + 4212, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3914 + 4197 ] } ], "player_unused_utility": [ - 3937, + 4220, { "distinct_on": [ - 3958, + 4241, "[player_unused_utility_select_column!]" ], "limit": [ @@ -174223,19 +181694,19 @@ export default { 40 ], "order_by": [ - 3956, + 4239, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4229 ] } ], "player_unused_utility_aggregate": [ - 3938, + 4221, { "distinct_on": [ - 3958, + 4241, "[player_unused_utility_select_column!]" ], "limit": [ @@ -174245,48 +181716,48 @@ export default { 40 ], "order_by": [ - 3956, + 4239, "[player_unused_utility_order_by!]" ], "where": [ - 3946 + 4229 ] } ], "player_unused_utility_by_pk": [ - 3937, + 4220, { "match_map_id": [ - 5170, + 5458, "uuid!" ], "player_steam_id": [ - 264, + 268, "bigint!" ] } ], "player_unused_utility_stream": [ - 3937, + 4220, { "batch_size": [ 40, "Int!" ], "cursor": [ - 3966, + 4249, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3946 + 4229 ] } ], "player_utility": [ - 3978, + 4261, { "distinct_on": [ - 3999, + 4282, "[player_utility_select_column!]" ], "limit": [ @@ -174296,19 +181767,19 @@ export default { 40 ], "order_by": [ - 3997, + 4280, "[player_utility_order_by!]" ], "where": [ - 3987 + 4270 ] } ], "player_utility_aggregate": [ - 3979, + 4262, { "distinct_on": [ - 3999, + 4282, "[player_utility_select_column!]" ], "limit": [ @@ -174318,52 +181789,52 @@ export default { 40 ], "order_by": [ - 3997, + 4280, "[player_utility_order_by!]" ], "where": [ - 3987 + 4270 ] } ], "player_utility_by_pk": [ - 3978, + 4261, { "attacker_steam_id": [ - 264, + 268, "bigint!" ], "match_map_id": [ - 5170, + 5458, "uuid!" ], "time": [ - 4670, + 4958, "timestamptz!" ] } ], "player_utility_stream": [ - 3978, + 4261, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4007, + 4290, "[player_utility_stream_cursor_input]!" ], "where": [ - 3987 + 4270 ] } ], "player_weapon_stats_v": [ - 4019, + 4302, { "distinct_on": [ - 4035, + 4318, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -174373,19 +181844,19 @@ export default { 40 ], "order_by": [ - 4034, + 4317, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4028 + 4311 ] } ], "player_weapon_stats_v_aggregate": [ - 4020, + 4303, { "distinct_on": [ - 4035, + 4318, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -174395,35 +181866,35 @@ export default { 40 ], "order_by": [ - 4034, + 4317, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4028 + 4311 ] } ], "player_weapon_stats_v_stream": [ - 4019, + 4302, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4042, + 4325, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 4028 + 4311 ] } ], "players": [ - 4052, + 4335, { "distinct_on": [ - 4067, + 4350, "[players_select_column!]" ], "limit": [ @@ -174433,19 +181904,19 @@ export default { 40 ], "order_by": [ - 4065, + 4348, "[players_order_by!]" ], "where": [ - 4056 + 4339 ] } ], "players_aggregate": [ - 4053, + 4336, { "distinct_on": [ - 4067, + 4350, "[players_select_column!]" ], "limit": [ @@ -174455,44 +181926,44 @@ export default { 40 ], "order_by": [ - 4065, + 4348, "[players_order_by!]" ], "where": [ - 4056 + 4339 ] } ], "players_by_pk": [ - 4052, + 4335, { "steam_id": [ - 264, + 268, "bigint!" ] } ], "players_stream": [ - 4052, + 4335, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4072, + 4355, "[players_stream_cursor_input]!" ], "where": [ - 4056 + 4339 ] } ], "plugin_versions": [ - 4080, + 4363, { "distinct_on": [ - 4094, + 4377, "[plugin_versions_select_column!]" ], "limit": [ @@ -174502,19 +181973,19 @@ export default { 40 ], "order_by": [ - 4092, + 4375, "[plugin_versions_order_by!]" ], "where": [ - 4084 + 4367 ] } ], "plugin_versions_aggregate": [ - 4081, + 4364, { "distinct_on": [ - 4094, + 4377, "[plugin_versions_select_column!]" ], "limit": [ @@ -174524,48 +181995,48 @@ export default { 40 ], "order_by": [ - 4092, + 4375, "[plugin_versions_order_by!]" ], "where": [ - 4084 + 4367 ] } ], "plugin_versions_by_pk": [ - 4080, + 4363, { "runtime": [ - 1198, + 1262, "e_plugin_runtimes_enum!" ], "version": [ - 80, + 83, "String!" ] } ], "plugin_versions_stream": [ - 4080, + 4363, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4099, + 4382, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 4084 + 4367 ] } ], "push_subscriptions": [ - 4107, + 4390, { "distinct_on": [ - 4121, + 4404, "[push_subscriptions_select_column!]" ], "limit": [ @@ -174575,19 +182046,19 @@ export default { 40 ], "order_by": [ - 4119, + 4402, "[push_subscriptions_order_by!]" ], "where": [ - 4111 + 4394 ] } ], "push_subscriptions_aggregate": [ - 4108, + 4391, { "distinct_on": [ - 4121, + 4404, "[push_subscriptions_select_column!]" ], "limit": [ @@ -174597,44 +182068,44 @@ export default { 40 ], "order_by": [ - 4119, + 4402, "[push_subscriptions_order_by!]" ], "where": [ - 4111 + 4394 ] } ], "push_subscriptions_by_pk": [ - 4107, + 4390, { "id": [ - 5170, + 5458, "uuid!" ] } ], "push_subscriptions_stream": [ - 4107, + 4390, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4126, + 4409, "[push_subscriptions_stream_cursor_input]!" ], "where": [ - 4111 + 4394 ] } ], "seasons": [ - 4138, + 4421, { "distinct_on": [ - 4153, + 4436, "[seasons_select_column!]" ], "limit": [ @@ -174644,19 +182115,19 @@ export default { 40 ], "order_by": [ - 4151, + 4434, "[seasons_order_by!]" ], "where": [ - 4142 + 4425 ] } ], "seasons_aggregate": [ - 4139, + 4422, { "distinct_on": [ - 4153, + 4436, "[seasons_select_column!]" ], "limit": [ @@ -174666,44 +182137,44 @@ export default { 40 ], "order_by": [ - 4151, + 4434, "[seasons_order_by!]" ], "where": [ - 4142 + 4425 ] } ], "seasons_by_pk": [ - 4138, + 4421, { "id": [ - 5170, + 5458, "uuid!" ] } ], "seasons_stream": [ - 4138, + 4421, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4158, + 4441, "[seasons_stream_cursor_input]!" ], "where": [ - 4142 + 4425 ] } ], "server_regions": [ - 4166, + 4449, { "distinct_on": [ - 4180, + 4463, "[server_regions_select_column!]" ], "limit": [ @@ -174713,19 +182184,19 @@ export default { 40 ], "order_by": [ - 4178, + 4461, "[server_regions_order_by!]" ], "where": [ - 4170 + 4453 ] } ], "server_regions_aggregate": [ - 4167, + 4450, { "distinct_on": [ - 4180, + 4463, "[server_regions_select_column!]" ], "limit": [ @@ -174735,44 +182206,44 @@ export default { 40 ], "order_by": [ - 4178, + 4461, "[server_regions_order_by!]" ], "where": [ - 4170 + 4453 ] } ], "server_regions_by_pk": [ - 4166, + 4449, { "value": [ - 80, + 83, "String!" ] } ], "server_regions_stream": [ - 4166, + 4449, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4185, + 4468, "[server_regions_stream_cursor_input]!" ], "where": [ - 4170 + 4453 ] } ], "servers": [ - 4193, + 4476, { "distinct_on": [ - 4217, + 4505, "[servers_select_column!]" ], "limit": [ @@ -174782,19 +182253,19 @@ export default { 40 ], "order_by": [ - 4215, + 4502, "[servers_order_by!]" ], "where": [ - 4204 + 4488 ] } ], "servers_aggregate": [ - 4194, + 4477, { "distinct_on": [ - 4217, + 4505, "[servers_select_column!]" ], "limit": [ @@ -174804,44 +182275,44 @@ export default { 40 ], "order_by": [ - 4215, + 4502, "[servers_order_by!]" ], "where": [ - 4204 + 4488 ] } ], "servers_by_pk": [ - 4193, + 4476, { "id": [ - 5170, + 5458, "uuid!" ] } ], "servers_stream": [ - 4193, + 4476, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4227, + 4515, "[servers_stream_cursor_input]!" ], "where": [ - 4204 + 4488 ] } ], "settings": [ - 4239, + 4527, { "distinct_on": [ - 4251, + 4539, "[settings_select_column!]" ], "limit": [ @@ -174851,19 +182322,19 @@ export default { 40 ], "order_by": [ - 4249, + 4537, "[settings_order_by!]" ], "where": [ - 4242 + 4530 ] } ], "settings_aggregate": [ - 4240, + 4528, { "distinct_on": [ - 4251, + 4539, "[settings_select_column!]" ], "limit": [ @@ -174873,44 +182344,44 @@ export default { 40 ], "order_by": [ - 4249, + 4537, "[settings_order_by!]" ], "where": [ - 4242 + 4530 ] } ], "settings_by_pk": [ - 4239, + 4527, { "name": [ - 80, + 83, "String!" ] } ], "settings_stream": [ - 4239, + 4527, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4253, + 4541, "[settings_stream_cursor_input]!" ], "where": [ - 4242 + 4530 ] } ], "steam_account_claims": [ - 4259, + 4547, { "distinct_on": [ - 4277, + 4565, "[steam_account_claims_select_column!]" ], "limit": [ @@ -174920,19 +182391,19 @@ export default { 40 ], "order_by": [ - 4275, + 4563, "[steam_account_claims_order_by!]" ], "where": [ - 4266 + 4554 ] } ], "steam_account_claims_aggregate": [ - 4260, + 4548, { "distinct_on": [ - 4277, + 4565, "[steam_account_claims_select_column!]" ], "limit": [ @@ -174942,44 +182413,44 @@ export default { 40 ], "order_by": [ - 4275, + 4563, "[steam_account_claims_order_by!]" ], "where": [ - 4266 + 4554 ] } ], "steam_account_claims_by_pk": [ - 4259, + 4547, { "id": [ - 5170, + 5458, "uuid!" ] } ], "steam_account_claims_stream": [ - 4259, + 4547, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4279, + 4567, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 4266 + 4554 ] } ], "steam_accounts": [ - 4283, + 4571, { "distinct_on": [ - 4298, + 4586, "[steam_accounts_select_column!]" ], "limit": [ @@ -174989,19 +182460,19 @@ export default { 40 ], "order_by": [ - 4296, + 4584, "[steam_accounts_order_by!]" ], "where": [ - 4287 + 4575 ] } ], "steam_accounts_aggregate": [ - 4284, + 4572, { "distinct_on": [ - 4298, + 4586, "[steam_accounts_select_column!]" ], "limit": [ @@ -175011,44 +182482,44 @@ export default { 40 ], "order_by": [ - 4296, + 4584, "[steam_accounts_order_by!]" ], "where": [ - 4287 + 4575 ] } ], "steam_accounts_by_pk": [ - 4283, + 4571, { "id": [ - 5170, + 5458, "uuid!" ] } ], "steam_accounts_stream": [ - 4283, + 4571, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4303, + 4591, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 4287 + 4575 ] } ], "system_alerts": [ - 4311, + 4599, { "distinct_on": [ - 4325, + 4613, "[system_alerts_select_column!]" ], "limit": [ @@ -175058,19 +182529,19 @@ export default { 40 ], "order_by": [ - 4323, + 4611, "[system_alerts_order_by!]" ], "where": [ - 4315 + 4603 ] } ], "system_alerts_aggregate": [ - 4312, + 4600, { "distinct_on": [ - 4325, + 4613, "[system_alerts_select_column!]" ], "limit": [ @@ -175080,44 +182551,44 @@ export default { 40 ], "order_by": [ - 4323, + 4611, "[system_alerts_order_by!]" ], "where": [ - 4315 + 4603 ] } ], "system_alerts_by_pk": [ - 4311, + 4599, { "id": [ - 5170, + 5458, "uuid!" ] } ], "system_alerts_stream": [ - 4311, + 4599, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4330, + 4618, "[system_alerts_stream_cursor_input]!" ], "where": [ - 4315 + 4603 ] } ], "team_invites": [ - 4338, + 4626, { "distinct_on": [ - 4359, + 4647, "[team_invites_select_column!]" ], "limit": [ @@ -175127,19 +182598,19 @@ export default { 40 ], "order_by": [ - 4357, + 4645, "[team_invites_order_by!]" ], "where": [ - 4347 + 4635 ] } ], "team_invites_aggregate": [ - 4339, + 4627, { "distinct_on": [ - 4359, + 4647, "[team_invites_select_column!]" ], "limit": [ @@ -175149,44 +182620,44 @@ export default { 40 ], "order_by": [ - 4357, + 4645, "[team_invites_order_by!]" ], "where": [ - 4347 + 4635 ] } ], "team_invites_by_pk": [ - 4338, + 4626, { "id": [ - 5170, + 5458, "uuid!" ] } ], "team_invites_stream": [ - 4338, + 4626, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4367, + 4655, "[team_invites_stream_cursor_input]!" ], "where": [ - 4347 + 4635 ] } ], "team_roster": [ - 4379, + 4667, { "distinct_on": [ - 4402, + 4690, "[team_roster_select_column!]" ], "limit": [ @@ -175196,19 +182667,19 @@ export default { 40 ], "order_by": [ - 4400, + 4688, "[team_roster_order_by!]" ], "where": [ - 4390 + 4678 ] } ], "team_roster_aggregate": [ - 4380, + 4668, { "distinct_on": [ - 4402, + 4690, "[team_roster_select_column!]" ], "limit": [ @@ -175218,48 +182689,48 @@ export default { 40 ], "order_by": [ - 4400, + 4688, "[team_roster_order_by!]" ], "where": [ - 4390 + 4678 ] } ], "team_roster_by_pk": [ - 4379, + 4667, { "player_steam_id": [ - 264, + 268, "bigint!" ], "team_id": [ - 5170, + 5458, "uuid!" ] } ], "team_roster_stream": [ - 4379, + 4667, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4412, + 4700, "[team_roster_stream_cursor_input]!" ], "where": [ - 4390 + 4678 ] } ], "team_scrim_alerts": [ - 4424, + 4712, { "distinct_on": [ - 4438, + 4726, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -175269,19 +182740,19 @@ export default { 40 ], "order_by": [ - 4436, + 4724, "[team_scrim_alerts_order_by!]" ], "where": [ - 4428 + 4716 ] } ], "team_scrim_alerts_aggregate": [ - 4425, + 4713, { "distinct_on": [ - 4438, + 4726, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -175291,44 +182762,44 @@ export default { 40 ], "order_by": [ - 4436, + 4724, "[team_scrim_alerts_order_by!]" ], "where": [ - 4428 + 4716 ] } ], "team_scrim_alerts_by_pk": [ - 4424, + 4712, { "id": [ - 5170, + 5458, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 4424, + 4712, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4443, + 4731, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 4428 + 4716 ] } ], "team_scrim_availability": [ - 4451, + 4739, { "distinct_on": [ - 4471, + 4759, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -175338,19 +182809,19 @@ export default { 40 ], "order_by": [ - 4469, + 4757, "[team_scrim_availability_order_by!]" ], "where": [ - 4460 + 4748 ] } ], "team_scrim_availability_aggregate": [ - 4452, + 4740, { "distinct_on": [ - 4471, + 4759, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -175360,44 +182831,44 @@ export default { 40 ], "order_by": [ - 4469, + 4757, "[team_scrim_availability_order_by!]" ], "where": [ - 4460 + 4748 ] } ], "team_scrim_availability_by_pk": [ - 4451, + 4739, { "id": [ - 5170, + 5458, "uuid!" ] } ], "team_scrim_availability_stream": [ - 4451, + 4739, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4475, + 4763, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 4460 + 4748 ] } ], "team_scrim_request_proposals": [ - 4479, + 4767, { "distinct_on": [ - 4500, + 4788, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -175407,19 +182878,19 @@ export default { 40 ], "order_by": [ - 4498, + 4786, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4488 + 4776 ] } ], "team_scrim_request_proposals_aggregate": [ - 4480, + 4768, { "distinct_on": [ - 4500, + 4788, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -175429,44 +182900,44 @@ export default { 40 ], "order_by": [ - 4498, + 4786, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4488 + 4776 ] } ], "team_scrim_request_proposals_by_pk": [ - 4479, + 4767, { "id": [ - 5170, + 5458, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 4479, + 4767, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4508, + 4796, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 4488 + 4776 ] } ], "team_scrim_requests": [ - 4520, + 4808, { "distinct_on": [ - 4544, + 4832, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -175476,19 +182947,19 @@ export default { 40 ], "order_by": [ - 4542, + 4830, "[team_scrim_requests_order_by!]" ], "where": [ - 4531 + 4819 ] } ], "team_scrim_requests_aggregate": [ - 4521, + 4809, { "distinct_on": [ - 4544, + 4832, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -175498,44 +182969,44 @@ export default { 40 ], "order_by": [ - 4542, + 4830, "[team_scrim_requests_order_by!]" ], "where": [ - 4531 + 4819 ] } ], "team_scrim_requests_by_pk": [ - 4520, + 4808, { "id": [ - 5170, + 5458, "uuid!" ] } ], "team_scrim_requests_stream": [ - 4520, + 4808, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4554, + 4842, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 4531 + 4819 ] } ], "team_scrim_settings": [ - 4566, + 4854, { "distinct_on": [ - 4581, + 4869, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -175545,19 +183016,19 @@ export default { 40 ], "order_by": [ - 4579, + 4867, "[team_scrim_settings_order_by!]" ], "where": [ - 4570 + 4858 ] } ], "team_scrim_settings_aggregate": [ - 4567, + 4855, { "distinct_on": [ - 4581, + 4869, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -175567,44 +183038,44 @@ export default { 40 ], "order_by": [ - 4579, + 4867, "[team_scrim_settings_order_by!]" ], "where": [ - 4570 + 4858 ] } ], "team_scrim_settings_by_pk": [ - 4566, + 4854, { "id": [ - 5170, + 5458, "uuid!" ] } ], "team_scrim_settings_stream": [ - 4566, + 4854, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4586, + 4874, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 4570 + 4858 ] } ], "team_suggestions": [ - 4594, + 4882, { "distinct_on": [ - 4608, + 4896, "[team_suggestions_select_column!]" ], "limit": [ @@ -175614,19 +183085,19 @@ export default { 40 ], "order_by": [ - 4606, + 4894, "[team_suggestions_order_by!]" ], "where": [ - 4598 + 4886 ] } ], "team_suggestions_aggregate": [ - 4595, + 4883, { "distinct_on": [ - 4608, + 4896, "[team_suggestions_select_column!]" ], "limit": [ @@ -175636,44 +183107,44 @@ export default { 40 ], "order_by": [ - 4606, + 4894, "[team_suggestions_order_by!]" ], "where": [ - 4598 + 4886 ] } ], "team_suggestions_by_pk": [ - 4594, + 4882, { "id": [ - 5170, + 5458, "uuid!" ] } ], "team_suggestions_stream": [ - 4594, + 4882, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4613, + 4901, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 4598 + 4886 ] } ], "teams": [ - 4621, + 4909, { "distinct_on": [ - 4645, + 4933, "[teams_select_column!]" ], "limit": [ @@ -175683,19 +183154,19 @@ export default { 40 ], "order_by": [ - 4643, + 4931, "[teams_order_by!]" ], "where": [ - 4632 + 4920 ] } ], "teams_aggregate": [ - 4622, + 4910, { "distinct_on": [ - 4645, + 4933, "[teams_select_column!]" ], "limit": [ @@ -175705,44 +183176,44 @@ export default { 40 ], "order_by": [ - 4643, + 4931, "[teams_order_by!]" ], "where": [ - 4632 + 4920 ] } ], "teams_by_pk": [ - 4621, + 4909, { "id": [ - 5170, + 5458, "uuid!" ] } ], "teams_stream": [ - 4621, + 4909, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4655, + 4943, "[teams_stream_cursor_input]!" ], "where": [ - 4632 + 4920 ] } ], "tournament_awards": [ - 4672, + 4960, { "distinct_on": [ - 4694, + 4982, "[tournament_awards_select_column!]" ], "limit": [ @@ -175752,19 +183223,19 @@ export default { 40 ], "order_by": [ - 4692, + 4980, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4969 ] } ], "tournament_awards_aggregate": [ - 4673, + 4961, { "distinct_on": [ - 4694, + 4982, "[tournament_awards_select_column!]" ], "limit": [ @@ -175774,44 +183245,44 @@ export default { 40 ], "order_by": [ - 4692, + 4980, "[tournament_awards_order_by!]" ], "where": [ - 4681 + 4969 ] } ], "tournament_awards_by_pk": [ - 4672, + 4960, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_awards_stream": [ - 4672, + 4960, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4702, + 4990, "[tournament_awards_stream_cursor_input]!" ], "where": [ - 4681 + 4969 ] } ], "tournament_brackets": [ - 4714, + 5002, { "distinct_on": [ - 4738, + 5026, "[tournament_brackets_select_column!]" ], "limit": [ @@ -175821,19 +183292,19 @@ export default { 40 ], "order_by": [ - 4736, + 5024, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5013 ] } ], "tournament_brackets_aggregate": [ - 4715, + 5003, { "distinct_on": [ - 4738, + 5026, "[tournament_brackets_select_column!]" ], "limit": [ @@ -175843,44 +183314,44 @@ export default { 40 ], "order_by": [ - 4736, + 5024, "[tournament_brackets_order_by!]" ], "where": [ - 4725 + 5013 ] } ], "tournament_brackets_by_pk": [ - 4714, + 5002, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_brackets_stream": [ - 4714, + 5002, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4748, + 5036, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4725 + 5013 ] } ], "tournament_categories": [ - 4760, + 5048, { "distinct_on": [ - 4778, + 5066, "[tournament_categories_select_column!]" ], "limit": [ @@ -175890,19 +183361,19 @@ export default { 40 ], "order_by": [ - 4776, + 5064, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5055 ] } ], "tournament_categories_aggregate": [ - 4761, + 5049, { "distinct_on": [ - 4778, + 5066, "[tournament_categories_select_column!]" ], "limit": [ @@ -175912,48 +183383,48 @@ export default { 40 ], "order_by": [ - 4776, + 5064, "[tournament_categories_order_by!]" ], "where": [ - 4767 + 5055 ] } ], "tournament_categories_by_pk": [ - 4760, + 5048, { "category": [ - 1400, + 1464, "e_tournament_categories_enum!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_categories_stream": [ - 4760, + 5048, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4780, + 5068, "[tournament_categories_stream_cursor_input]!" ], "where": [ - 4767 + 5055 ] } ], "tournament_organizer_teams": [ - 4784, + 5072, { "distinct_on": [ - 4802, + 5090, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -175963,19 +183434,19 @@ export default { 40 ], "order_by": [ - 4800, + 5088, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4791 + 5079 ] } ], "tournament_organizer_teams_aggregate": [ - 4785, + 5073, { "distinct_on": [ - 4802, + 5090, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -175985,48 +183456,48 @@ export default { 40 ], "order_by": [ - 4800, + 5088, "[tournament_organizer_teams_order_by!]" ], "where": [ - 4791 + 5079 ] } ], "tournament_organizer_teams_by_pk": [ - 4784, + 5072, { "team_id": [ - 5170, + 5458, "uuid!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_organizer_teams_stream": [ - 4784, + 5072, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4804, + 5092, "[tournament_organizer_teams_stream_cursor_input]!" ], "where": [ - 4791 + 5079 ] } ], "tournament_organizers": [ - 4808, + 5096, { "distinct_on": [ - 4829, + 5117, "[tournament_organizers_select_column!]" ], "limit": [ @@ -176036,19 +183507,19 @@ export default { 40 ], "order_by": [ - 4827, + 5115, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5105 ] } ], "tournament_organizers_aggregate": [ - 4809, + 5097, { "distinct_on": [ - 4829, + 5117, "[tournament_organizers_select_column!]" ], "limit": [ @@ -176058,48 +183529,48 @@ export default { 40 ], "order_by": [ - 4827, + 5115, "[tournament_organizers_order_by!]" ], "where": [ - 4817 + 5105 ] } ], "tournament_organizers_by_pk": [ - 4808, + 5096, { "steam_id": [ - 264, + 268, "bigint!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_organizers_stream": [ - 4808, + 5096, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4837, + 5125, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4817 + 5105 ] } ], "tournament_prizes": [ - 4849, + 5137, { "distinct_on": [ - 4870, + 5158, "[tournament_prizes_select_column!]" ], "limit": [ @@ -176109,19 +183580,19 @@ export default { 40 ], "order_by": [ - 4868, + 5156, "[tournament_prizes_order_by!]" ], "where": [ - 4858 + 5146 ] } ], "tournament_prizes_aggregate": [ - 4850, + 5138, { "distinct_on": [ - 4870, + 5158, "[tournament_prizes_select_column!]" ], "limit": [ @@ -176131,44 +183602,44 @@ export default { 40 ], "order_by": [ - 4868, + 5156, "[tournament_prizes_order_by!]" ], "where": [ - 4858 + 5146 ] } ], "tournament_prizes_by_pk": [ - 4849, + 5137, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_prizes_stream": [ - 4849, + 5137, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4878, + 5166, "[tournament_prizes_stream_cursor_input]!" ], "where": [ - 4858 + 5146 ] } ], "tournament_stage_windows": [ - 4890, + 5178, { "distinct_on": [ - 4911, + 5199, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -176178,19 +183649,19 @@ export default { 40 ], "order_by": [ - 4909, + 5197, "[tournament_stage_windows_order_by!]" ], "where": [ - 4899 + 5187 ] } ], "tournament_stage_windows_aggregate": [ - 4891, + 5179, { "distinct_on": [ - 4911, + 5199, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -176200,44 +183671,44 @@ export default { 40 ], "order_by": [ - 4909, + 5197, "[tournament_stage_windows_order_by!]" ], "where": [ - 4899 + 5187 ] } ], "tournament_stage_windows_by_pk": [ - 4890, + 5178, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4890, + 5178, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4919, + 5207, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4899 + 5187 ] } ], "tournament_stages": [ - 4931, + 5219, { "distinct_on": [ - 4960, + 5248, "[tournament_stages_select_column!]" ], "limit": [ @@ -176247,19 +183718,19 @@ export default { 40 ], "order_by": [ - 4957, + 5245, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5231 ] } ], "tournament_stages_aggregate": [ - 4932, + 5220, { "distinct_on": [ - 4960, + 5248, "[tournament_stages_select_column!]" ], "limit": [ @@ -176269,44 +183740,44 @@ export default { 40 ], "order_by": [ - 4957, + 5245, "[tournament_stages_order_by!]" ], "where": [ - 4943 + 5231 ] } ], "tournament_stages_by_pk": [ - 4931, + 5219, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_stages_stream": [ - 4931, + 5219, { "batch_size": [ 40, "Int!" ], "cursor": [ - 4970, + 5258, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4943 + 5231 ] } ], "tournament_team_invites": [ - 4982, + 5270, { "distinct_on": [ - 5003, + 5291, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -176316,19 +183787,19 @@ export default { 40 ], "order_by": [ - 5001, + 5289, "[tournament_team_invites_order_by!]" ], "where": [ - 4991 + 5279 ] } ], "tournament_team_invites_aggregate": [ - 4983, + 5271, { "distinct_on": [ - 5003, + 5291, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -176338,44 +183809,44 @@ export default { 40 ], "order_by": [ - 5001, + 5289, "[tournament_team_invites_order_by!]" ], "where": [ - 4991 + 5279 ] } ], "tournament_team_invites_by_pk": [ - 4982, + 5270, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4982, + 5270, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5011, + 5299, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4991 + 5279 ] } ], "tournament_team_roster": [ - 5023, + 5311, { "distinct_on": [ - 5044, + 5332, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -176385,19 +183856,19 @@ export default { 40 ], "order_by": [ - 5042, + 5330, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5320 ] } ], "tournament_team_roster_aggregate": [ - 5024, + 5312, { "distinct_on": [ - 5044, + 5332, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -176407,48 +183878,48 @@ export default { 40 ], "order_by": [ - 5042, + 5330, "[tournament_team_roster_order_by!]" ], "where": [ - 5032 + 5320 ] } ], "tournament_team_roster_by_pk": [ - 5023, + 5311, { "player_steam_id": [ - 264, + 268, "bigint!" ], "tournament_id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_team_roster_stream": [ - 5023, + 5311, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5052, + 5340, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 5032 + 5320 ] } ], "tournament_teams": [ - 5064, + 5352, { "distinct_on": [ - 5086, + 5374, "[tournament_teams_select_column!]" ], "limit": [ @@ -176458,19 +183929,19 @@ export default { 40 ], "order_by": [ - 5084, + 5372, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5361 ] } ], "tournament_teams_aggregate": [ - 5065, + 5353, { "distinct_on": [ - 5086, + 5374, "[tournament_teams_select_column!]" ], "limit": [ @@ -176480,44 +183951,44 @@ export default { 40 ], "order_by": [ - 5084, + 5372, "[tournament_teams_order_by!]" ], "where": [ - 5073 + 5361 ] } ], "tournament_teams_by_pk": [ - 5064, + 5352, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournament_teams_stream": [ - 5064, + 5352, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5094, + 5382, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 5073 + 5361 ] } ], "tournaments": [ - 5106, + 5394, { "distinct_on": [ - 5140, + 5428, "[tournaments_select_column!]" ], "limit": [ @@ -176527,19 +183998,19 @@ export default { 40 ], "order_by": [ - 5138, + 5426, "[tournaments_order_by!]" ], "where": [ - 5127 + 5415 ] } ], "tournaments_aggregate": [ - 5107, + 5395, { "distinct_on": [ - 5140, + 5428, "[tournaments_select_column!]" ], "limit": [ @@ -176549,44 +184020,44 @@ export default { 40 ], "order_by": [ - 5138, + 5426, "[tournaments_order_by!]" ], "where": [ - 5127 + 5415 ] } ], "tournaments_by_pk": [ - 5106, + 5394, { "id": [ - 5170, + 5458, "uuid!" ] } ], "tournaments_stream": [ - 5106, + 5394, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5158, + 5446, "[tournaments_stream_cursor_input]!" ], "where": [ - 5127 + 5415 ] } ], "v_event_player_stats": [ - 5173, + 5461, { "distinct_on": [ - 5199, + 5487, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -176596,19 +184067,19 @@ export default { 40 ], "order_by": [ - 5198, + 5486, "[v_event_player_stats_order_by!]" ], "where": [ - 5192 + 5480 ] } ], "v_event_player_stats_aggregate": [ - 5174, + 5462, { "distinct_on": [ - 5199, + 5487, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -176618,35 +184089,35 @@ export default { 40 ], "order_by": [ - 5198, + 5486, "[v_event_player_stats_order_by!]" ], "where": [ - 5192 + 5480 ] } ], "v_event_player_stats_stream": [ - 5173, + 5461, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5214, + 5502, "[v_event_player_stats_stream_cursor_input]!" ], "where": [ - 5192 + 5480 ] } ], "v_gpu_pool_status": [ - 5224, + 5512, { "distinct_on": [ - 5232, + 5520, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -176656,19 +184127,19 @@ export default { 40 ], "order_by": [ - 5231, + 5519, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5228 + 5516 ] } ], "v_gpu_pool_status_aggregate": [ - 5225, + 5513, { "distinct_on": [ - 5232, + 5520, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -176678,35 +184149,35 @@ export default { 40 ], "order_by": [ - 5231, + 5519, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5228 + 5516 ] } ], "v_gpu_pool_status_stream": [ - 5224, + 5512, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5236, + 5524, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 5228 + 5516 ] } ], "v_league_division_standings": [ - 5242, + 5530, { "distinct_on": [ - 5258, + 5546, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -176716,19 +184187,19 @@ export default { 40 ], "order_by": [ - 5257, + 5545, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5539 ] } ], "v_league_division_standings_aggregate": [ - 5243, + 5531, { "distinct_on": [ - 5258, + 5546, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -176738,35 +184209,35 @@ export default { 40 ], "order_by": [ - 5257, + 5545, "[v_league_division_standings_order_by!]" ], "where": [ - 5251 + 5539 ] } ], "v_league_division_standings_stream": [ - 5242, + 5530, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5265, + 5553, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 5251 + 5539 ] } ], "v_league_season_player_stats": [ - 5275, + 5563, { "distinct_on": [ - 5301, + 5589, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -176776,19 +184247,19 @@ export default { 40 ], "order_by": [ - 5300, + 5588, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5294 + 5582 ] } ], "v_league_season_player_stats_aggregate": [ - 5276, + 5564, { "distinct_on": [ - 5301, + 5589, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -176798,35 +184269,35 @@ export default { 40 ], "order_by": [ - 5300, + 5588, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5294 + 5582 ] } ], "v_league_season_player_stats_stream": [ - 5275, + 5563, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5316, + 5604, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 5294 + 5582 ] } ], "v_match_captains": [ - 5326, + 5614, { "distinct_on": [ - 5338, + 5626, "[v_match_captains_select_column!]" ], "limit": [ @@ -176836,19 +184307,19 @@ export default { 40 ], "order_by": [ - 5337, + 5625, "[v_match_captains_order_by!]" ], "where": [ - 5330 + 5618 ] } ], "v_match_captains_aggregate": [ - 5327, + 5615, { "distinct_on": [ - 5338, + 5626, "[v_match_captains_select_column!]" ], "limit": [ @@ -176858,35 +184329,35 @@ export default { 40 ], "order_by": [ - 5337, + 5625, "[v_match_captains_order_by!]" ], "where": [ - 5330 + 5618 ] } ], "v_match_captains_stream": [ - 5326, + 5614, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5343, + 5631, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 5330 + 5618 ] } ], "v_match_clutches": [ - 5350, + 5638, { "distinct_on": [ - 5366, + 5654, "[v_match_clutches_select_column!]" ], "limit": [ @@ -176896,19 +184367,19 @@ export default { 40 ], "order_by": [ - 5365, + 5653, "[v_match_clutches_order_by!]" ], "where": [ - 5359 + 5647 ] } ], "v_match_clutches_aggregate": [ - 5351, + 5639, { "distinct_on": [ - 5366, + 5654, "[v_match_clutches_select_column!]" ], "limit": [ @@ -176918,35 +184389,35 @@ export default { 40 ], "order_by": [ - 5365, + 5653, "[v_match_clutches_order_by!]" ], "where": [ - 5359 + 5647 ] } ], "v_match_clutches_stream": [ - 5350, + 5638, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5373, + 5661, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 5359 + 5647 ] } ], "v_match_kill_pairs": [ - 5383, + 5671, { "distinct_on": [ - 5391, + 5679, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -176956,19 +184427,19 @@ export default { 40 ], "order_by": [ - 5390, + 5678, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5387 + 5675 ] } ], "v_match_kill_pairs_aggregate": [ - 5384, + 5672, { "distinct_on": [ - 5391, + 5679, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -176978,35 +184449,35 @@ export default { 40 ], "order_by": [ - 5390, + 5678, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5387 + 5675 ] } ], "v_match_kill_pairs_stream": [ - 5383, + 5671, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5395, + 5683, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 5387 + 5675 ] } ], "v_match_lineup_buy_types": [ - 5401, + 5689, { "distinct_on": [ - 5409, + 5697, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -177016,19 +184487,19 @@ export default { 40 ], "order_by": [ - 5408, + 5696, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5405 + 5693 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5402, + 5690, { "distinct_on": [ - 5409, + 5697, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -177038,35 +184509,35 @@ export default { 40 ], "order_by": [ - 5408, + 5696, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5405 + 5693 ] } ], "v_match_lineup_buy_types_stream": [ - 5401, + 5689, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5413, + 5701, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 5405 + 5693 ] } ], "v_match_lineup_map_stats": [ - 5419, + 5707, { "distinct_on": [ - 5427, + 5715, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -177076,19 +184547,19 @@ export default { 40 ], "order_by": [ - 5426, + 5714, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5423 + 5711 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5420, + 5708, { "distinct_on": [ - 5427, + 5715, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -177098,35 +184569,35 @@ export default { 40 ], "order_by": [ - 5426, + 5714, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5423 + 5711 ] } ], "v_match_lineup_map_stats_stream": [ - 5419, + 5707, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5431, + 5719, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 5423 + 5711 ] } ], "v_match_map_backup_rounds": [ - 5437, + 5725, { "distinct_on": [ - 5448, + 5736, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -177136,19 +184607,19 @@ export default { 40 ], "order_by": [ - 5447, + 5735, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5441 + 5729 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5438, + 5726, { "distinct_on": [ - 5448, + 5736, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -177158,35 +184629,35 @@ export default { 40 ], "order_by": [ - 5447, + 5735, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5441 + 5729 ] } ], "v_match_map_backup_rounds_stream": [ - 5437, + 5725, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5453, + 5741, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 5441 + 5729 ] } ], "v_match_player_buy_types": [ - 5460, + 5748, { "distinct_on": [ - 5468, + 5756, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -177196,19 +184667,19 @@ export default { 40 ], "order_by": [ - 5467, + 5755, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5464 + 5752 ] } ], "v_match_player_buy_types_aggregate": [ - 5461, + 5749, { "distinct_on": [ - 5468, + 5756, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -177218,35 +184689,35 @@ export default { 40 ], "order_by": [ - 5467, + 5755, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5464 + 5752 ] } ], "v_match_player_buy_types_stream": [ - 5460, + 5748, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5472, + 5760, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 5464 + 5752 ] } ], "v_match_player_opening_duels": [ - 5478, + 5766, { "distinct_on": [ - 5494, + 5782, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -177256,19 +184727,19 @@ export default { 40 ], "order_by": [ - 5493, + 5781, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5487 + 5775 ] } ], "v_match_player_opening_duels_aggregate": [ - 5479, + 5767, { "distinct_on": [ - 5494, + 5782, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -177278,35 +184749,35 @@ export default { 40 ], "order_by": [ - 5493, + 5781, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5487 + 5775 ] } ], "v_match_player_opening_duels_stream": [ - 5478, + 5766, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5501, + 5789, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 5487 + 5775 ] } ], "v_player_arch_nemesis": [ - 5511, + 5799, { "distinct_on": [ - 5519, + 5807, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -177316,19 +184787,19 @@ export default { 40 ], "order_by": [ - 5518, + 5806, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5515 + 5803 ] } ], "v_player_arch_nemesis_aggregate": [ - 5512, + 5800, { "distinct_on": [ - 5519, + 5807, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -177338,35 +184809,35 @@ export default { 40 ], "order_by": [ - 5518, + 5806, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5515 + 5803 ] } ], "v_player_arch_nemesis_stream": [ - 5511, + 5799, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5523, + 5811, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 5515 + 5803 ] } ], "v_player_damage": [ - 5529, + 5817, { "distinct_on": [ - 5537, + 5825, "[v_player_damage_select_column!]" ], "limit": [ @@ -177376,19 +184847,19 @@ export default { 40 ], "order_by": [ - 5536, + 5824, "[v_player_damage_order_by!]" ], "where": [ - 5533 + 5821 ] } ], "v_player_damage_aggregate": [ - 5530, + 5818, { "distinct_on": [ - 5537, + 5825, "[v_player_damage_select_column!]" ], "limit": [ @@ -177398,35 +184869,35 @@ export default { 40 ], "order_by": [ - 5536, + 5824, "[v_player_damage_order_by!]" ], "where": [ - 5533 + 5821 ] } ], "v_player_damage_stream": [ - 5529, + 5817, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5541, + 5829, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 5533 + 5821 ] } ], "v_player_elo": [ - 5547, + 5835, { "distinct_on": [ - 5573, + 5861, "[v_player_elo_select_column!]" ], "limit": [ @@ -177436,19 +184907,19 @@ export default { 40 ], "order_by": [ - 5572, + 5860, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5854 ] } ], "v_player_elo_aggregate": [ - 5548, + 5836, { "distinct_on": [ - 5573, + 5861, "[v_player_elo_select_column!]" ], "limit": [ @@ -177458,35 +184929,35 @@ export default { 40 ], "order_by": [ - 5572, + 5860, "[v_player_elo_order_by!]" ], "where": [ - 5566 + 5854 ] } ], "v_player_elo_stream": [ - 5547, + 5835, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5588, + 5876, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 5566 + 5854 ] } ], "v_player_map_losses": [ - 5598, + 5886, { "distinct_on": [ - 5606, + 5894, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -177496,19 +184967,19 @@ export default { 40 ], "order_by": [ - 5605, + 5893, "[v_player_map_losses_order_by!]" ], "where": [ - 5602 + 5890 ] } ], "v_player_map_losses_aggregate": [ - 5599, + 5887, { "distinct_on": [ - 5606, + 5894, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -177518,35 +184989,35 @@ export default { 40 ], "order_by": [ - 5605, + 5893, "[v_player_map_losses_order_by!]" ], "where": [ - 5602 + 5890 ] } ], "v_player_map_losses_stream": [ - 5598, + 5886, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5610, + 5898, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 5602 + 5890 ] } ], "v_player_map_wins": [ - 5616, + 5904, { "distinct_on": [ - 5624, + 5912, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -177556,19 +185027,19 @@ export default { 40 ], "order_by": [ - 5623, + 5911, "[v_player_map_wins_order_by!]" ], "where": [ - 5620 + 5908 ] } ], "v_player_map_wins_aggregate": [ - 5617, + 5905, { "distinct_on": [ - 5624, + 5912, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -177578,35 +185049,35 @@ export default { 40 ], "order_by": [ - 5623, + 5911, "[v_player_map_wins_order_by!]" ], "where": [ - 5620 + 5908 ] } ], "v_player_map_wins_stream": [ - 5616, + 5904, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5628, + 5916, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 5620 + 5908 ] } ], "v_player_match_head_to_head": [ - 5634, + 5922, { "distinct_on": [ - 5642, + 5930, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -177616,19 +185087,19 @@ export default { 40 ], "order_by": [ - 5641, + 5929, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5638 + 5926 ] } ], "v_player_match_head_to_head_aggregate": [ - 5635, + 5923, { "distinct_on": [ - 5642, + 5930, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -177638,35 +185109,35 @@ export default { 40 ], "order_by": [ - 5641, + 5929, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5638 + 5926 ] } ], "v_player_match_head_to_head_stream": [ - 5634, + 5922, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5646, + 5934, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 5638 + 5926 ] } ], "v_player_match_map_hltv": [ - 5652, + 5940, { "distinct_on": [ - 5670, + 5958, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -177676,19 +185147,19 @@ export default { 40 ], "order_by": [ - 5669, + 5957, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5661 + 5949 ] } ], "v_player_match_map_hltv_aggregate": [ - 5653, + 5941, { "distinct_on": [ - 5670, + 5958, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -177698,35 +185169,35 @@ export default { 40 ], "order_by": [ - 5669, + 5957, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5661 + 5949 ] } ], "v_player_match_map_hltv_stream": [ - 5652, + 5940, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5678, + 5966, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 5661 + 5949 ] } ], "v_player_match_map_roles": [ - 5689, + 5977, { "distinct_on": [ - 5697, + 5985, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -177736,19 +185207,19 @@ export default { 40 ], "order_by": [ - 5696, + 5984, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5693 + 5981 ] } ], "v_player_match_map_roles_aggregate": [ - 5690, + 5978, { "distinct_on": [ - 5697, + 5985, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -177758,35 +185229,35 @@ export default { 40 ], "order_by": [ - 5696, + 5984, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5693 + 5981 ] } ], "v_player_match_map_roles_stream": [ - 5689, + 5977, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5701, + 5989, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 5693 + 5981 ] } ], "v_player_match_performance": [ - 5707, + 5995, { "distinct_on": [ - 5715, + 6003, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -177796,19 +185267,19 @@ export default { 40 ], "order_by": [ - 5714, + 6002, "[v_player_match_performance_order_by!]" ], "where": [ - 5711 + 5999 ] } ], "v_player_match_performance_aggregate": [ - 5708, + 5996, { "distinct_on": [ - 5715, + 6003, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -177818,35 +185289,35 @@ export default { 40 ], "order_by": [ - 5714, + 6002, "[v_player_match_performance_order_by!]" ], "where": [ - 5711 + 5999 ] } ], "v_player_match_performance_stream": [ - 5707, + 5995, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5719, + 6007, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 5711 + 5999 ] } ], "v_player_match_rating": [ - 5725, + 6013, { "distinct_on": [ - 5733, + 6021, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -177856,19 +185327,19 @@ export default { 40 ], "order_by": [ - 5732, + 6020, "[v_player_match_rating_order_by!]" ], "where": [ - 5729 + 6017 ] } ], "v_player_match_rating_aggregate": [ - 5726, + 6014, { "distinct_on": [ - 5733, + 6021, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -177878,35 +185349,35 @@ export default { 40 ], "order_by": [ - 5732, + 6020, "[v_player_match_rating_order_by!]" ], "where": [ - 5729 + 6017 ] } ], "v_player_match_rating_stream": [ - 5725, + 6013, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5737, + 6025, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 5729 + 6017 ] } ], "v_player_multi_kills": [ - 5743, + 6031, { "distinct_on": [ - 5759, + 6047, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -177916,19 +185387,19 @@ export default { 40 ], "order_by": [ - 5758, + 6046, "[v_player_multi_kills_order_by!]" ], "where": [ - 5752 + 6040 ] } ], "v_player_multi_kills_aggregate": [ - 5744, + 6032, { "distinct_on": [ - 5759, + 6047, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -177938,35 +185409,35 @@ export default { 40 ], "order_by": [ - 5758, + 6046, "[v_player_multi_kills_order_by!]" ], "where": [ - 5752 + 6040 ] } ], "v_player_multi_kills_stream": [ - 5743, + 6031, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5766, + 6054, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 5752 + 6040 ] } ], "v_player_queue_partners": [ - 5776, + 6064, { "distinct_on": [ - 5784, + 6072, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -177976,19 +185447,19 @@ export default { 40 ], "order_by": [ - 5783, + 6071, "[v_player_queue_partners_order_by!]" ], "where": [ - 5780 + 6068 ] } ], "v_player_queue_partners_aggregate": [ - 5777, + 6065, { "distinct_on": [ - 5784, + 6072, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -177998,35 +185469,35 @@ export default { 40 ], "order_by": [ - 5783, + 6071, "[v_player_queue_partners_order_by!]" ], "where": [ - 5780 + 6068 ] } ], "v_player_queue_partners_stream": [ - 5776, + 6064, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5788, + 6076, "[v_player_queue_partners_stream_cursor_input]!" ], "where": [ - 5780 + 6068 ] } ], "v_player_weapon_damage": [ - 5794, + 6082, { "distinct_on": [ - 5802, + 6090, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -178036,19 +185507,19 @@ export default { 40 ], "order_by": [ - 5801, + 6089, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5798 + 6086 ] } ], "v_player_weapon_damage_aggregate": [ - 5795, + 6083, { "distinct_on": [ - 5802, + 6090, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -178058,35 +185529,35 @@ export default { 40 ], "order_by": [ - 5801, + 6089, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5798 + 6086 ] } ], "v_player_weapon_damage_stream": [ - 5794, + 6082, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5806, + 6094, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5798 + 6086 ] } ], "v_player_weapon_kills": [ - 5812, + 6100, { "distinct_on": [ - 5820, + 6108, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -178096,19 +185567,19 @@ export default { 40 ], "order_by": [ - 5819, + 6107, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5816 + 6104 ] } ], "v_player_weapon_kills_aggregate": [ - 5813, + 6101, { "distinct_on": [ - 5820, + 6108, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -178118,35 +185589,35 @@ export default { 40 ], "order_by": [ - 5819, + 6107, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5816 + 6104 ] } ], "v_player_weapon_kills_stream": [ - 5812, + 6100, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5824, + 6112, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5816 + 6104 ] } ], "v_pool_maps": [ - 5830, + 6118, { "distinct_on": [ - 5847, + 6135, "[v_pool_maps_select_column!]" ], "limit": [ @@ -178156,19 +185627,19 @@ export default { 40 ], "order_by": [ - 5846, + 6134, "[v_pool_maps_order_by!]" ], "where": [ - 5839 + 6127 ] } ], "v_pool_maps_aggregate": [ - 5831, + 6119, { "distinct_on": [ - 5847, + 6135, "[v_pool_maps_select_column!]" ], "limit": [ @@ -178178,35 +185649,35 @@ export default { 40 ], "order_by": [ - 5846, + 6134, "[v_pool_maps_order_by!]" ], "where": [ - 5839 + 6127 ] } ], "v_pool_maps_stream": [ - 5830, + 6118, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5851, + 6139, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5839 + 6127 ] } ], "v_steam_account_pool_status": [ - 5854, + 6142, { "distinct_on": [ - 5862, + 6150, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -178216,19 +185687,19 @@ export default { 40 ], "order_by": [ - 5861, + 6149, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5858 + 6146 ] } ], "v_steam_account_pool_status_aggregate": [ - 5855, + 6143, { "distinct_on": [ - 5862, + 6150, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -178238,35 +185709,35 @@ export default { 40 ], "order_by": [ - 5861, + 6149, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5858 + 6146 ] } ], "v_steam_account_pool_status_stream": [ - 5854, + 6142, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5866, + 6154, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5858 + 6146 ] } ], "v_team_ranks": [ - 5872, + 6160, { "distinct_on": [ - 5882, + 6170, "[v_team_ranks_select_column!]" ], "limit": [ @@ -178276,19 +185747,19 @@ export default { 40 ], "order_by": [ - 5881, + 6169, "[v_team_ranks_order_by!]" ], "where": [ - 5876 + 6164 ] } ], "v_team_ranks_aggregate": [ - 5873, + 6161, { "distinct_on": [ - 5882, + 6170, "[v_team_ranks_select_column!]" ], "limit": [ @@ -178298,35 +185769,35 @@ export default { 40 ], "order_by": [ - 5881, + 6169, "[v_team_ranks_order_by!]" ], "where": [ - 5876 + 6164 ] } ], "v_team_ranks_stream": [ - 5872, + 6160, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5886, + 6174, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5876 + 6164 ] } ], "v_team_reputation": [ - 5892, + 6180, { "distinct_on": [ - 5902, + 6190, "[v_team_reputation_select_column!]" ], "limit": [ @@ -178336,19 +185807,19 @@ export default { 40 ], "order_by": [ - 5901, + 6189, "[v_team_reputation_order_by!]" ], "where": [ - 5896 + 6184 ] } ], "v_team_reputation_aggregate": [ - 5893, + 6181, { "distinct_on": [ - 5902, + 6190, "[v_team_reputation_select_column!]" ], "limit": [ @@ -178358,35 +185829,35 @@ export default { 40 ], "order_by": [ - 5901, + 6189, "[v_team_reputation_order_by!]" ], "where": [ - 5896 + 6184 ] } ], "v_team_reputation_stream": [ - 5892, + 6180, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5906, + 6194, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5896 + 6184 ] } ], "v_team_stage_results": [ - 5912, + 6200, { "distinct_on": [ - 5944, + 6232, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -178396,19 +185867,19 @@ export default { 40 ], "order_by": [ - 5942, + 6230, "[v_team_stage_results_order_by!]" ], "where": [ - 5931 + 6219 ] } ], "v_team_stage_results_aggregate": [ - 5913, + 6201, { "distinct_on": [ - 5944, + 6232, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -178418,48 +185889,48 @@ export default { 40 ], "order_by": [ - 5942, + 6230, "[v_team_stage_results_order_by!]" ], "where": [ - 5931 + 6219 ] } ], "v_team_stage_results_by_pk": [ - 5912, + 6200, { "tournament_stage_id": [ - 5170, + 5458, "uuid!" ], "tournament_team_id": [ - 5170, + 5458, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5912, + 6200, { "batch_size": [ 40, "Int!" ], "cursor": [ - 5960, + 6248, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5931 + 6219 ] } ], "v_team_tournament_results": [ - 5972, + 6260, { "distinct_on": [ - 5998, + 6286, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -178469,19 +185940,19 @@ export default { 40 ], "order_by": [ - 5997, + 6285, "[v_team_tournament_results_order_by!]" ], "where": [ - 5991 + 6279 ] } ], "v_team_tournament_results_aggregate": [ - 5973, + 6261, { "distinct_on": [ - 5998, + 6286, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -178491,35 +185962,35 @@ export default { 40 ], "order_by": [ - 5997, + 6285, "[v_team_tournament_results_order_by!]" ], "where": [ - 5991 + 6279 ] } ], "v_team_tournament_results_stream": [ - 5972, + 6260, { "batch_size": [ 40, "Int!" ], "cursor": [ - 6013, + 6301, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5991 + 6279 ] } ], "v_tournament_player_stats": [ - 6023, + 6311, { "distinct_on": [ - 6049, + 6337, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -178529,19 +186000,19 @@ export default { 40 ], "order_by": [ - 6048, + 6336, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6042 + 6330 ] } ], "v_tournament_player_stats_aggregate": [ - 6024, + 6312, { "distinct_on": [ - 6049, + 6337, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -178551,32 +186022,32 @@ export default { 40 ], "order_by": [ - 6048, + 6336, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6042 + 6330 ] } ], "v_tournament_player_stats_stream": [ - 6023, + 6311, { "batch_size": [ 40, "Int!" ], "cursor": [ - 6064, + 6352, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 6042 + 6330 ] } ], "__typename": [ - 80 + 83 ] } } 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..a81c412b3 --- /dev/null +++ b/hasura/functions/game-plugins/install_state.sql @@ -0,0 +1,76 @@ +-- 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. +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 + WHERE n.plugin_slug = plugin.slug + AND n.source = 'managed' + AND n.detected = true; +$$ 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; +BEGIN + SELECT EXISTS ( + SELECT 1 FROM public.game_plugin_installs + WHERE plugin_slug = plugin.slug AND enabled = true + ) INTO _requested; + + SELECT count(*) INTO _installed + FROM public.game_server_node_plugins + WHERE plugin_slug = plugin.slug AND source = 'managed' AND detected = true; + + SELECT count(*) INTO _failed + FROM public.game_server_node_plugins + WHERE plugin_slug = plugin.slug AND status = 'Failed'; + + 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 EXISTS ( + SELECT 1 FROM public.game_server_node_plugins + WHERE plugin_slug = plugin.slug AND source = 'manual' + ) 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..512c5de9a 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,62 @@ 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 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..4b96eb4e5 100644 --- a/hasura/metadata/actions.yaml +++ b/hasura/metadata/actions.yaml @@ -1155,6 +1155,54 @@ 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: 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..6aa58eff8 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_game_modes.yaml @@ -0,0 +1,280 @@ +table: + name: game_modes + schema: public +object_relationships: + - name: map_pool + using: + foreign_key_constraint_on: map_pool_id +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 + - map_pool_id + - cfg + - extra_game_params + - match_option_defaults + - 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 + - map_pool_id + - cfg + - extra_game_params + - match_option_defaults + - 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 + - map_pool_id + - cfg + - extra_game_params + - match_option_defaults + - 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 + - map_pool_id + - cfg + - extra_game_params + - match_option_defaults + - 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 + - map_pool_id + - cfg + - extra_game_params + - match_option_defaults + - 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 + - map_pool_id + - cfg + - extra_game_params + - match_option_defaults + - 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 + - map_pool_id + - cfg + - extra_game_params + - match_option_defaults + - 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 + - map_pool_id + - cfg + - extra_game_params + - match_option_defaults + - 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 + - map_pool_id + - cfg + - extra_game_params + - match_option_defaults + computed_fields: + - supported_runtimes + - runtime_conflicts + comment: "" +update_permissions: + - role: administrator + permission: + columns: + - slug + - name + - description + - icon + - enabled + - archived_at + - competitive_safe + - map_pool_id + - cfg + - extra_game_params + - match_option_defaults + 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..7e75250cb --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_game_plugin_installs.yaml @@ -0,0 +1,49 @@ +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 + - created_at + - updated_at + filter: {} + allow_aggregations: true + comment: "" +insert_permissions: + - role: administrator + permission: + check: {} + columns: + - plugin_slug + - version + - channel + - enabled + - always_load + comment: "" +update_permissions: + - role: administrator + permission: + columns: + - plugin_slug + - version + - channel + - enabled + - always_load + 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..d64beb77b --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_game_plugins.yaml @@ -0,0 +1,321 @@ +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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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 + - 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_plugin_registry/down.sql b/hasura/migrations/default/1878000000000_game_plugin_registry/down.sql new file mode 100644 index 000000000..baade3b65 --- /dev/null +++ b/hasura/migrations/default/1878000000000_game_plugin_registry/down.sql @@ -0,0 +1,3 @@ +DROP TABLE IF EXISTS "public"."game_plugin_versions"; +DROP TABLE IF EXISTS "public"."game_plugins"; +DROP TABLE IF EXISTS "public"."e_game_plugin_kinds"; diff --git a/hasura/migrations/default/1878000000000_game_plugin_registry/up.sql b/hasura/migrations/default/1878000000000_game_plugin_registry/up.sql new file mode 100644 index 000000000..6d46ad0bf --- /dev/null +++ b/hasura/migrations/default/1878000000000_game_plugin_registry/up.sql @@ -0,0 +1,58 @@ +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"."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, + "config_schema" jsonb, + "config_path" text, + "cvars" text[] NOT NULL DEFAULT '{}', + "panel" jsonb, + "wiring" jsonb, + "synced_at" timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY ("slug"), + CONSTRAINT "game_plugins_kind_fkey" FOREIGN KEY ("kind") + REFERENCES "public"."e_game_plugin_kinds" ("value") ON UPDATE CASCADE ON DELETE RESTRICT +); + +-- The slug is also the directory name in a node's plugin store, so a value that +-- is not path-safe would let a registry entry escape the store root. +ALTER TABLE "public"."game_plugins" + ADD CONSTRAINT "game_plugins_slug_check" CHECK ("slug" ~ '^[a-z0-9]+(?:-[a-z0-9]+)*$'); + +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')) +); + +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"); diff --git a/hasura/migrations/default/1878000000100_game_plugin_installs/down.sql b/hasura/migrations/default/1878000000100_game_plugin_installs/down.sql new file mode 100644 index 000000000..09c6b1cfc --- /dev/null +++ b/hasura/migrations/default/1878000000100_game_plugin_installs/down.sql @@ -0,0 +1,3 @@ +DROP TABLE IF EXISTS "public"."game_server_node_plugins"; +DROP TABLE IF EXISTS "public"."e_game_plugin_channels"; +DROP TABLE IF EXISTS "public"."e_game_plugin_install_statuses"; diff --git a/hasura/migrations/default/1878000000100_game_plugin_installs/up.sql b/hasura/migrations/default/1878000000100_game_plugin_installs/up.sql new file mode 100644 index 000000000..cffa329f9 --- /dev/null +++ b/hasura/migrations/default/1878000000100_game_plugin_installs/up.sql @@ -0,0 +1,46 @@ +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_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 into custom-plugins 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')) +); + +CREATE INDEX IF NOT EXISTS "game_server_node_plugins_slug_idx" + ON "public"."game_server_node_plugins" ("plugin_slug"); diff --git a/hasura/migrations/default/1878000000200_game_modes/down.sql b/hasura/migrations/default/1878000000200_game_modes/down.sql new file mode 100644 index 000000000..f77615371 --- /dev/null +++ b/hasura/migrations/default/1878000000200_game_modes/down.sql @@ -0,0 +1,2 @@ +DROP TABLE IF EXISTS "public"."game_mode_plugins"; +DROP TABLE IF EXISTS "public"."game_modes"; diff --git a/hasura/migrations/default/1878000000200_game_modes/up.sql b/hasura/migrations/default/1878000000200_game_modes/up.sql new file mode 100644 index 000000000..2f100b035 --- /dev/null +++ b/hasura/migrations/default/1878000000200_game_modes/up.sql @@ -0,0 +1,44 @@ +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, + "runtime" text, + "map_pool_id" uuid, + "cfg" text, + "extra_game_params" text, + "match_option_defaults" jsonb NOT NULL DEFAULT '{}'::jsonb, + "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]+)*$'), + CONSTRAINT "game_modes_runtime_fkey" FOREIGN KEY ("runtime") + REFERENCES "public"."e_plugin_runtimes" ("value") ON UPDATE CASCADE ON DELETE RESTRICT, + CONSTRAINT "game_modes_map_pool_fkey" FOREIGN KEY ("map_pool_id") + REFERENCES "public"."map_pools" ("id") ON UPDATE CASCADE ON DELETE SET NULL +); + +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 +); + +CREATE INDEX IF NOT EXISTS "game_modes_enabled_idx" + ON "public"."game_modes" ("enabled") WHERE "archived_at" IS NULL; diff --git a/hasura/migrations/default/1878000000300_match_options_game_mode/down.sql b/hasura/migrations/default/1878000000300_match_options_game_mode/down.sql new file mode 100644 index 000000000..13fce0d6f --- /dev/null +++ b/hasura/migrations/default/1878000000300_match_options_game_mode/down.sql @@ -0,0 +1,7 @@ +DROP INDEX IF EXISTS "public"."match_options_game_mode_idx"; + +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"; diff --git a/hasura/migrations/default/1878000000300_match_options_game_mode/up.sql b/hasura/migrations/default/1878000000300_match_options_game_mode/up.sql new file mode 100644 index 000000000..54445aa2a --- /dev/null +++ b/hasura/migrations/default/1878000000300_match_options_game_mode/up.sql @@ -0,0 +1,9 @@ +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; + +CREATE INDEX IF NOT EXISTS "match_options_game_mode_idx" + ON "public"."match_options" ("game_mode_id") WHERE "game_mode_id" IS NOT NULL; diff --git a/hasura/migrations/default/1878000000400_servers_game_mode/down.sql b/hasura/migrations/default/1878000000400_servers_game_mode/down.sql new file mode 100644 index 000000000..44adc1b71 --- /dev/null +++ b/hasura/migrations/default/1878000000400_servers_game_mode/down.sql @@ -0,0 +1,13 @@ +DROP INDEX IF EXISTS "public"."custom_pages_plugin_slug_idx"; + +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 "game_mode_id"; diff --git a/hasura/migrations/default/1878000000400_servers_game_mode/up.sql b/hasura/migrations/default/1878000000400_servers_game_mode/up.sql new file mode 100644 index 000000000..38ba7f364 --- /dev/null +++ b/hasura/migrations/default/1878000000400_servers_game_mode/up.sql @@ -0,0 +1,19 @@ +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); + +ALTER TABLE "public"."custom_pages" + ADD COLUMN IF NOT EXISTS "plugin_slug" text; + +CREATE UNIQUE INDEX IF NOT EXISTS "custom_pages_plugin_slug_idx" + ON "public"."custom_pages" ("plugin_slug") WHERE "plugin_slug" IS NOT NULL; diff --git a/hasura/migrations/default/1878000000500_game_plugins_pairs_with/down.sql b/hasura/migrations/default/1878000000500_game_plugins_pairs_with/down.sql new file mode 100644 index 000000000..80df086ff --- /dev/null +++ b/hasura/migrations/default/1878000000500_game_plugins_pairs_with/down.sql @@ -0,0 +1,2 @@ +ALTER TABLE "public"."game_plugins" + DROP COLUMN IF EXISTS "pairs_with"; diff --git a/hasura/migrations/default/1878000000500_game_plugins_pairs_with/up.sql b/hasura/migrations/default/1878000000500_game_plugins_pairs_with/up.sql new file mode 100644 index 000000000..d5b467300 --- /dev/null +++ b/hasura/migrations/default/1878000000500_game_plugins_pairs_with/up.sql @@ -0,0 +1,5 @@ +-- Slugs of catalog entries an entry 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. +ALTER TABLE "public"."game_plugins" + ADD COLUMN IF NOT EXISTS "pairs_with" text[] NOT NULL DEFAULT '{}'; diff --git a/hasura/migrations/default/1878000000600_game_plugin_desired/down.sql b/hasura/migrations/default/1878000000600_game_plugin_desired/down.sql new file mode 100644 index 000000000..14941760b --- /dev/null +++ b/hasura/migrations/default/1878000000600_game_plugin_desired/down.sql @@ -0,0 +1,4 @@ +ALTER TABLE "public"."game_server_nodes" + DROP COLUMN IF EXISTS "plugins_synced_at"; + +DROP TABLE IF EXISTS "public"."game_plugin_installs"; diff --git a/hasura/migrations/default/1878000000600_game_plugin_desired/up.sql b/hasura/migrations/default/1878000000600_game_plugin_desired/up.sql new file mode 100644 index 000000000..6da6f1ee3 --- /dev/null +++ b/hasura/migrations/default/1878000000600_game_plugin_desired/up.sql @@ -0,0 +1,27 @@ +-- 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, + "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)) +); + +-- 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; diff --git a/hasura/migrations/default/1878000000700_game_plugin_always_load/down.sql b/hasura/migrations/default/1878000000700_game_plugin_always_load/down.sql new file mode 100644 index 000000000..7865d63be --- /dev/null +++ b/hasura/migrations/default/1878000000700_game_plugin_always_load/down.sql @@ -0,0 +1,2 @@ +ALTER TABLE "public"."game_plugin_installs" + DROP COLUMN IF EXISTS "always_load"; diff --git a/hasura/migrations/default/1878000000700_game_plugin_always_load/up.sql b/hasura/migrations/default/1878000000700_game_plugin_always_load/up.sql new file mode 100644 index 000000000..5ba30e59b --- /dev/null +++ b/hasura/migrations/default/1878000000700_game_plugin_always_load/up.sql @@ -0,0 +1,6 @@ +-- Some plugins are not part of a "fun mode" at all -- stats collectors, admin +-- tooling -- and belong on every server including ranked. Without this the only +-- way to get that was to hand-place the files, which is the very thing the +-- catalog replaces. +ALTER TABLE "public"."game_plugin_installs" + ADD COLUMN IF NOT EXISTS "always_load" boolean NOT NULL DEFAULT false; diff --git a/hasura/migrations/default/1878000000800_matches_counts_toward_ranking/down.sql b/hasura/migrations/default/1878000000800_matches_counts_toward_ranking/down.sql new file mode 100644 index 000000000..d4cd0301f --- /dev/null +++ b/hasura/migrations/default/1878000000800_matches_counts_toward_ranking/down.sql @@ -0,0 +1,4 @@ +DROP INDEX IF EXISTS "public"."matches_counts_toward_ranking_idx"; + +ALTER TABLE "public"."matches" + DROP COLUMN IF EXISTS "counts_toward_ranking"; diff --git a/hasura/migrations/default/1878000000800_matches_counts_toward_ranking/up.sql b/hasura/migrations/default/1878000000800_matches_counts_toward_ranking/up.sql new file mode 100644 index 000000000..a5596bbe2 --- /dev/null +++ b/hasura/migrations/default/1878000000800_matches_counts_toward_ranking/up.sql @@ -0,0 +1,14 @@ +-- 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 "matches_counts_toward_ranking_idx" + ON "public"."matches" ("counts_toward_ranking") + WHERE "counts_toward_ranking" = false; diff --git a/hasura/migrations/default/1878000000900_game_mode_runtime_derived/down.sql b/hasura/migrations/default/1878000000900_game_mode_runtime_derived/down.sql new file mode 100644 index 000000000..d3870a41c --- /dev/null +++ b/hasura/migrations/default/1878000000900_game_mode_runtime_derived/down.sql @@ -0,0 +1,6 @@ +ALTER TABLE "public"."game_modes" + ADD COLUMN IF NOT EXISTS "runtime" text; + +ALTER TABLE "public"."game_modes" + ADD CONSTRAINT "game_modes_runtime_fkey" FOREIGN KEY ("runtime") + REFERENCES "public"."e_plugin_runtimes" ("value") ON UPDATE CASCADE ON DELETE RESTRICT; diff --git a/hasura/migrations/default/1878000000900_game_mode_runtime_derived/up.sql b/hasura/migrations/default/1878000000900_game_mode_runtime_derived/up.sql new file mode 100644 index 000000000..56537df70 --- /dev/null +++ b/hasura/migrations/default/1878000000900_game_mode_runtime_derived/up.sql @@ -0,0 +1,9 @@ +-- A mode does not get to declare which framework it runs on. That is decided by +-- the plugins it selects: a mode is runnable on a runtime only if every plugin +-- in it publishes a build for that runtime. Picking it by hand could disagree +-- with the plugins and silently boot a server with none of them. +ALTER TABLE "public"."game_modes" + DROP CONSTRAINT IF EXISTS "game_modes_runtime_fkey"; + +ALTER TABLE "public"."game_modes" + DROP COLUMN IF EXISTS "runtime"; diff --git a/hasura/migrations/default/1878000001000_servers_loaded_plugins/down.sql b/hasura/migrations/default/1878000001000_servers_loaded_plugins/down.sql new file mode 100644 index 000000000..3f900a682 --- /dev/null +++ b/hasura/migrations/default/1878000001000_servers_loaded_plugins/down.sql @@ -0,0 +1,5 @@ +ALTER TABLE "public"."servers" + DROP COLUMN IF EXISTS "plugins_checked_at"; + +ALTER TABLE "public"."servers" + DROP COLUMN IF EXISTS "loaded_plugins"; diff --git a/hasura/migrations/default/1878000001000_servers_loaded_plugins/up.sql b/hasura/migrations/default/1878000001000_servers_loaded_plugins/up.sql new file mode 100644 index 000000000..3e0ae82a5 --- /dev/null +++ b/hasura/migrations/default/1878000001000_servers_loaded_plugins/up.sql @@ -0,0 +1,9 @@ +-- 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; 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..45d8b31b7 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,19 @@ 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 = gameMode + ? [ + { name: "ENABLED_PLUGINS", value: gameMode.enabledPlugins }, + ...(gameMode.pluginConfigs + ? [{ name: "PLUGIN_CONFIGS", value: gameMode.pluginConfigs }] + : []), + ] + : []; + const dedicatedServerDeploymentName = this.getDedicatedServerDeploymentName(serverId); @@ -257,7 +272,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 +299,7 @@ export class DedicatedServersService { name: "STEAM_RELAY", value: steamRelay ? "true" : "false", }, + ...gameModeEnvironment, ], volumeMounts: [ { @@ -302,6 +318,11 @@ export class DedicatedServersService { name: `dedicated-server-data-${server.id}`, mountPath: `/opt/custom-plugins`, }, + { + name: `plugin-store-${sanitizedGameServerNodeId}`, + mountPath: `/opt/plugin-store`, + readOnly: true, + }, ], }, ], @@ -325,16 +346,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: `plugin-store-${sanitizedGameServerNodeId}`, hostPath: { type: "DirectoryOrCreate", - path: `/opt/5stack/servers/${server.id}`, + path: `/opt/5stack/plugin-store`, }, }, ], 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..f050fa050 --- /dev/null +++ b/src/game-plugins/enums/GamePluginQueues.ts @@ -0,0 +1,4 @@ +export enum GamePluginQueues { + Registry = "game-plugin-registry", + Reconcile = "game-plugin-reconcile", +} 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..7230106f5 --- /dev/null +++ b/src/game-plugins/game-modes.service.spec.ts @@ -0,0 +1,104 @@ +import { GameModesService } 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("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") } 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(); + }); +}); diff --git a/src/game-plugins/game-modes.service.ts b/src/game-plugins/game-modes.service.ts new file mode 100644 index 000000000..ae5d31a41 --- /dev/null +++ b/src/game-plugins/game-modes.service.ts @@ -0,0 +1,225 @@ +import { Injectable, Logger } from "@nestjs/common"; +import { PostgresService } from "../postgres/postgres.service"; +import { PluginRuntimeService } from "../plugin-runtime/plugin-runtime.service"; + +export type ResolvedGameMode = { + id: string; + slug: string; + name: string; + cfg: string | null; + extraGameParams: string | null; + enabledPlugins: string; + pluginConfigs: string | null; +}; + +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; +}; + +@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>( + `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), + (SELECT s.game_mode_id FROM servers s + WHERE s.id = $1 AND s.type IS DISTINCT FROM 'Ranked') + ) AS game_mode_id`, + [serverId, matchId ?? null], + ); + + const mode = row?.game_mode_id + ? await this.resolve(row.game_mode_id) + : null; + + return await this.withAlwaysLoad(mode); + } + + // 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, + ): Promise { + const always = await this.alwaysLoadPlugins(); + + if (always.length === 0) { + return 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 { ...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 { + id: "", + slug: "", + name: "", + cfg: null, + extraGameParams: null, + enabledPlugins: enabled.join(","), + pluginConfigs: null, + }; + } + + public async resolve(gameModeId: string): 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 = await this.pluginRuntime.getPluginRuntime(); + + // 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 + 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], + ); + + const enabled: Array = []; + const configs: Record = {}; + + for (const plugin of plugins) { + if (!plugin.version) { + this.logger.warn( + `mode ${mode.slug}: ${plugin.plugin_slug} is not installed on 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, + }; + } + + // 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(): Promise> { + const runtime = await this.pluginRuntime.getPluginRuntime(); + + 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 + 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], + ); + + return rows + .filter((row) => row.version) + .map((row) => `${row.plugin_slug}@${row.version}`); + } + + // The env a game server pod needs, for callers that want it prepared rather + // than assembling it themselves. + public async environmentFor( + serverId: string, + matchId?: string, + ): Promise> { + const mode = await this.resolveForServer(serverId, matchId); + + if (!mode?.enabledPlugins) { + return []; + } + + const environment = [ + { name: "ENABLED_PLUGINS", value: mode.enabledPlugins }, + ]; + + if (mode.pluginConfigs) { + environment.push({ name: "PLUGIN_CONFIGS", value: mode.pluginConfigs }); + } + + 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..a4d00604c --- /dev/null +++ b/src/game-plugins/game-plugins.controller.ts @@ -0,0 +1,173 @@ +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 }; + } + + @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.resolve(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.ts b/src/game-plugins/game-plugins.service.ts new file mode 100644 index 000000000..c61a2480a --- /dev/null +++ b/src/game-plugins/game-plugins.service.ts @@ -0,0 +1,872 @@ +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 { + NodeInventoryPlugin, + RegistryIndex, + RegistryPlugin, +} from "./types/Registry"; + +@Injectable() +export class GamePluginsService { + private static readonly DEFAULT_REGISTRY_URL = + "https://registry.5stack.gg/"; + + 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 }; + } + + let versions = 0; + + for (const plugin of index.plugins) { + 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.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, 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, 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, + 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.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; + } + + // 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 { + const runtime = await this.pluginRuntime.getPluginRuntime(); + + 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) + VALUES ($1, $2, $3, $4, $4, $5, true, 'Installed', now()) + 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 = COALESCE(EXCLUDED.runtime, game_server_node_plugins.runtime), + last_error = null, + updated_at = now()`, + [ + nodeId, + plugin.slug, + plugin.runtime ?? 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) + 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; + } + + public async install( + nodeId: string, + slug: string, + version?: string, + ): Promise { + const runtime = await this.pluginRuntime.getPluginRuntime(); + const resolved = await this.resolveVersion(slug, runtime, version); + + await this.recordInstall(nodeId, slug, runtime, { + version: resolved.version, + status: "Installing", + last_error: null, + }); + + try { + await this.callNode(nodeId, "install", { + method: "POST", + body: JSON.stringify({ + slug, + version: resolved.version, + url: resolved.url, + sha256: resolved.sha256, + layout: resolved.layout, + installPath: resolved.install_path ?? undefined, + }), + }); + + await this.recordInstall(nodeId, slug, runtime, { + version: resolved.version, + status: "Installed", + last_error: null, + installed_at: new Date().toISOString(), + }); + } catch (error) { + await this.recordInstall(nodeId, slug, runtime, { + version: resolved.version, + status: "Failed", + last_error: error.message ?? String(error), + }); + + throw error; + } + } + + // 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(); + } + + public async uninstall(nodeId: string, slug: string): Promise { + const [inUse] = await this.postgres.query>( + `SELECT 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 + LIMIT 1`, + [slug], + ); + + if (inUse) { + throw new BadRequestException( + `${slug} is used by the "${inUse.name}" mode; remove it from the mode first`, + ); + } + + await this.callNode(nodeId, "remove", { + method: "DELETE", + body: JSON.stringify({ slug }), + }); + + await this.postgres.query( + `DELETE FROM public.game_server_node_plugins + WHERE game_server_node_id = $1 AND plugin_slug = $2`, + [nodeId, slug], + ); + } + + // 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 { + const runtime = await this.pluginRuntime.getPluginRuntime(); + + await this.postgres.query( + `INSERT INTO public.game_server_node_plugins + (game_server_node_id, plugin_slug, runtime, status, source, detected) + SELECT id, $1, $2, 'Pending', 'managed', false + FROM public.game_server_nodes + WHERE enabled = true + ON CONFLICT (game_server_node_id, plugin_slug) DO NOTHING`, + [slug, runtime], + ); + } + + // 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 { + const runtime = await this.pluginRuntime.getPluginRuntime(); + + 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) + VALUES ($1, $2, $3, $4, $5, $6, 'managed', false, now()) + ON CONFLICT (game_server_node_id, plugin_slug) DO UPDATE SET + status = EXCLUDED.status, + version = COALESCE(EXCLUDED.version, game_server_node_plugins.version), + last_error = EXCLUDED.last_error, + updated_at = now()`, + [ + nodeId, + progress.slug, + runtime, + progress.version ?? null, + progress.status, + progress.error ?? null, + ], + ); + } + + private async recordInstall( + nodeId: string, + slug: string, + runtime: string, + fields: { + version: string; + status: string; + last_error: string | null; + installed_at?: string; + }, + ): Promise { + await this.postgres.query( + `INSERT INTO public.game_server_node_plugins + (game_server_node_id, plugin_slug, runtime, version, status, last_error, + installed_at, source, updated_at) + VALUES ($1, $2, $3, $4, $5, $6, $7, 'managed', now()) + ON CONFLICT (game_server_node_id, plugin_slug) DO UPDATE SET + runtime = EXCLUDED.runtime, + version = EXCLUDED.version, + status = EXCLUDED.status, + last_error = EXCLUDED.last_error, + installed_at = COALESCE(EXCLUDED.installed_at, game_server_node_plugins.installed_at), + source = 'managed', + updated_at = now()`, + [ + nodeId, + slug, + runtime, + fields.version, + fields.status, + fields.last_error, + fields.installed_at ?? 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..e91058c11 --- /dev/null +++ b/src/game-plugins/types/Registry.ts @@ -0,0 +1,47 @@ +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; + 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; +}; + +export type NodeInventoryPlugin = { + slug: string; + version: string | null; + runtime: string | null; + source: "managed" | "manual"; + path: string; + files: Array; + digest: string | null; +}; diff --git a/src/game-server-node/game-server-node.controller.ts b/src/game-server-node/game-server-node.controller.ts index 46bf55e86..0cf83e2c6 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) @@ -547,6 +549,7 @@ export class GameServerNodeController { mkdir -p /opt/5stack/serverfiles mkdir -p /opt/5stack/serverfiles-csgo mkdir -p /opt/5stack/custom-plugins + mkdir -p /opt/5stack/plugin-store ok "ready" step "Installing tailscale" @@ -937,6 +940,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 +973,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..74b788e03 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,20 @@ export class MatchAssistantService { const showEloRanks = fivestackRanksSetting?.value === "true"; + const gameMode = await this.gameModesService.resolveForServer( + server.id, + matchId, + ); + + const gameModeEnvironment = gameMode + ? [ + { name: "ENABLED_PLUGINS", value: gameMode.enabledPlugins }, + ...(gameMode.pluginConfigs + ? [{ name: "PLUGIN_CONFIGS", value: gameMode.pluginConfigs }] + : []), + ] + : []; + await batch.createNamespacedJob({ namespace: this.namespace, body: { @@ -877,7 +893,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 +923,7 @@ export class MatchAssistantService { ...(showEloRanks ? [{ name: "SHOW_ELO_RANKS", value: "true" }] : []), + ...gameModeEnvironment, ], volumeMounts: [ { @@ -925,6 +942,11 @@ export class MatchAssistantService { name: `custom-plugins-${sanitizedGameServerNodeId}`, mountPath: "/opt/custom-plugins", }, + { + name: `plugin-store-${sanitizedGameServerNodeId}`, + mountPath: "/opt/plugin-store", + readOnly: true, + }, ], }, ], @@ -954,6 +976,13 @@ export class MatchAssistantService { path: `/opt/5stack/custom-plugins`, }, }, + { + name: `plugin-store-${sanitizedGameServerNodeId}`, + hostPath: { + path: `/opt/5stack/plugin-store`, + type: "DirectoryOrCreate", + }, + }, ], }, }, 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..0b14834c7 100644 --- a/src/system/enums/SystemSettingName.ts +++ b/src/system/enums/SystemSettingName.ts @@ -37,6 +37,9 @@ export enum SystemSettingName { LeaguesEnabled = "public.leagues_enabled", GameServerPluginRuntime = "public.game_server_plugin_runtime", GameServerPluginRuntimeLocked = "game_server_plugin_runtime_locked", + GamePluginRegistryUrl = "game_plugin_registry_url", + GamePluginsEnabled = "public.game_plugins_enabled", + PluginDirectoryEnabled = "public.plugin_directory_enabled", // 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-modes.spec.ts b/test/game-modes.spec.ts new file mode 100644 index 000000000..916dc6737 --- /dev/null +++ b/test/game-modes.spec.ts @@ -0,0 +1,594 @@ +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 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. + 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..22e8b7efd --- /dev/null +++ b/test/game-plugin-install-state.spec.ts @@ -0,0 +1,142 @@ +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"); + }); + + 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/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; From df9f8d2b012c52282e5614301948268203621975 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Tue, 18 Aug 2026 21:49:38 -0400 Subject: [PATCH 2/8] Install plugins into custom-plugins instead of a separate store Managed installs now land in the directory operators are already told to manage plugins in, so a plugin config written on first load appears where it is expected and a game server needs no extra mount to see it. A manifest records which files each plugin owns, and setup.sh links the directory while skipping managed plugins the match mode did not select -- so a ranked match still inherits nothing. Files absent from the manifest are hand-placed and always link, exactly as before. --- src/dedicated-servers/dedicated-servers.service.ts | 12 ------------ src/game-server-node/game-server-node.controller.ts | 1 - .../match-assistant/match-assistant.service.ts | 12 ------------ 3 files changed, 25 deletions(-) diff --git a/src/dedicated-servers/dedicated-servers.service.ts b/src/dedicated-servers/dedicated-servers.service.ts index 45d8b31b7..4c528e2b1 100644 --- a/src/dedicated-servers/dedicated-servers.service.ts +++ b/src/dedicated-servers/dedicated-servers.service.ts @@ -318,11 +318,6 @@ export class DedicatedServersService { name: `dedicated-server-data-${server.id}`, mountPath: `/opt/custom-plugins`, }, - { - name: `plugin-store-${sanitizedGameServerNodeId}`, - mountPath: `/opt/plugin-store`, - readOnly: true, - }, ], }, ], @@ -352,13 +347,6 @@ export class DedicatedServersService { path: `/opt/5stack/servers/${server.id}`, }, }, - { - name: `plugin-store-${sanitizedGameServerNodeId}`, - hostPath: { - type: "DirectoryOrCreate", - path: `/opt/5stack/plugin-store`, - }, - }, ], }, }, diff --git a/src/game-server-node/game-server-node.controller.ts b/src/game-server-node/game-server-node.controller.ts index 0cf83e2c6..7b63bb220 100644 --- a/src/game-server-node/game-server-node.controller.ts +++ b/src/game-server-node/game-server-node.controller.ts @@ -549,7 +549,6 @@ export class GameServerNodeController { mkdir -p /opt/5stack/serverfiles mkdir -p /opt/5stack/serverfiles-csgo mkdir -p /opt/5stack/custom-plugins - mkdir -p /opt/5stack/plugin-store ok "ready" step "Installing tailscale" diff --git a/src/matches/match-assistant/match-assistant.service.ts b/src/matches/match-assistant/match-assistant.service.ts index 74b788e03..864857201 100644 --- a/src/matches/match-assistant/match-assistant.service.ts +++ b/src/matches/match-assistant/match-assistant.service.ts @@ -942,11 +942,6 @@ export class MatchAssistantService { name: `custom-plugins-${sanitizedGameServerNodeId}`, mountPath: "/opt/custom-plugins", }, - { - name: `plugin-store-${sanitizedGameServerNodeId}`, - mountPath: "/opt/plugin-store", - readOnly: true, - }, ], }, ], @@ -976,13 +971,6 @@ export class MatchAssistantService { path: `/opt/5stack/custom-plugins`, }, }, - { - name: `plugin-store-${sanitizedGameServerNodeId}`, - hostPath: { - path: `/opt/5stack/plugin-store`, - type: "DirectoryOrCreate", - }, - }, ], }, }, From 55e33e26180eb47aa766adea9deb4f6841da444e Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Tue, 18 Aug 2026 22:09:37 -0400 Subject: [PATCH 3/8] Mount the node plugin directory into dedicated servers --- .../dedicated-servers.service.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/dedicated-servers/dedicated-servers.service.ts b/src/dedicated-servers/dedicated-servers.service.ts index 4c528e2b1..8ea7d798b 100644 --- a/src/dedicated-servers/dedicated-servers.service.ts +++ b/src/dedicated-servers/dedicated-servers.service.ts @@ -318,6 +318,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`, + }, ], }, ], @@ -347,6 +356,13 @@ export class DedicatedServersService { path: `/opt/5stack/servers/${server.id}`, }, }, + { + name: `custom-plugins-${sanitizedGameServerNodeId}`, + hostPath: { + type: "DirectoryOrCreate", + path: `/opt/5stack/custom-plugins`, + }, + }, ], }, }, From f27b4ef0746b4c0eaeff31220b5c7ab5fdf3ef5f Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Tue, 18 Aug 2026 22:15:56 -0400 Subject: [PATCH 4/8] Drop the unused mode map pool and option defaults Neither was ever read and neither could be set -- the mode form has no field for them. A mode can only pre-fill match options anyway, since the options are locked once a match is Live, and match_option_defaults was untyped jsonb shadowing 26 typed columns where a mistyped key fails silently. Adds SQL cover for the part that matters: an unranked match still records kills and stays off the leaderboard. --- .../default/tables/public_game_modes.yaml | 24 ------- .../down.sql | 12 ++++ .../up.sql | 13 ++++ test/game-modes.spec.ts | 70 +++++++++++++++++++ 4 files changed, 95 insertions(+), 24 deletions(-) create mode 100644 hasura/migrations/default/1878000001100_game_modes_drop_unused/down.sql create mode 100644 hasura/migrations/default/1878000001100_game_modes_drop_unused/up.sql diff --git a/hasura/metadata/databases/default/tables/public_game_modes.yaml b/hasura/metadata/databases/default/tables/public_game_modes.yaml index 6aa58eff8..c71cc7a26 100644 --- a/hasura/metadata/databases/default/tables/public_game_modes.yaml +++ b/hasura/metadata/databases/default/tables/public_game_modes.yaml @@ -1,10 +1,6 @@ table: name: game_modes schema: public -object_relationships: - - name: map_pool - using: - foreign_key_constraint_on: map_pool_id computed_fields: - name: supported_runtimes definition: @@ -45,10 +41,8 @@ select_permissions: - enabled - archived_at - competitive_safe - - map_pool_id - cfg - extra_game_params - - match_option_defaults - created_at - updated_at computed_fields: @@ -68,10 +62,8 @@ select_permissions: - enabled - archived_at - competitive_safe - - map_pool_id - cfg - extra_game_params - - match_option_defaults - created_at - updated_at computed_fields: @@ -93,10 +85,8 @@ select_permissions: - enabled - archived_at - competitive_safe - - map_pool_id - cfg - extra_game_params - - match_option_defaults - created_at - updated_at computed_fields: @@ -118,10 +108,8 @@ select_permissions: - enabled - archived_at - competitive_safe - - map_pool_id - cfg - extra_game_params - - match_option_defaults - created_at - updated_at computed_fields: @@ -143,10 +131,8 @@ select_permissions: - enabled - archived_at - competitive_safe - - map_pool_id - cfg - extra_game_params - - match_option_defaults - created_at - updated_at computed_fields: @@ -168,10 +154,8 @@ select_permissions: - enabled - archived_at - competitive_safe - - map_pool_id - cfg - extra_game_params - - match_option_defaults - created_at - updated_at computed_fields: @@ -193,10 +177,8 @@ select_permissions: - enabled - archived_at - competitive_safe - - map_pool_id - cfg - extra_game_params - - match_option_defaults - created_at - updated_at computed_fields: @@ -218,10 +200,8 @@ select_permissions: - enabled - archived_at - competitive_safe - - map_pool_id - cfg - extra_game_params - - match_option_defaults - created_at - updated_at computed_fields: @@ -244,10 +224,8 @@ insert_permissions: - enabled - archived_at - competitive_safe - - map_pool_id - cfg - extra_game_params - - match_option_defaults computed_fields: - supported_runtimes - runtime_conflicts @@ -263,10 +241,8 @@ update_permissions: - enabled - archived_at - competitive_safe - - map_pool_id - cfg - extra_game_params - - match_option_defaults computed_fields: - supported_runtimes - runtime_conflicts diff --git a/hasura/migrations/default/1878000001100_game_modes_drop_unused/down.sql b/hasura/migrations/default/1878000001100_game_modes_drop_unused/down.sql new file mode 100644 index 000000000..6f91632cb --- /dev/null +++ b/hasura/migrations/default/1878000001100_game_modes_drop_unused/down.sql @@ -0,0 +1,12 @@ +ALTER TABLE "public"."game_modes" + ADD COLUMN IF NOT EXISTS "map_pool_id" uuid; + +ALTER TABLE "public"."game_modes" + ADD COLUMN IF NOT EXISTS "match_option_defaults" jsonb NOT NULL DEFAULT '{}'::jsonb; + +ALTER TABLE "public"."game_modes" + DROP CONSTRAINT IF EXISTS "game_modes_map_pool_fkey"; + +ALTER TABLE "public"."game_modes" + ADD CONSTRAINT "game_modes_map_pool_fkey" FOREIGN KEY ("map_pool_id") + REFERENCES "public"."map_pools" ("id") ON UPDATE CASCADE ON DELETE SET NULL; diff --git a/hasura/migrations/default/1878000001100_game_modes_drop_unused/up.sql b/hasura/migrations/default/1878000001100_game_modes_drop_unused/up.sql new file mode 100644 index 000000000..bd98571f4 --- /dev/null +++ b/hasura/migrations/default/1878000001100_game_modes_drop_unused/up.sql @@ -0,0 +1,13 @@ +-- Neither column was ever read, and neither could be set: the mode form has no +-- field for them. A mode can only ever pre-fill match options anyway, because +-- tbu_match_options locks them once a match is Live -- so overriding at runtime +-- would make the match record disagree with what was played. +-- +-- match_option_defaults was untyped jsonb shadowing 26 real columns on +-- match_options, where a mistyped key fails silently. If defaults are wanted +-- later they belong as typed nullable columns here. +ALTER TABLE "public"."game_modes" + DROP COLUMN IF EXISTS "match_option_defaults"; + +ALTER TABLE "public"."game_modes" + DROP COLUMN IF EXISTS "map_pool_id"; diff --git a/test/game-modes.spec.ts b/test/game-modes.spec.ts index 916dc6737..59a6d4b47 100644 --- a/test/game-modes.spec.ts +++ b/test/game-modes.spec.ts @@ -430,6 +430,21 @@ describe("unranked game modes (SQL-driven)", () => { 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", @@ -504,6 +519,61 @@ describe("unranked game modes (SQL-driven)", () => { // The decision is stored, not derived, so history cannot be rewritten by // editing a mode long after the matches were played. + // 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); From edd92eff1a7d593e0119ef645156dfc9a4271b0b Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Tue, 18 Aug 2026 22:23:53 -0400 Subject: [PATCH 5/8] Squash the game plugin migrations into one Twelve migrations that only ever shipped together, three of which existed to undo columns added by the others. The squashed version creates the final schema directly, so a fresh install never grows game_modes.runtime, map_pool_id or match_option_defaults just to drop them again. Also covers the ELO boundary further: an unranked match must leave a rating on exactly the number it was, and the next ranked match must still move it. --- .../down.sql | 3 - .../1878000000000_game_plugin_registry/up.sql | 58 ----- .../down.sql | 32 +++ .../up.sql | 236 ++++++++++++++++++ .../down.sql | 3 - .../1878000000100_game_plugin_installs/up.sql | 46 ---- .../default/1878000000200_game_modes/down.sql | 2 - .../default/1878000000200_game_modes/up.sql | 44 ---- .../down.sql | 7 - .../up.sql | 9 - .../1878000000400_servers_game_mode/down.sql | 13 - .../1878000000400_servers_game_mode/up.sql | 19 -- .../down.sql | 2 - .../up.sql | 5 - .../down.sql | 4 - .../1878000000600_game_plugin_desired/up.sql | 27 -- .../down.sql | 2 - .../up.sql | 6 - .../down.sql | 4 - .../up.sql | 14 -- .../down.sql | 6 - .../up.sql | 9 - .../down.sql | 5 - .../up.sql | 9 - .../down.sql | 12 - .../up.sql | 13 - test/game-modes.spec.ts | 50 ++++ 27 files changed, 318 insertions(+), 322 deletions(-) delete mode 100644 hasura/migrations/default/1878000000000_game_plugin_registry/down.sql delete mode 100644 hasura/migrations/default/1878000000000_game_plugin_registry/up.sql create mode 100644 hasura/migrations/default/1878000000000_game_plugins_and_modes/down.sql create mode 100644 hasura/migrations/default/1878000000000_game_plugins_and_modes/up.sql delete mode 100644 hasura/migrations/default/1878000000100_game_plugin_installs/down.sql delete mode 100644 hasura/migrations/default/1878000000100_game_plugin_installs/up.sql delete mode 100644 hasura/migrations/default/1878000000200_game_modes/down.sql delete mode 100644 hasura/migrations/default/1878000000200_game_modes/up.sql delete mode 100644 hasura/migrations/default/1878000000300_match_options_game_mode/down.sql delete mode 100644 hasura/migrations/default/1878000000300_match_options_game_mode/up.sql delete mode 100644 hasura/migrations/default/1878000000400_servers_game_mode/down.sql delete mode 100644 hasura/migrations/default/1878000000400_servers_game_mode/up.sql delete mode 100644 hasura/migrations/default/1878000000500_game_plugins_pairs_with/down.sql delete mode 100644 hasura/migrations/default/1878000000500_game_plugins_pairs_with/up.sql delete mode 100644 hasura/migrations/default/1878000000600_game_plugin_desired/down.sql delete mode 100644 hasura/migrations/default/1878000000600_game_plugin_desired/up.sql delete mode 100644 hasura/migrations/default/1878000000700_game_plugin_always_load/down.sql delete mode 100644 hasura/migrations/default/1878000000700_game_plugin_always_load/up.sql delete mode 100644 hasura/migrations/default/1878000000800_matches_counts_toward_ranking/down.sql delete mode 100644 hasura/migrations/default/1878000000800_matches_counts_toward_ranking/up.sql delete mode 100644 hasura/migrations/default/1878000000900_game_mode_runtime_derived/down.sql delete mode 100644 hasura/migrations/default/1878000000900_game_mode_runtime_derived/up.sql delete mode 100644 hasura/migrations/default/1878000001000_servers_loaded_plugins/down.sql delete mode 100644 hasura/migrations/default/1878000001000_servers_loaded_plugins/up.sql delete mode 100644 hasura/migrations/default/1878000001100_game_modes_drop_unused/down.sql delete mode 100644 hasura/migrations/default/1878000001100_game_modes_drop_unused/up.sql diff --git a/hasura/migrations/default/1878000000000_game_plugin_registry/down.sql b/hasura/migrations/default/1878000000000_game_plugin_registry/down.sql deleted file mode 100644 index baade3b65..000000000 --- a/hasura/migrations/default/1878000000000_game_plugin_registry/down.sql +++ /dev/null @@ -1,3 +0,0 @@ -DROP TABLE IF EXISTS "public"."game_plugin_versions"; -DROP TABLE IF EXISTS "public"."game_plugins"; -DROP TABLE IF EXISTS "public"."e_game_plugin_kinds"; diff --git a/hasura/migrations/default/1878000000000_game_plugin_registry/up.sql b/hasura/migrations/default/1878000000000_game_plugin_registry/up.sql deleted file mode 100644 index 6d46ad0bf..000000000 --- a/hasura/migrations/default/1878000000000_game_plugin_registry/up.sql +++ /dev/null @@ -1,58 +0,0 @@ -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"."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, - "config_schema" jsonb, - "config_path" text, - "cvars" text[] NOT NULL DEFAULT '{}', - "panel" jsonb, - "wiring" jsonb, - "synced_at" timestamptz NOT NULL DEFAULT now(), - PRIMARY KEY ("slug"), - CONSTRAINT "game_plugins_kind_fkey" FOREIGN KEY ("kind") - REFERENCES "public"."e_game_plugin_kinds" ("value") ON UPDATE CASCADE ON DELETE RESTRICT -); - --- The slug is also the directory name in a node's plugin store, so a value that --- is not path-safe would let a registry entry escape the store root. -ALTER TABLE "public"."game_plugins" - ADD CONSTRAINT "game_plugins_slug_check" CHECK ("slug" ~ '^[a-z0-9]+(?:-[a-z0-9]+)*$'); - -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')) -); - -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"); 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..e972ea799 --- /dev/null +++ b/hasura/migrations/default/1878000000000_game_plugins_and_modes/up.sql @@ -0,0 +1,236 @@ +-- 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, + "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_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, + "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/migrations/default/1878000000100_game_plugin_installs/down.sql b/hasura/migrations/default/1878000000100_game_plugin_installs/down.sql deleted file mode 100644 index 09c6b1cfc..000000000 --- a/hasura/migrations/default/1878000000100_game_plugin_installs/down.sql +++ /dev/null @@ -1,3 +0,0 @@ -DROP TABLE IF EXISTS "public"."game_server_node_plugins"; -DROP TABLE IF EXISTS "public"."e_game_plugin_channels"; -DROP TABLE IF EXISTS "public"."e_game_plugin_install_statuses"; diff --git a/hasura/migrations/default/1878000000100_game_plugin_installs/up.sql b/hasura/migrations/default/1878000000100_game_plugin_installs/up.sql deleted file mode 100644 index cffa329f9..000000000 --- a/hasura/migrations/default/1878000000100_game_plugin_installs/up.sql +++ /dev/null @@ -1,46 +0,0 @@ -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_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 into custom-plugins 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')) -); - -CREATE INDEX IF NOT EXISTS "game_server_node_plugins_slug_idx" - ON "public"."game_server_node_plugins" ("plugin_slug"); diff --git a/hasura/migrations/default/1878000000200_game_modes/down.sql b/hasura/migrations/default/1878000000200_game_modes/down.sql deleted file mode 100644 index f77615371..000000000 --- a/hasura/migrations/default/1878000000200_game_modes/down.sql +++ /dev/null @@ -1,2 +0,0 @@ -DROP TABLE IF EXISTS "public"."game_mode_plugins"; -DROP TABLE IF EXISTS "public"."game_modes"; diff --git a/hasura/migrations/default/1878000000200_game_modes/up.sql b/hasura/migrations/default/1878000000200_game_modes/up.sql deleted file mode 100644 index 2f100b035..000000000 --- a/hasura/migrations/default/1878000000200_game_modes/up.sql +++ /dev/null @@ -1,44 +0,0 @@ -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, - "runtime" text, - "map_pool_id" uuid, - "cfg" text, - "extra_game_params" text, - "match_option_defaults" jsonb NOT NULL DEFAULT '{}'::jsonb, - "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]+)*$'), - CONSTRAINT "game_modes_runtime_fkey" FOREIGN KEY ("runtime") - REFERENCES "public"."e_plugin_runtimes" ("value") ON UPDATE CASCADE ON DELETE RESTRICT, - CONSTRAINT "game_modes_map_pool_fkey" FOREIGN KEY ("map_pool_id") - REFERENCES "public"."map_pools" ("id") ON UPDATE CASCADE ON DELETE SET NULL -); - -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 -); - -CREATE INDEX IF NOT EXISTS "game_modes_enabled_idx" - ON "public"."game_modes" ("enabled") WHERE "archived_at" IS NULL; diff --git a/hasura/migrations/default/1878000000300_match_options_game_mode/down.sql b/hasura/migrations/default/1878000000300_match_options_game_mode/down.sql deleted file mode 100644 index 13fce0d6f..000000000 --- a/hasura/migrations/default/1878000000300_match_options_game_mode/down.sql +++ /dev/null @@ -1,7 +0,0 @@ -DROP INDEX IF EXISTS "public"."match_options_game_mode_idx"; - -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"; diff --git a/hasura/migrations/default/1878000000300_match_options_game_mode/up.sql b/hasura/migrations/default/1878000000300_match_options_game_mode/up.sql deleted file mode 100644 index 54445aa2a..000000000 --- a/hasura/migrations/default/1878000000300_match_options_game_mode/up.sql +++ /dev/null @@ -1,9 +0,0 @@ -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; - -CREATE INDEX IF NOT EXISTS "match_options_game_mode_idx" - ON "public"."match_options" ("game_mode_id") WHERE "game_mode_id" IS NOT NULL; diff --git a/hasura/migrations/default/1878000000400_servers_game_mode/down.sql b/hasura/migrations/default/1878000000400_servers_game_mode/down.sql deleted file mode 100644 index 44adc1b71..000000000 --- a/hasura/migrations/default/1878000000400_servers_game_mode/down.sql +++ /dev/null @@ -1,13 +0,0 @@ -DROP INDEX IF EXISTS "public"."custom_pages_plugin_slug_idx"; - -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 "game_mode_id"; diff --git a/hasura/migrations/default/1878000000400_servers_game_mode/up.sql b/hasura/migrations/default/1878000000400_servers_game_mode/up.sql deleted file mode 100644 index 38ba7f364..000000000 --- a/hasura/migrations/default/1878000000400_servers_game_mode/up.sql +++ /dev/null @@ -1,19 +0,0 @@ -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); - -ALTER TABLE "public"."custom_pages" - ADD COLUMN IF NOT EXISTS "plugin_slug" text; - -CREATE UNIQUE INDEX IF NOT EXISTS "custom_pages_plugin_slug_idx" - ON "public"."custom_pages" ("plugin_slug") WHERE "plugin_slug" IS NOT NULL; diff --git a/hasura/migrations/default/1878000000500_game_plugins_pairs_with/down.sql b/hasura/migrations/default/1878000000500_game_plugins_pairs_with/down.sql deleted file mode 100644 index 80df086ff..000000000 --- a/hasura/migrations/default/1878000000500_game_plugins_pairs_with/down.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE "public"."game_plugins" - DROP COLUMN IF EXISTS "pairs_with"; diff --git a/hasura/migrations/default/1878000000500_game_plugins_pairs_with/up.sql b/hasura/migrations/default/1878000000500_game_plugins_pairs_with/up.sql deleted file mode 100644 index d5b467300..000000000 --- a/hasura/migrations/default/1878000000500_game_plugins_pairs_with/up.sql +++ /dev/null @@ -1,5 +0,0 @@ --- Slugs of catalog entries an entry 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. -ALTER TABLE "public"."game_plugins" - ADD COLUMN IF NOT EXISTS "pairs_with" text[] NOT NULL DEFAULT '{}'; diff --git a/hasura/migrations/default/1878000000600_game_plugin_desired/down.sql b/hasura/migrations/default/1878000000600_game_plugin_desired/down.sql deleted file mode 100644 index 14941760b..000000000 --- a/hasura/migrations/default/1878000000600_game_plugin_desired/down.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE "public"."game_server_nodes" - DROP COLUMN IF EXISTS "plugins_synced_at"; - -DROP TABLE IF EXISTS "public"."game_plugin_installs"; diff --git a/hasura/migrations/default/1878000000600_game_plugin_desired/up.sql b/hasura/migrations/default/1878000000600_game_plugin_desired/up.sql deleted file mode 100644 index 6da6f1ee3..000000000 --- a/hasura/migrations/default/1878000000600_game_plugin_desired/up.sql +++ /dev/null @@ -1,27 +0,0 @@ --- 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, - "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)) -); - --- 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; diff --git a/hasura/migrations/default/1878000000700_game_plugin_always_load/down.sql b/hasura/migrations/default/1878000000700_game_plugin_always_load/down.sql deleted file mode 100644 index 7865d63be..000000000 --- a/hasura/migrations/default/1878000000700_game_plugin_always_load/down.sql +++ /dev/null @@ -1,2 +0,0 @@ -ALTER TABLE "public"."game_plugin_installs" - DROP COLUMN IF EXISTS "always_load"; diff --git a/hasura/migrations/default/1878000000700_game_plugin_always_load/up.sql b/hasura/migrations/default/1878000000700_game_plugin_always_load/up.sql deleted file mode 100644 index 5ba30e59b..000000000 --- a/hasura/migrations/default/1878000000700_game_plugin_always_load/up.sql +++ /dev/null @@ -1,6 +0,0 @@ --- Some plugins are not part of a "fun mode" at all -- stats collectors, admin --- tooling -- and belong on every server including ranked. Without this the only --- way to get that was to hand-place the files, which is the very thing the --- catalog replaces. -ALTER TABLE "public"."game_plugin_installs" - ADD COLUMN IF NOT EXISTS "always_load" boolean NOT NULL DEFAULT false; diff --git a/hasura/migrations/default/1878000000800_matches_counts_toward_ranking/down.sql b/hasura/migrations/default/1878000000800_matches_counts_toward_ranking/down.sql deleted file mode 100644 index d4cd0301f..000000000 --- a/hasura/migrations/default/1878000000800_matches_counts_toward_ranking/down.sql +++ /dev/null @@ -1,4 +0,0 @@ -DROP INDEX IF EXISTS "public"."matches_counts_toward_ranking_idx"; - -ALTER TABLE "public"."matches" - DROP COLUMN IF EXISTS "counts_toward_ranking"; diff --git a/hasura/migrations/default/1878000000800_matches_counts_toward_ranking/up.sql b/hasura/migrations/default/1878000000800_matches_counts_toward_ranking/up.sql deleted file mode 100644 index a5596bbe2..000000000 --- a/hasura/migrations/default/1878000000800_matches_counts_toward_ranking/up.sql +++ /dev/null @@ -1,14 +0,0 @@ --- 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 "matches_counts_toward_ranking_idx" - ON "public"."matches" ("counts_toward_ranking") - WHERE "counts_toward_ranking" = false; diff --git a/hasura/migrations/default/1878000000900_game_mode_runtime_derived/down.sql b/hasura/migrations/default/1878000000900_game_mode_runtime_derived/down.sql deleted file mode 100644 index d3870a41c..000000000 --- a/hasura/migrations/default/1878000000900_game_mode_runtime_derived/down.sql +++ /dev/null @@ -1,6 +0,0 @@ -ALTER TABLE "public"."game_modes" - ADD COLUMN IF NOT EXISTS "runtime" text; - -ALTER TABLE "public"."game_modes" - ADD CONSTRAINT "game_modes_runtime_fkey" FOREIGN KEY ("runtime") - REFERENCES "public"."e_plugin_runtimes" ("value") ON UPDATE CASCADE ON DELETE RESTRICT; diff --git a/hasura/migrations/default/1878000000900_game_mode_runtime_derived/up.sql b/hasura/migrations/default/1878000000900_game_mode_runtime_derived/up.sql deleted file mode 100644 index 56537df70..000000000 --- a/hasura/migrations/default/1878000000900_game_mode_runtime_derived/up.sql +++ /dev/null @@ -1,9 +0,0 @@ --- A mode does not get to declare which framework it runs on. That is decided by --- the plugins it selects: a mode is runnable on a runtime only if every plugin --- in it publishes a build for that runtime. Picking it by hand could disagree --- with the plugins and silently boot a server with none of them. -ALTER TABLE "public"."game_modes" - DROP CONSTRAINT IF EXISTS "game_modes_runtime_fkey"; - -ALTER TABLE "public"."game_modes" - DROP COLUMN IF EXISTS "runtime"; diff --git a/hasura/migrations/default/1878000001000_servers_loaded_plugins/down.sql b/hasura/migrations/default/1878000001000_servers_loaded_plugins/down.sql deleted file mode 100644 index 3f900a682..000000000 --- a/hasura/migrations/default/1878000001000_servers_loaded_plugins/down.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE "public"."servers" - DROP COLUMN IF EXISTS "plugins_checked_at"; - -ALTER TABLE "public"."servers" - DROP COLUMN IF EXISTS "loaded_plugins"; diff --git a/hasura/migrations/default/1878000001000_servers_loaded_plugins/up.sql b/hasura/migrations/default/1878000001000_servers_loaded_plugins/up.sql deleted file mode 100644 index 3e0ae82a5..000000000 --- a/hasura/migrations/default/1878000001000_servers_loaded_plugins/up.sql +++ /dev/null @@ -1,9 +0,0 @@ --- 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; diff --git a/hasura/migrations/default/1878000001100_game_modes_drop_unused/down.sql b/hasura/migrations/default/1878000001100_game_modes_drop_unused/down.sql deleted file mode 100644 index 6f91632cb..000000000 --- a/hasura/migrations/default/1878000001100_game_modes_drop_unused/down.sql +++ /dev/null @@ -1,12 +0,0 @@ -ALTER TABLE "public"."game_modes" - ADD COLUMN IF NOT EXISTS "map_pool_id" uuid; - -ALTER TABLE "public"."game_modes" - ADD COLUMN IF NOT EXISTS "match_option_defaults" jsonb NOT NULL DEFAULT '{}'::jsonb; - -ALTER TABLE "public"."game_modes" - DROP CONSTRAINT IF EXISTS "game_modes_map_pool_fkey"; - -ALTER TABLE "public"."game_modes" - ADD CONSTRAINT "game_modes_map_pool_fkey" FOREIGN KEY ("map_pool_id") - REFERENCES "public"."map_pools" ("id") ON UPDATE CASCADE ON DELETE SET NULL; diff --git a/hasura/migrations/default/1878000001100_game_modes_drop_unused/up.sql b/hasura/migrations/default/1878000001100_game_modes_drop_unused/up.sql deleted file mode 100644 index bd98571f4..000000000 --- a/hasura/migrations/default/1878000001100_game_modes_drop_unused/up.sql +++ /dev/null @@ -1,13 +0,0 @@ --- Neither column was ever read, and neither could be set: the mode form has no --- field for them. A mode can only ever pre-fill match options anyway, because --- tbu_match_options locks them once a match is Live -- so overriding at runtime --- would make the match record disagree with what was played. --- --- match_option_defaults was untyped jsonb shadowing 26 real columns on --- match_options, where a mistyped key fails silently. If defaults are wanted --- later they belong as typed nullable columns here. -ALTER TABLE "public"."game_modes" - DROP COLUMN IF EXISTS "match_option_defaults"; - -ALTER TABLE "public"."game_modes" - DROP COLUMN IF EXISTS "map_pool_id"; diff --git a/test/game-modes.spec.ts b/test/game-modes.spec.ts index 59a6d4b47..625ab5ac4 100644 --- a/test/game-modes.spec.ts +++ b/test/game-modes.spec.ts @@ -519,6 +519,56 @@ describe("unranked game modes (SQL-driven)", () => { // 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. From 1f62232225308d1a2284371e40fe0b57edd64d20 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Wed, 19 Aug 2026 08:49:06 -0400 Subject: [PATCH 6/8] Resolve plugins against the node that will run them, and gate the guidelines link_plugins gates a plugin's files on slug@version being on the node's own disk, but the version was taken from whichever node had reported most recently. On a partially converged fleet the mode booted with its cvars and none of its plugins, and nothing said so. Resolution is now scoped to the server's node and that node's runtime, and game_mode_plugins.required is enforced instead of stored and ignored -- a mode whose required plugin never arrived fails the server start rather than quietly running vanilla. The rest of the review of this branch: - install state joins game_server_nodes and filters the same way the target count does, so a plugin present only on disabled nodes stops reporting Installed and a Failed row on a decommissioned node stops pinning it; - an Auto install resolves releases, not release candidates; - Pending and Installing rows are stamped with the runtime that node runs, and a corrected runtime overwrites a stale one; - previewGameMode goes through the always-load merge it exists to show, and environmentFor is the one place that knows what the pod reads; - the push-to-node install path, the Reconcile queue and two settings the API never read are gone. A plugin can now declare it cannot work while the framework enforces Valve's server guidelines, and an administrator opts in per plugin; a server loading one gets DISABLE_SERVER_GUIDELINES and setup.sh patches the framework config before it starts. Both halves are required, and it is decided from the plugins that server actually loads, so opting in for one plugin leaves every other server compliant. --- .../functions/game-plugins/install_state.sql | 33 +- .../tables/public_game_plugin_installs.yaml | 3 + .../default/tables/public_game_plugins.yaml | 10 + .../up.sql | 10 + .../dedicated-servers.service.ts | 10 +- src/game-plugins/enums/GamePluginQueues.ts | 1 - src/game-plugins/game-modes.service.spec.ts | 325 +++++++++++++++++- src/game-plugins/game-modes.service.ts | 182 ++++++++-- src/game-plugins/game-plugins.controller.ts | 2 +- src/game-plugins/game-plugins.service.ts | 165 ++------- src/game-plugins/types/Registry.ts | 11 +- .../match-assistant.service.ts | 10 +- src/system/enums/SystemSettingName.ts | 2 - test/game-mode-resolution.spec.ts | 233 +++++++++++++ test/game-plugin-install-state.spec.ts | 41 +++ 15 files changed, 826 insertions(+), 212 deletions(-) create mode 100644 test/game-mode-resolution.spec.ts diff --git a/hasura/functions/game-plugins/install_state.sql b/hasura/functions/game-plugins/install_state.sql index a81c412b3..78693f110 100644 --- a/hasura/functions/game-plugins/install_state.sql +++ b/hasura/functions/game-plugins/install_state.sql @@ -1,14 +1,23 @@ -- 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 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( @@ -28,27 +37,27 @@ DECLARE _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(*) INTO _installed - FROM public.game_server_node_plugins - WHERE plugin_slug = plugin.slug AND source = 'managed' AND detected = true; - - SELECT count(*) INTO _failed - FROM public.game_server_node_plugins - WHERE plugin_slug = plugin.slug AND status = 'Failed'; + 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 EXISTS ( - SELECT 1 FROM public.game_server_node_plugins - WHERE plugin_slug = plugin.slug AND source = 'manual' - ) THEN + IF _installed > 0 OR COALESCE(_manual, false) THEN RETURN 'Manual'; END IF; diff --git a/hasura/metadata/databases/default/tables/public_game_plugin_installs.yaml b/hasura/metadata/databases/default/tables/public_game_plugin_installs.yaml index 7e75250cb..a69f8a746 100644 --- a/hasura/metadata/databases/default/tables/public_game_plugin_installs.yaml +++ b/hasura/metadata/databases/default/tables/public_game_plugin_installs.yaml @@ -14,6 +14,7 @@ select_permissions: - channel - enabled - always_load + - disable_server_guidelines - created_at - updated_at filter: {} @@ -29,6 +30,7 @@ insert_permissions: - channel - enabled - always_load + - disable_server_guidelines comment: "" update_permissions: - role: administrator @@ -39,6 +41,7 @@ update_permissions: - channel - enabled - always_load + - disable_server_guidelines filter: {} check: {} comment: "" diff --git a/hasura/metadata/databases/default/tables/public_game_plugins.yaml b/hasura/metadata/databases/default/tables/public_game_plugins.yaml index d64beb77b..a1551300d 100644 --- a/hasura/metadata/databases/default/tables/public_game_plugins.yaml +++ b/hasura/metadata/databases/default/tables/public_game_plugins.yaml @@ -56,6 +56,7 @@ select_permissions: - verified - hot_swappable - requires_service + - requires_server_guidelines_disabled - config_schema - config_path - cvars @@ -83,6 +84,7 @@ select_permissions: - verified - hot_swappable - requires_service + - requires_server_guidelines_disabled - config_schema - config_path - cvars @@ -110,6 +112,7 @@ select_permissions: - verified - hot_swappable - requires_service + - requires_server_guidelines_disabled - config_schema - config_path - cvars @@ -137,6 +140,7 @@ select_permissions: - verified - hot_swappable - requires_service + - requires_server_guidelines_disabled - config_schema - config_path - cvars @@ -164,6 +168,7 @@ select_permissions: - verified - hot_swappable - requires_service + - requires_server_guidelines_disabled - config_schema - config_path - cvars @@ -191,6 +196,7 @@ select_permissions: - verified - hot_swappable - requires_service + - requires_server_guidelines_disabled - config_schema - config_path - cvars @@ -218,6 +224,7 @@ select_permissions: - verified - hot_swappable - requires_service + - requires_server_guidelines_disabled - config_schema - config_path - cvars @@ -245,6 +252,7 @@ select_permissions: - verified - hot_swappable - requires_service + - requires_server_guidelines_disabled - config_schema - config_path - cvars @@ -274,6 +282,7 @@ insert_permissions: - verified - hot_swappable - requires_service + - requires_server_guidelines_disabled - config_schema - config_path - cvars @@ -300,6 +309,7 @@ update_permissions: - verified - hot_swappable - requires_service + - requires_server_guidelines_disabled - config_schema - config_path - cvars diff --git a/hasura/migrations/default/1878000000000_game_plugins_and_modes/up.sql b/hasura/migrations/default/1878000000000_game_plugins_and_modes/up.sql index e972ea799..9747fcbd8 100644 --- a/hasura/migrations/default/1878000000000_game_plugins_and_modes/up.sql +++ b/hasura/migrations/default/1878000000000_game_plugins_and_modes/up.sql @@ -29,6 +29,11 @@ CREATE TABLE IF NOT EXISTS "public"."game_plugins" ( "verified" boolean NOT NULL DEFAULT false, "hot_swappable" boolean NOT NULL DEFAULT false, "requires_service" text, + -- 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 '{}', @@ -80,6 +85,11 @@ CREATE TABLE IF NOT EXISTS "public"."game_plugin_installs" ( -- 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"), diff --git a/src/dedicated-servers/dedicated-servers.service.ts b/src/dedicated-servers/dedicated-servers.service.ts index 8ea7d798b..9ef944eab 100644 --- a/src/dedicated-servers/dedicated-servers.service.ts +++ b/src/dedicated-servers/dedicated-servers.service.ts @@ -162,14 +162,8 @@ export class DedicatedServersService { // always comes up on a clean plugin set. const gameMode = await this.gameModesService.resolveForServer(serverId); - const gameModeEnvironment = gameMode - ? [ - { name: "ENABLED_PLUGINS", value: gameMode.enabledPlugins }, - ...(gameMode.pluginConfigs - ? [{ name: "PLUGIN_CONFIGS", value: gameMode.pluginConfigs }] - : []), - ] - : []; + const gameModeEnvironment = + this.gameModesService.environmentFor(gameMode); const dedicatedServerDeploymentName = this.getDedicatedServerDeploymentName(serverId); diff --git a/src/game-plugins/enums/GamePluginQueues.ts b/src/game-plugins/enums/GamePluginQueues.ts index f050fa050..90b44a3cd 100644 --- a/src/game-plugins/enums/GamePluginQueues.ts +++ b/src/game-plugins/enums/GamePluginQueues.ts @@ -1,4 +1,3 @@ export enum GamePluginQueues { Registry = "game-plugin-registry", - Reconcile = "game-plugin-reconcile", } diff --git a/src/game-plugins/game-modes.service.spec.ts b/src/game-plugins/game-modes.service.spec.ts index 7230106f5..006debf97 100644 --- a/src/game-plugins/game-modes.service.spec.ts +++ b/src/game-plugins/game-modes.service.spec.ts @@ -1,4 +1,4 @@ -import { GameModesService } from "./game-modes.service"; +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. @@ -16,6 +16,9 @@ describe("GameModesService always-load plugins", () => { 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 ?? []; } @@ -26,7 +29,13 @@ describe("GameModesService always-load plugins", () => { const service = new GameModesService( { warn: jest.fn(), log: jest.fn() } as never, postgres as never, - { getPluginRuntime: jest.fn(async () => "swiftlys2") } 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 }; @@ -65,7 +74,12 @@ describe("GameModesService always-load plugins", () => { }, ], modePlugins: [ - { plugin_slug: "retakes", config: null, config_path: null, version: "2.0.0" }, + { + plugin_slug: "retakes", + config: null, + config_path: null, + version: "2.0.0", + }, ], alwaysLoad: [{ plugin_slug: "stats", version: "1.0.0" }], }); @@ -80,10 +94,21 @@ describe("GameModesService always-load plugins", () => { const { service } = build({ serverMode: [{ game_mode_id: "mode-1" }], mode: [ - { id: "mode-1", slug: "m", name: "M", cfg: null, extra_game_params: null }, + { + 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" }, + { + plugin_slug: "stats", + config: null, + config_path: null, + version: "2.0.0", + }, ], alwaysLoad: [{ plugin_slug: "stats", version: "1.0.0" }], }); @@ -101,4 +126,294 @@ describe("GameModesService always-load plugins", () => { 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 index ae5d31a41..e3898854f 100644 --- a/src/game-plugins/game-modes.service.ts +++ b/src/game-plugins/game-modes.service.ts @@ -1,6 +1,7 @@ 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; @@ -10,6 +11,16 @@ export type ResolvedGameMode = { 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 = { @@ -28,6 +39,16 @@ type ModePluginRow = { 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( @@ -43,23 +64,63 @@ export class GameModesService { serverId: string, matchId?: string, ): Promise { - const [row] = await this.postgres.query>( + 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), - (SELECT s.game_mode_id FROM servers s - WHERE s.id = $1 AND s.type IS DISTINCT FROM 'Ranked') - ) AS game_mode_id`, + 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) + ? await this.resolve(row.game_mode_id, scope) : null; - return await this.withAlwaysLoad(mode); + 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, @@ -67,11 +128,12 @@ export class GameModesService { // 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(); + const always = await this.alwaysLoadPlugins(scope); if (always.length === 0) { - return mode; + return await this.withServerGuidelines(mode); } const fromMode = (mode?.enabledPlugins ?? "").split(",").filter(Boolean); @@ -85,12 +147,15 @@ export class GameModesService { ]; if (mode) { - return { ...mode, enabledPlugins: enabled.join(",") }; + 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 { + return await this.withServerGuidelines({ id: "", slug: "", name: "", @@ -98,10 +163,48 @@ export class GameModesService { 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): Promise { + 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 @@ -113,7 +216,9 @@ export class GameModesService { return null; } - const runtime = await this.pluginRuntime.getPluginRuntime(); + 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, @@ -129,23 +234,32 @@ export class GameModesService { 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], + [gameModeId, runtime, nodeId], ); const enabled: Array = []; const configs: Record = {}; + const missingRequired: Array = []; for (const plugin of plugins) { if (!plugin.version) { - this.logger.warn( - `mode ${mode.slug}: ${plugin.plugin_slug} is not installed on any node for ${runtime}`, - ); + 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; } @@ -168,14 +282,20 @@ export class GameModesService { 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(): Promise> { - const runtime = await this.pluginRuntime.getPluginRuntime(); + 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 }> @@ -187,12 +307,13 @@ export class GameModesService { 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], + [runtime, nodeId], ); return rows @@ -200,14 +321,12 @@ export class GameModesService { .map((row) => `${row.plugin_slug}@${row.version}`); } - // The env a game server pod needs, for callers that want it prepared rather - // than assembling it themselves. - public async environmentFor( - serverId: string, - matchId?: string, - ): Promise> { - const mode = await this.resolveForServer(serverId, matchId); - + // 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 []; } @@ -220,6 +339,13 @@ export class GameModesService { 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 index a4d00604c..cc11151b4 100644 --- a/src/game-plugins/game-plugins.controller.ts +++ b/src/game-plugins/game-plugins.controller.ts @@ -150,7 +150,7 @@ export class GamePluginsController { public async previewGameMode(data: { user: User; gameModeId: string }) { this.assertAdministrator(data.user); - const mode = await this.gameModes.resolve(data.gameModeId); + const mode = await this.gameModes.previewForMode(data.gameModeId); if (!mode) { return { enabledPlugins: "", cfg: null, extraGameParams: null }; diff --git a/src/game-plugins/game-plugins.service.ts b/src/game-plugins/game-plugins.service.ts index c61a2480a..bb9a1b4c5 100644 --- a/src/game-plugins/game-plugins.service.ts +++ b/src/game-plugins/game-plugins.service.ts @@ -9,11 +9,7 @@ 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 { - NodeInventoryPlugin, - RegistryIndex, - RegistryPlugin, -} from "./types/Registry"; +import { RegistryIndex, RegistryPlugin } from "./types/Registry"; @Injectable() export class GamePluginsService { @@ -93,9 +89,9 @@ export class GamePluginsService { await this.postgres.query( `INSERT INTO public.game_plugins (slug, kind, name, author, description, homepage, tags, verified, - hot_swappable, requires_service, 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, now()) + 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, @@ -106,6 +102,7 @@ export class GamePluginsService { 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, @@ -124,6 +121,7 @@ export class GamePluginsService { 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 ?? [], @@ -258,30 +256,26 @@ export class GamePluginsService { source: "managed" | "manual"; }>, ): Promise { - const runtime = await this.pluginRuntime.getPluginRuntime(); - 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) - VALUES ($1, $2, $3, $4, $4, $5, true, 'Installed', now()) + 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 = COALESCE(EXCLUDED.runtime, game_server_node_plugins.runtime), + runtime = EXCLUDED.runtime, last_error = null, updated_at = now()`, - [ - nodeId, - plugin.slug, - plugin.runtime ?? runtime, - plugin.version, - plugin.source, - ], + [nodeId, plugin.slug, plugin.runtime, plugin.version, plugin.source], ); } @@ -539,6 +533,11 @@ export class GamePluginsService { 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], @@ -555,50 +554,6 @@ export class GamePluginsService { return row; } - public async install( - nodeId: string, - slug: string, - version?: string, - ): Promise { - const runtime = await this.pluginRuntime.getPluginRuntime(); - const resolved = await this.resolveVersion(slug, runtime, version); - - await this.recordInstall(nodeId, slug, runtime, { - version: resolved.version, - status: "Installing", - last_error: null, - }); - - try { - await this.callNode(nodeId, "install", { - method: "POST", - body: JSON.stringify({ - slug, - version: resolved.version, - url: resolved.url, - sha256: resolved.sha256, - layout: resolved.layout, - installPath: resolved.install_path ?? undefined, - }), - }); - - await this.recordInstall(nodeId, slug, runtime, { - version: resolved.version, - status: "Installed", - last_error: null, - installed_at: new Date().toISOString(), - }); - } catch (error) { - await this.recordInstall(nodeId, slug, runtime, { - version: resolved.version, - status: "Failed", - last_error: error.message ?? String(error), - }); - - throw error; - } - } - // Named rather than counted: the confirmation is only useful if it says which // modes are about to lose the plugin. public async modesUsing( @@ -674,34 +629,6 @@ export class GamePluginsService { this.nudgeNodes(); } - public async uninstall(nodeId: string, slug: string): Promise { - const [inUse] = await this.postgres.query>( - `SELECT 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 - LIMIT 1`, - [slug], - ); - - if (inUse) { - throw new BadRequestException( - `${slug} is used by the "${inUse.name}" mode; remove it from the mode first`, - ); - } - - await this.callNode(nodeId, "remove", { - method: "DELETE", - body: JSON.stringify({ slug }), - }); - - await this.postgres.query( - `DELETE FROM public.game_server_node_plugins - WHERE game_server_node_id = $1 AND plugin_slug = $2`, - [nodeId, slug], - ); - } - // 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. @@ -719,16 +646,15 @@ export class GamePluginsService { // panel could only guess, and it guessed "Installing" for a node that had not // even been told yet. private async seedPending(slug: string): Promise { - const runtime = await this.pluginRuntime.getPluginRuntime(); - await this.postgres.query( `INSERT INTO public.game_server_node_plugins (game_server_node_id, plugin_slug, runtime, status, source, detected) - SELECT id, $1, $2, 'Pending', 'managed', false - FROM public.game_server_nodes - WHERE enabled = true + 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, runtime], + [slug], ); } @@ -743,22 +669,23 @@ export class GamePluginsService { error?: string | null; }, ): Promise { - const runtime = await this.pluginRuntime.getPluginRuntime(); - 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) - VALUES ($1, $2, $3, $4, $5, $6, 'managed', false, now()) + 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, - runtime, progress.version ?? null, progress.status, progress.error ?? null, @@ -766,42 +693,6 @@ export class GamePluginsService { ); } - private async recordInstall( - nodeId: string, - slug: string, - runtime: string, - fields: { - version: string; - status: string; - last_error: string | null; - installed_at?: string; - }, - ): Promise { - await this.postgres.query( - `INSERT INTO public.game_server_node_plugins - (game_server_node_id, plugin_slug, runtime, version, status, last_error, - installed_at, source, updated_at) - VALUES ($1, $2, $3, $4, $5, $6, $7, 'managed', now()) - ON CONFLICT (game_server_node_id, plugin_slug) DO UPDATE SET - runtime = EXCLUDED.runtime, - version = EXCLUDED.version, - status = EXCLUDED.status, - last_error = EXCLUDED.last_error, - installed_at = COALESCE(EXCLUDED.installed_at, game_server_node_plugins.installed_at), - source = 'managed', - updated_at = now()`, - [ - nodeId, - slug, - runtime, - fields.version, - fields.status, - fields.last_error, - fields.installed_at ?? null, - ], - ); - } - private async getNodeIP(nodeId: string): Promise { const { game_server_nodes_by_pk } = await this.hasura.query({ game_server_nodes_by_pk: { diff --git a/src/game-plugins/types/Registry.ts b/src/game-plugins/types/Registry.ts index e91058c11..776cd3294 100644 --- a/src/game-plugins/types/Registry.ts +++ b/src/game-plugins/types/Registry.ts @@ -21,6 +21,7 @@ export type RegistryPlugin = { verified?: boolean; hot_swappable?: boolean; requires_service?: string | null; + requires_server_guidelines_disabled?: boolean; config_schema?: Record; config_path?: string; cvars?: Array; @@ -35,13 +36,3 @@ export type RegistryIndex = { generated_at: string; plugins: Array; }; - -export type NodeInventoryPlugin = { - slug: string; - version: string | null; - runtime: string | null; - source: "managed" | "manual"; - path: string; - files: Array; - digest: string | null; -}; diff --git a/src/matches/match-assistant/match-assistant.service.ts b/src/matches/match-assistant/match-assistant.service.ts index 864857201..e011b905b 100644 --- a/src/matches/match-assistant/match-assistant.service.ts +++ b/src/matches/match-assistant/match-assistant.service.ts @@ -803,14 +803,8 @@ export class MatchAssistantService { matchId, ); - const gameModeEnvironment = gameMode - ? [ - { name: "ENABLED_PLUGINS", value: gameMode.enabledPlugins }, - ...(gameMode.pluginConfigs - ? [{ name: "PLUGIN_CONFIGS", value: gameMode.pluginConfigs }] - : []), - ] - : []; + const gameModeEnvironment = + this.gameModesService.environmentFor(gameMode); await batch.createNamespacedJob({ namespace: this.namespace, diff --git a/src/system/enums/SystemSettingName.ts b/src/system/enums/SystemSettingName.ts index 0b14834c7..709a7df52 100644 --- a/src/system/enums/SystemSettingName.ts +++ b/src/system/enums/SystemSettingName.ts @@ -38,8 +38,6 @@ export enum SystemSettingName { GameServerPluginRuntime = "public.game_server_plugin_runtime", GameServerPluginRuntimeLocked = "game_server_plugin_runtime_locked", GamePluginRegistryUrl = "game_plugin_registry_url", - GamePluginsEnabled = "public.game_plugins_enabled", - PluginDirectoryEnabled = "public.plugin_directory_enabled", // 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/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-plugin-install-state.spec.ts b/test/game-plugin-install-state.spec.ts index 22e8b7efd..bebe79904 100644 --- a/test/game-plugin-install-state.spec.ts +++ b/test/game-plugin-install-state.spec.ts @@ -122,6 +122,47 @@ describe("game plugin install state (SQL-driven)", () => { 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"); From 70105c1d222be58daa85cd8dcfa5228ff5a84ec0 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Wed, 19 Aug 2026 09:09:38 -0400 Subject: [PATCH 7/8] Let an operator add a plugin the registry does not carry The catalog is curated and CS2 has more plugins than it lists, so the answer to "it is not in the directory" was nothing at all. addCustomGamePlugin takes a release URL -- a repository, a release, or the archive itself -- resolves it to a concrete download, hashes the archive once, and writes the same rows a sync writes. Everything downstream is unchanged: modes select it, nodes converge to it, and each node still verifies its own download against a digest, because the digest was taken by something that saw the bytes. A repository resolves to the newest Linux archive of its latest release, the same choice the registry build makes. The framework is always the operator's call: nothing in an archive says which one it was built for, and the wrong one unpacks perfectly and never loads. game_plugins.source is what keeps the two apart. A sync owns 'registry' rows and prunes the ones that stopped being published; it will not overwrite, prune, or take over a 'custom' row, so a plugin added because the catalog lacked it survives the poll fifteen minutes later -- including the case where the catalog later publishes that same slug. --- hasura/metadata/actions.graphql | 20 + hasura/metadata/actions.yaml | 8 + .../default/tables/public_game_plugins.yaml | 10 + .../up.sql | 6 + src/game-plugins/game-plugins.controller.ts | 30 ++ src/game-plugins/game-plugins.service.spec.ts | 88 +++++ src/game-plugins/game-plugins.service.ts | 356 +++++++++++++++++- test/game-plugin-registry-sync.spec.ts | 136 +++++++ 8 files changed, 653 insertions(+), 1 deletion(-) create mode 100644 src/game-plugins/game-plugins.service.spec.ts create mode 100644 test/game-plugin-registry-sync.spec.ts diff --git a/hasura/metadata/actions.graphql b/hasura/metadata/actions.graphql index 512c5de9a..1370a076e 100644 --- a/hasura/metadata/actions.graphql +++ b/hasura/metadata/actions.graphql @@ -1870,6 +1870,26 @@ type Mutation { ): 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! diff --git a/hasura/metadata/actions.yaml b/hasura/metadata/actions.yaml index 4b96eb4e5..1d8056e43 100644 --- a/hasura/metadata/actions.yaml +++ b/hasura/metadata/actions.yaml @@ -1195,6 +1195,14 @@ actions: 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 diff --git a/hasura/metadata/databases/default/tables/public_game_plugins.yaml b/hasura/metadata/databases/default/tables/public_game_plugins.yaml index a1551300d..dbd6345c2 100644 --- a/hasura/metadata/databases/default/tables/public_game_plugins.yaml +++ b/hasura/metadata/databases/default/tables/public_game_plugins.yaml @@ -57,6 +57,7 @@ select_permissions: - hot_swappable - requires_service - requires_server_guidelines_disabled + - source - config_schema - config_path - cvars @@ -85,6 +86,7 @@ select_permissions: - hot_swappable - requires_service - requires_server_guidelines_disabled + - source - config_schema - config_path - cvars @@ -113,6 +115,7 @@ select_permissions: - hot_swappable - requires_service - requires_server_guidelines_disabled + - source - config_schema - config_path - cvars @@ -141,6 +144,7 @@ select_permissions: - hot_swappable - requires_service - requires_server_guidelines_disabled + - source - config_schema - config_path - cvars @@ -169,6 +173,7 @@ select_permissions: - hot_swappable - requires_service - requires_server_guidelines_disabled + - source - config_schema - config_path - cvars @@ -197,6 +202,7 @@ select_permissions: - hot_swappable - requires_service - requires_server_guidelines_disabled + - source - config_schema - config_path - cvars @@ -225,6 +231,7 @@ select_permissions: - hot_swappable - requires_service - requires_server_guidelines_disabled + - source - config_schema - config_path - cvars @@ -253,6 +260,7 @@ select_permissions: - hot_swappable - requires_service - requires_server_guidelines_disabled + - source - config_schema - config_path - cvars @@ -283,6 +291,7 @@ insert_permissions: - hot_swappable - requires_service - requires_server_guidelines_disabled + - source - config_schema - config_path - cvars @@ -310,6 +319,7 @@ update_permissions: - hot_swappable - requires_service - requires_server_guidelines_disabled + - source - config_schema - config_path - cvars diff --git a/hasura/migrations/default/1878000000000_game_plugins_and_modes/up.sql b/hasura/migrations/default/1878000000000_game_plugins_and_modes/up.sql index 9747fcbd8..b8321d784 100644 --- a/hasura/migrations/default/1878000000000_game_plugins_and_modes/up.sql +++ b/hasura/migrations/default/1878000000000_game_plugins_and_modes/up.sql @@ -29,6 +29,11 @@ CREATE TABLE IF NOT EXISTS "public"."game_plugins" ( "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 @@ -48,6 +53,7 @@ CREATE TABLE IF NOT EXISTS "public"."game_plugins" ( -- 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 ); diff --git a/src/game-plugins/game-plugins.controller.ts b/src/game-plugins/game-plugins.controller.ts index cc11151b4..e7f44f1c7 100644 --- a/src/game-plugins/game-plugins.controller.ts +++ b/src/game-plugins/game-plugins.controller.ts @@ -121,6 +121,36 @@ export class GamePluginsController { 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); 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 index bb9a1b4c5..bb560c42f 100644 --- a/src/game-plugins/game-plugins.service.ts +++ b/src/game-plugins/game-plugins.service.ts @@ -1,3 +1,4 @@ +import { createHash } from "node:crypto"; import { BadRequestException, Injectable, @@ -16,6 +17,13 @@ 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, @@ -57,9 +65,27 @@ export class GamePluginsService { 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); } @@ -68,7 +94,8 @@ export class GamePluginsService { // would abort the whole sync and leave the catalog half-applied. await this.postgres.query( `DELETE FROM public.game_plugins p - WHERE p.slug <> ALL($1::text[]) + 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 ) @@ -178,6 +205,333 @@ export class GamePluginsService { 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 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", + }), + ]); + }); +}); From 925ce9d6d62e1b9a88f743474cfce6a14c7fe68a Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Wed, 19 Aug 2026 09:34:19 -0400 Subject: [PATCH 8/8] wip --- generated/schema.graphql | 177 +- generated/schema.ts | 155 +- generated/types.ts | 109404 ++++++++++++++++++------------------ 3 files changed, 54798 insertions(+), 54938 deletions(-) diff --git a/generated/schema.graphql b/generated/schema.graphql index e3386c1fa..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! } @@ -20324,14 +20331,6 @@ type game_modes { icon: String id: uuid! - """An object relationship""" - map_pool: map_pools - map_pool_id: uuid - match_option_defaults( - """JSON select path""" - path: String - ): jsonb! - """An array relationship""" match_options( """distinct select on columns""" @@ -20439,11 +20438,6 @@ type game_modes_aggregate_fields { min: game_modes_min_fields } -"""append existing jsonb value of filtered columns with new jsonb value""" -input game_modes_append_input { - match_option_defaults: jsonb -} - """ Boolean expression to filter rows from the table "game_modes". All fields are combined with a logical 'AND'. """ @@ -20460,9 +20454,6 @@ input game_modes_bool_exp { extra_game_params: String_comparison_exp icon: String_comparison_exp id: uuid_comparison_exp - map_pool: map_pools_bool_exp - map_pool_id: uuid_comparison_exp - match_option_defaults: jsonb_comparison_exp match_options: match_options_bool_exp match_options_aggregate: match_options_aggregate_bool_exp name: String_comparison_exp @@ -20489,27 +20480,6 @@ enum game_modes_constraint { game_modes_slug_key } -""" -delete the field or element with specified path (for JSON arrays, negative integers count from the end) -""" -input game_modes_delete_at_path_input { - match_option_defaults: [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_modes_delete_elem_input { - match_option_defaults: Int -} - -""" -delete key/value pair or string element. key/value pairs are matched based on their key value -""" -input game_modes_delete_key_input { - match_option_defaults: String -} - """ input type for inserting data into table "game_modes" """ @@ -20523,9 +20493,6 @@ input game_modes_insert_input { extra_game_params: String icon: String id: uuid - map_pool: map_pools_obj_rel_insert_input - map_pool_id: uuid - match_option_defaults: jsonb match_options: match_options_arr_rel_insert_input name: String plugins: game_mode_plugins_arr_rel_insert_input @@ -20542,7 +20509,6 @@ type game_modes_max_fields { extra_game_params: String icon: String id: uuid - map_pool_id: uuid name: String slug: String updated_at: timestamptz @@ -20557,7 +20523,6 @@ type game_modes_min_fields { extra_game_params: String icon: String id: uuid - map_pool_id: uuid name: String slug: String updated_at: timestamptz @@ -20604,9 +20569,6 @@ input game_modes_order_by { extra_game_params: order_by icon: order_by id: order_by - map_pool: map_pools_order_by - map_pool_id: order_by - match_option_defaults: order_by match_options_aggregate: match_options_aggregate_order_by name: order_by plugins_aggregate: game_mode_plugins_aggregate_order_by @@ -20621,11 +20583,6 @@ input game_modes_pk_columns_input { id: uuid! } -"""prepend existing jsonb value of filtered columns with new jsonb value""" -input game_modes_prepend_input { - match_option_defaults: jsonb -} - """ select columns of table "game_modes" """ @@ -20657,12 +20614,6 @@ enum game_modes_select_column { """column name""" id - """column name""" - map_pool_id - - """column name""" - match_option_defaults - """column name""" name @@ -20686,8 +20637,6 @@ input game_modes_set_input { extra_game_params: String icon: String id: uuid - map_pool_id: uuid - match_option_defaults: jsonb name: String slug: String updated_at: timestamptz @@ -20715,8 +20664,6 @@ input game_modes_stream_cursor_value_input { extra_game_params: String icon: String id: uuid - map_pool_id: uuid - match_option_defaults: jsonb name: String slug: String updated_at: timestamptz @@ -20753,12 +20700,6 @@ enum game_modes_update_column { """column name""" id - """column name""" - map_pool_id - - """column name""" - match_option_defaults - """column name""" name @@ -20770,27 +20711,6 @@ enum game_modes_update_column { } input game_modes_updates { - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_modes_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_modes_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_modes_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_modes_delete_key_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_modes_prepend_input - """sets the columns of the filtered rows to the given values""" _set: game_modes_set_input @@ -20805,6 +20725,7 @@ 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""" @@ -20841,6 +20762,7 @@ input 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 @@ -20865,6 +20787,7 @@ 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 @@ -20913,6 +20836,7 @@ 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 @@ -20938,6 +20862,9 @@ enum game_plugin_installs_select_column { """column name""" created_at + """column name""" + disable_server_guidelines + """column name""" enabled @@ -20958,6 +20885,7 @@ 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 @@ -20980,6 +20908,7 @@ 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 @@ -20999,6 +20928,9 @@ enum game_plugin_installs_update_column { """column name""" created_at + """column name""" + disable_server_guidelines + """column name""" enabled @@ -21601,8 +21533,10 @@ type game_plugins { """JSON select path""" path: String ): jsonb + requires_server_guidelines_disabled: Boolean! requires_service: String slug: String! + source: String! synced_at: timestamptz! tags: [String!]! @@ -21722,8 +21656,10 @@ input game_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 @@ -21787,8 +21723,10 @@ input game_plugins_insert_input { 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 @@ -21815,6 +21753,7 @@ type game_plugins_max_fields { pairs_with: [String!] requires_service: String slug: String + source: String synced_at: timestamptz tags: [String!] @@ -21843,6 +21782,7 @@ type game_plugins_min_fields { pairs_with: [String!] requires_service: String slug: String + source: String synced_at: timestamptz tags: [String!] @@ -21899,8 +21839,10 @@ input game_plugins_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 @@ -21958,12 +21900,18 @@ enum game_plugins_select_column { """column name""" panel + """column name""" + requires_server_guidelines_disabled + """column name""" requires_service """column name""" slug + """column name""" + source + """column name""" synced_at @@ -21992,8 +21940,10 @@ input game_plugins_set_input { 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 @@ -22063,8 +22013,10 @@ input game_plugins_stream_cursor_value_input { 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 @@ -22121,12 +22073,18 @@ enum game_plugins_update_column { """column name""" panel + """column name""" + requires_server_guidelines_disabled + """column name""" requires_service """column name""" slug + """column name""" + source + """column name""" synced_at @@ -41246,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 @@ -49936,27 +49897,6 @@ type mutation_root { update data of the table: "game_modes" """ update_game_modes( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_modes_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_modes_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_modes_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_modes_delete_key_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_modes_prepend_input - """sets the columns of the filtered rows to the given values""" _set: game_modes_set_input @@ -49968,27 +49908,6 @@ type mutation_root { update single row of the table: "game_modes" """ update_game_modes_by_pk( - """append existing jsonb value of filtered columns with new jsonb value""" - _append: game_modes_append_input - - """ - delete the field or element with specified path (for JSON arrays, negative integers count from the end) - """ - _delete_at_path: game_modes_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_modes_delete_elem_input - - """ - delete key/value pair or string element. key/value pairs are matched based on their key value - """ - _delete_key: game_modes_delete_key_input - - """prepend existing jsonb value of filtered columns with new jsonb value""" - _prepend: game_modes_prepend_input - """sets the columns of the filtered rows to the given values""" _set: game_modes_set_input pk_columns: game_modes_pk_columns_input! diff --git a/generated/schema.ts b/generated/schema.ts index 60071fa4c..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' @@ -7639,10 +7647,6 @@ export interface game_modes { extra_game_params: (Scalars['String'] | null) icon: (Scalars['String'] | null) id: Scalars['uuid'] - /** An object relationship */ - map_pool: (map_pools | null) - map_pool_id: (Scalars['uuid'] | null) - match_option_defaults: Scalars['jsonb'] /** An array relationship */ match_options: match_options[] /** An aggregate relationship */ @@ -7692,7 +7696,6 @@ export interface game_modes_max_fields { extra_game_params: (Scalars['String'] | null) icon: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - map_pool_id: (Scalars['uuid'] | null) name: (Scalars['String'] | null) slug: (Scalars['String'] | null) updated_at: (Scalars['timestamptz'] | null) @@ -7709,7 +7712,6 @@ export interface game_modes_min_fields { extra_game_params: (Scalars['String'] | null) icon: (Scalars['String'] | null) id: (Scalars['uuid'] | null) - map_pool_id: (Scalars['uuid'] | null) name: (Scalars['String'] | null) slug: (Scalars['String'] | null) updated_at: (Scalars['timestamptz'] | null) @@ -7728,11 +7730,11 @@ export interface game_modes_mutation_response { /** 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' | 'map_pool_id' | 'match_option_defaults' | 'name' | 'slug' | 'updated_at' +export type game_modes_select_column = 'archived_at' | 'cfg' | 'competitive_safe' | 'created_at' | 'description' | 'enabled' | 'extra_game_params' | 'icon' | 'id' | 'name' | 'slug' | 'updated_at' /** 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' | 'map_pool_id' | 'match_option_defaults' | 'name' | 'slug' | 'updated_at' +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" */ @@ -7740,6 +7742,7 @@ 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 @@ -7802,11 +7805,11 @@ export interface game_plugin_installs_mutation_response { /** select columns of table "game_plugin_installs" */ -export type game_plugin_installs_select_column = 'always_load' | 'channel' | 'created_at' | 'enabled' | 'plugin_slug' | 'updated_at' | 'version' +export type game_plugin_installs_select_column = 'always_load' | 'channel' | 'created_at' | 'disable_server_guidelines' | 'enabled' | 'plugin_slug' | 'updated_at' | 'version' /** update columns of table "game_plugin_installs" */ -export type game_plugin_installs_update_column = 'always_load' | 'channel' | 'created_at' | 'enabled' | 'plugin_slug' | 'updated_at' | 'version' +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" */ @@ -7991,8 +7994,10 @@ export interface game_plugins { 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" */ @@ -8061,6 +8066,7 @@ export interface game_plugins_max_fields { 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" */ @@ -8084,6 +8090,7 @@ export interface game_plugins_min_fields { 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" */ @@ -8103,7 +8110,7 @@ export interface game_plugins_mutation_response { /** 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_service' | 'slug' | 'synced_at' | 'tags' | 'verified' | 'wiring' +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 */ @@ -8147,7 +8154,7 @@ export interface 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_service' | 'slug' | 'synced_at' | 'tags' | 'verified' | 'wiring' +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 */ @@ -13776,6 +13783,8 @@ export interface mutation_root { 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 */ @@ -38190,6 +38199,15 @@ export interface ActiveQueryGenqlSelection{ __scalar?: boolean | number } +export interface AddCustomGamePluginOutputGenqlSelection{ + name?: boolean | number + runtime?: boolean | number + slug?: boolean | number + version?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + export interface ApiKeyResponseGenqlSelection{ key?: boolean | number __typename?: boolean | number @@ -50367,12 +50385,6 @@ export interface game_modesGenqlSelection{ extra_game_params?: boolean | number icon?: boolean | number id?: boolean | number - /** An object relationship */ - map_pool?: map_poolsGenqlSelection - map_pool_id?: boolean | number - match_option_defaults?: { __args: { - /** JSON select path */ - path?: (Scalars['String'] | null)} } | boolean | number /** An array relationship */ match_options?: (match_optionsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -50456,28 +50468,12 @@ export interface game_modes_aggregate_fieldsGenqlSelection{ } -/** append existing jsonb value of filtered columns with new jsonb value */ -export interface game_modes_append_input {match_option_defaults?: (Scalars['jsonb'] | null)} - - /** 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),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),match_option_defaults?: (jsonb_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)} - - -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -export interface game_modes_delete_at_path_input {match_option_defaults?: (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 game_modes_delete_elem_input {match_option_defaults?: (Scalars['Int'] | null)} - - -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -export interface game_modes_delete_key_input {match_option_defaults?: (Scalars['String'] | null)} +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),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),match_option_defaults?: (Scalars['jsonb'] | 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)} +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 */ @@ -50489,7 +50485,6 @@ export interface game_modes_max_fieldsGenqlSelection{ extra_game_params?: boolean | number icon?: boolean | number id?: boolean | number - map_pool_id?: boolean | number name?: boolean | number slug?: boolean | number updated_at?: boolean | number @@ -50507,7 +50502,6 @@ export interface game_modes_min_fieldsGenqlSelection{ extra_game_params?: boolean | number icon?: boolean | number id?: boolean | number - map_pool_id?: boolean | number name?: boolean | number slug?: boolean | number updated_at?: boolean | number @@ -50538,19 +50532,15 @@ export interface game_modes_on_conflict {constraint: game_modes_constraint,updat /** 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),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),match_option_defaults?: (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)} +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)} /** primary key columns input for table: game_modes */ export interface game_modes_pk_columns_input {id: Scalars['uuid']} -/** prepend existing jsonb value of filtered columns with new jsonb value */ -export interface game_modes_prepend_input {match_option_defaults?: (Scalars['jsonb'] | null)} - - /** 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),map_pool_id?: (Scalars['uuid'] | null),match_option_defaults?: (Scalars['jsonb'] | null),name?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} +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" */ @@ -50562,19 +50552,9 @@ 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),map_pool_id?: (Scalars['uuid'] | null),match_option_defaults?: (Scalars['jsonb'] | null),name?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} +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 { -/** append existing jsonb value of filtered columns with new jsonb value */ -_append?: (game_modes_append_input | null), -/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ -_delete_at_path?: (game_modes_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_modes_delete_elem_input | null), -/** delete key/value pair or string element. key/value pairs are matched based on their key value */ -_delete_key?: (game_modes_delete_key_input | null), -/** prepend existing jsonb value of filtered columns with new jsonb value */ -_prepend?: (game_modes_prepend_input | null), /** 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 */ @@ -50586,6 +50566,7 @@ export interface game_plugin_installsGenqlSelection{ always_load?: boolean | number channel?: boolean | number created_at?: boolean | number + disable_server_guidelines?: boolean | number enabled?: boolean | number /** An object relationship */ plugin?: game_pluginsGenqlSelection @@ -50617,11 +50598,11 @@ export interface game_plugin_installs_aggregate_fieldsGenqlSelection{ /** 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),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)} +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),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)} +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 */ @@ -50662,7 +50643,7 @@ export interface game_plugin_installs_on_conflict {constraint: game_plugin_insta /** 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),enabled?: (order_by | null),plugin?: (game_plugins_order_by | null),plugin_slug?: (order_by | null),updated_at?: (order_by | null),version?: (order_by | null)} +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: game_plugin_installs */ @@ -50670,7 +50651,7 @@ export interface game_plugin_installs_pk_columns_input {plugin_slug: Scalars['St /** 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),enabled?: (Scalars['Boolean'] | null),plugin_slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | null)} +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 "game_plugin_installs" */ @@ -50682,7 +50663,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -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),enabled?: (Scalars['Boolean'] | null),plugin_slug?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),version?: (Scalars['String'] | 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 game_plugin_installs_updates { /** sets the columns of the filtered rows to the given values */ @@ -51017,8 +50998,10 @@ export interface game_pluginsGenqlSelection{ 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" */ @@ -51099,7 +51082,7 @@ export interface game_plugins_avg_fieldsGenqlSelection{ /** 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_service?: (String_comparison_exp | null),slug?: (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)} +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)} /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ @@ -51115,7 +51098,7 @@ export interface game_plugins_delete_key_input {config_schema?: (Scalars['String /** 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_service?: (Scalars['String'] | null),slug?: (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)} +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 */ @@ -51133,6 +51116,7 @@ export interface game_plugins_max_fieldsGenqlSelection{ 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" */ @@ -51157,6 +51141,7 @@ export interface game_plugins_min_fieldsGenqlSelection{ 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" */ @@ -51188,7 +51173,7 @@ export interface game_plugins_on_conflict {constraint: game_plugins_constraint,u /** 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_service?: (order_by | null),slug?: (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)} +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: game_plugins */ @@ -51200,7 +51185,7 @@ export interface game_plugins_prepend_input {config_schema?: (Scalars['jsonb'] | /** 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_service?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),synced_at?: (Scalars['timestamptz'] | null),tags?: (Scalars['String'][] | null),verified?: (Scalars['Boolean'] | null),wiring?: (Scalars['jsonb'] | null)} +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 */ @@ -51245,7 +51230,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -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_service?: (Scalars['String'] | null),slug?: (Scalars['String'] | null),synced_at?: (Scalars['timestamptz'] | null),tags?: (Scalars['String'][] | null),verified?: (Scalars['Boolean'] | null),wiring?: (Scalars['jsonb'] | 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 */ @@ -60968,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 */ @@ -65464,32 +65451,12 @@ export interface mutation_rootGenqlSelection{ updates: game_mode_plugins_updates[]} }) /** update data of the table: "game_modes" */ update_game_modes?: (game_modes_mutation_responseGenqlSelection & { __args: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (game_modes_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (game_modes_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_modes_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (game_modes_delete_key_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (game_modes_prepend_input | null), /** 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: { - /** append existing jsonb value of filtered columns with new jsonb value */ - _append?: (game_modes_append_input | null), - /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ - _delete_at_path?: (game_modes_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_modes_delete_elem_input | null), - /** delete key/value pair or string element. key/value pairs are matched based on their key value */ - _delete_key?: (game_modes_delete_key_input | null), - /** prepend existing jsonb value of filtered columns with new jsonb value */ - _prepend?: (game_modes_prepend_input | null), /** 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" */ @@ -106956,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"') @@ -127585,8 +127560,6 @@ export const enumGameModesSelectColumn = { extra_game_params: 'extra_game_params' as const, icon: 'icon' as const, id: 'id' as const, - map_pool_id: 'map_pool_id' as const, - match_option_defaults: 'match_option_defaults' as const, name: 'name' as const, slug: 'slug' as const, updated_at: 'updated_at' as const @@ -127602,8 +127575,6 @@ export const enumGameModesUpdateColumn = { extra_game_params: 'extra_game_params' as const, icon: 'icon' as const, id: 'id' as const, - map_pool_id: 'map_pool_id' as const, - match_option_defaults: 'match_option_defaults' as const, name: 'name' as const, slug: 'slug' as const, updated_at: 'updated_at' as const @@ -127617,6 +127588,7 @@ 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, @@ -127627,6 +127599,7 @@ 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, @@ -127687,8 +127660,10 @@ export const enumGamePluginsSelectColumn = { 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, @@ -127707,8 +127682,10 @@ export const enumGamePluginsUpdateColumn = { 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, diff --git a/generated/types.ts b/generated/types.ts index 0e9cd1e30..b2a5f4f43 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -1,632 +1,636 @@ export default { "scalars": [ - 5, - 31, - 40, - 83, - 115, - 123, - 127, - 129, - 140, - 151, - 163, - 176, - 185, - 193, - 209, - 220, - 232, - 245, - 255, - 263, - 268, - 271, - 278, - 287, - 295, - 313, - 328, + 6, + 32, + 41, + 84, + 116, + 124, + 128, + 130, + 141, + 152, + 164, + 177, + 186, + 194, + 210, + 221, + 233, + 246, + 256, + 264, + 269, + 272, + 279, + 288, + 296, + 314, 329, 330, - 342, - 351, - 358, - 371, - 379, - 389, - 398, - 406, - 416, - 425, - 433, - 443, - 452, - 460, - 477, - 488, + 331, + 343, + 352, + 359, + 372, + 380, + 390, + 399, + 407, + 417, + 426, + 434, + 444, + 453, + 461, + 478, 489, 490, - 502, - 522, - 533, + 491, + 503, + 523, 534, 535, - 547, - 567, - 579, + 536, + 548, + 568, 580, 581, - 593, - 605, + 582, + 594, 606, - 615, - 619, - 625, + 607, + 616, + 620, 626, - 635, - 639, - 645, + 627, + 636, + 640, 646, - 655, - 659, - 665, + 647, + 656, + 660, 666, - 676, - 680, - 686, + 667, + 677, + 681, 687, - 697, - 701, - 707, + 688, + 698, + 702, 708, - 718, - 722, - 728, + 709, + 719, + 723, 729, - 739, - 743, - 749, + 730, + 740, + 744, 750, - 760, - 764, - 770, + 751, + 761, + 765, 771, - 780, - 784, - 790, + 772, + 781, + 785, 791, - 800, - 804, - 810, + 792, + 801, + 805, 811, - 821, - 825, - 831, + 812, + 822, + 826, 832, - 841, - 845, - 851, + 833, + 842, + 846, 852, - 861, - 865, - 871, + 853, + 862, + 866, 872, - 881, - 885, - 891, + 873, + 882, + 886, 892, - 901, - 905, - 911, + 893, + 902, + 906, 912, - 922, - 926, - 932, + 913, + 923, + 927, 933, - 943, - 947, - 953, + 934, + 944, + 948, 954, - 964, - 968, - 974, + 955, + 965, + 969, 975, - 985, - 989, - 995, + 976, + 986, + 990, 996, - 1006, - 1010, - 1016, + 997, + 1007, + 1011, 1017, - 1027, - 1031, - 1037, + 1018, + 1028, + 1032, 1038, - 1047, - 1051, - 1057, + 1039, + 1048, + 1052, 1058, - 1068, - 1072, - 1078, + 1059, + 1069, + 1073, 1079, - 1088, - 1092, - 1098, + 1080, + 1089, + 1093, 1099, - 1109, - 1113, - 1119, + 1100, + 1110, + 1114, 1120, - 1129, - 1133, - 1139, + 1121, + 1130, + 1134, 1140, - 1149, - 1153, - 1159, + 1141, + 1150, + 1154, 1160, - 1170, - 1174, - 1180, + 1161, + 1171, + 1175, 1181, - 1191, - 1195, - 1201, + 1182, + 1192, + 1196, 1202, - 1211, - 1215, - 1221, + 1203, + 1212, + 1216, 1222, - 1231, - 1235, - 1241, + 1223, + 1232, + 1236, 1242, - 1251, - 1255, - 1261, + 1243, + 1252, + 1256, 1262, - 1271, - 1275, - 1281, + 1263, + 1272, + 1276, 1282, - 1291, - 1295, - 1301, + 1283, + 1292, + 1296, 1302, - 1312, - 1316, - 1322, + 1303, + 1313, + 1317, 1323, - 1332, - 1336, - 1342, + 1324, + 1333, + 1337, 1343, - 1352, - 1356, - 1362, + 1344, + 1353, + 1357, 1363, - 1372, - 1376, - 1382, + 1364, + 1373, + 1377, 1383, - 1392, - 1396, - 1402, + 1384, + 1393, + 1397, 1403, - 1413, - 1417, - 1423, + 1404, + 1414, + 1418, 1424, - 1433, - 1437, - 1443, + 1425, + 1434, + 1438, 1444, - 1453, - 1457, - 1463, + 1445, + 1454, + 1458, 1464, - 1474, - 1478, - 1484, + 1465, + 1475, + 1479, 1485, - 1495, - 1499, - 1505, + 1486, + 1496, + 1500, 1506, - 1516, - 1520, - 1526, + 1507, + 1517, + 1521, 1527, - 1536, - 1540, - 1546, + 1528, + 1537, + 1541, 1547, - 1556, - 1560, - 1566, + 1548, + 1557, + 1561, 1567, - 1576, - 1580, - 1586, - 1594, - 1598, - 1610, - 1632, - 1643, - 1655, - 1663, - 1675, - 1693, - 1704, - 1716, - 1734, - 1745, - 1757, - 1773, - 1783, - 1787, - 1797, - 1807, - 1811, - 1818, - 1828, - 1836, - 1841, - 1848, - 1857, - 1865, - 1883, - 1898, + 1568, + 1577, + 1581, + 1587, + 1595, + 1599, + 1611, + 1633, + 1644, + 1656, + 1664, + 1676, + 1694, + 1705, + 1717, + 1735, + 1746, + 1758, + 1774, + 1784, + 1788, + 1798, + 1808, + 1812, + 1819, + 1829, + 1837, + 1842, + 1849, + 1858, + 1866, + 1884, 1899, 1900, - 1912, + 1901, + 1913, 1925, + 1934, 1938, - 1942, - 1948, + 1944, + 1952, 1956, - 1960, - 1974, - 1985, - 1986, - 1987, - 1999, - 2013, - 2026, - 2034, - 2049, - 2059, - 2060, + 1970, + 1981, + 1982, + 1983, + 1995, + 2009, + 2022, + 2030, + 2045, + 2055, + 2056, + 2057, 2061, - 2065, - 2080, - 2096, - 2097, - 2098, - 2110, - 2124, - 2138, - 2146, - 2157, - 2170, - 2178, + 2076, + 2092, + 2093, + 2094, + 2106, + 2120, + 2134, + 2142, + 2153, + 2166, + 2174, + 2183, + 2185, 2187, - 2189, - 2191, - 2205, - 2223, - 2233, - 2241, - 2256, - 2267, - 2279, - 2297, - 2308, - 2320, - 2338, - 2349, - 2361, - 2377, + 2201, + 2219, + 2229, + 2237, + 2252, + 2263, + 2275, + 2293, + 2304, + 2316, + 2334, + 2345, + 2357, + 2373, + 2384, 2388, - 2392, - 2400, - 2414, - 2422, - 2437, - 2448, - 2460, - 2478, - 2489, - 2501, - 2519, - 2531, - 2543, - 2555, + 2396, + 2410, + 2418, + 2433, + 2444, + 2456, + 2474, + 2485, + 2497, + 2515, + 2527, + 2539, + 2551, + 2560, 2564, - 2568, - 2574, + 2570, + 2579, 2583, - 2587, - 2601, - 2612, - 2613, - 2614, - 2626, - 2638, + 2597, + 2608, + 2609, + 2610, + 2622, + 2634, + 2643, 2647, - 2651, - 2663, - 2674, - 2675, + 2659, + 2670, + 2671, + 2672, 2676, - 2680, - 2692, - 2704, - 2716, - 2735, - 2750, - 2762, - 2782, - 2793, - 2794, - 2795, - 2807, - 2825, - 2837, - 2849, - 2870, - 2886, - 2887, - 2888, - 2900, - 2918, - 2929, - 2941, - 2959, - 2969, - 2970, + 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, 2971, - 2975, - 2987, - 2999, - 3011, - 3031, - 3043, - 3044, - 3045, - 3057, - 3075, - 3085, - 3086, + 2983, + 2995, + 3007, + 3027, + 3039, + 3040, + 3041, + 3053, + 3071, + 3081, + 3082, + 3083, 3087, - 3091, - 3106, - 3121, - 3122, - 3123, - 3135, - 3147, + 3102, + 3117, + 3118, + 3119, + 3131, + 3143, + 3151, 3155, - 3159, - 3173, - 3185, - 3186, - 3187, - 3199, - 3211, + 3169, + 3181, + 3182, + 3183, + 3195, + 3207, + 3215, 3219, - 3223, - 3250, - 3251, - 3252, - 3276, - 3285, - 3293, - 3303, - 3312, - 3320, - 3338, - 3353, - 3354, - 3355, - 3367, - 3375, - 3377, - 3388, - 3399, - 3411, - 3424, - 3434, - 3442, - 3452, - 3461, - 3469, - 3484, - 3495, - 3507, - 3527, - 3538, - 3539, - 3540, - 3552, - 3568, - 3588, - 3599, - 3611, - 3624, - 3633, - 3641, - 3656, - 3667, - 3679, - 3699, - 3710, - 3711, - 3712, - 3724, - 3754, - 3765, - 3777, - 3785, - 3796, - 3797, - 3798, - 3810, - 3829, - 3851, - 3862, - 3874, - 3890, - 3916, - 3943, - 3954, - 3966, - 3982, - 4002, - 4013, - 4025, - 4043, - 4054, - 4066, - 4094, + 3246, + 3247, + 3248, + 3272, + 3281, + 3289, + 3299, + 3308, + 3316, + 3334, + 3349, + 3350, + 3351, + 3363, + 3371, + 3373, + 3384, + 3395, + 3407, + 3420, + 3430, + 3438, + 3448, + 3457, + 3465, + 3480, + 3491, + 3503, + 3523, + 3534, + 3535, + 3536, + 3548, + 3564, + 3584, + 3595, + 3607, + 3620, + 3629, + 3637, + 3652, + 3663, + 3675, + 3695, + 3706, + 3707, + 3708, + 3720, + 3750, + 3761, + 3773, + 3781, + 3792, + 3793, + 3794, + 3806, + 3825, + 3847, + 3858, + 3870, + 3886, + 3912, + 3939, + 3950, + 3962, + 3978, + 3998, + 4009, + 4021, + 4039, + 4050, + 4062, + 4090, + 4101, + 4102, + 4103, + 4104, 4105, 4106, 4107, 4108, 4109, - 4110, - 4111, - 4112, - 4113, - 4125, - 4138, - 4148, - 4156, - 4167, - 4180, - 4188, - 4198, - 4207, - 4215, - 4230, - 4241, - 4253, - 4271, - 4282, - 4294, - 4318, - 4340, - 4350, - 4358, - 4368, - 4377, - 4385, - 4395, - 4404, - 4412, - 4426, - 4436, - 4444, - 4454, - 4463, - 4471, - 4489, - 4505, - 4506, - 4507, - 4519, - 4531, + 4121, + 4134, + 4144, + 4152, + 4163, + 4176, + 4184, + 4194, + 4203, + 4211, + 4226, + 4237, + 4249, + 4267, + 4278, + 4290, + 4314, + 4336, + 4346, + 4354, + 4364, + 4373, + 4381, + 4391, + 4400, + 4408, + 4422, + 4432, + 4440, + 4450, + 4459, + 4467, + 4485, + 4501, + 4502, + 4503, + 4515, + 4527, + 4535, 4539, - 4543, - 4545, - 4555, + 4541, + 4551, + 4561, 4565, - 4569, - 4576, - 4586, - 4594, - 4604, - 4613, - 4621, - 4636, - 4647, - 4659, - 4679, - 4690, - 4691, - 4692, - 4704, - 4717, - 4726, - 4734, - 4749, - 4759, - 4760, + 4572, + 4582, + 4590, + 4600, + 4609, + 4617, + 4632, + 4643, + 4655, + 4675, + 4686, + 4687, + 4688, + 4700, + 4713, + 4722, + 4730, + 4745, + 4755, + 4756, + 4757, 4761, - 4765, - 4777, - 4788, - 4800, - 4820, - 4832, - 4833, - 4834, - 4846, - 4859, - 4869, - 4877, - 4887, - 4896, - 4904, - 4921, - 4933, - 4934, - 4935, - 4947, - 4955, - 4957, - 4958, - 4970, - 4982, - 4994, - 5014, - 5026, - 5027, - 5028, - 5040, - 5056, + 4773, + 4784, + 4796, + 4816, + 4828, + 4829, + 4830, + 4842, + 4855, + 4865, + 4873, + 4883, + 4892, + 4900, + 4917, + 4929, + 4930, + 4931, + 4943, + 4951, + 4953, + 4954, + 4966, + 4978, + 4990, + 5010, + 5022, + 5023, + 5024, + 5036, + 5052, + 5062, 5066, - 5070, - 5080, + 5076, + 5086, 5090, - 5094, - 5106, - 5117, - 5129, - 5147, - 5158, - 5170, - 5188, - 5199, - 5211, - 5232, - 5248, - 5249, - 5250, - 5262, - 5280, - 5291, - 5303, - 5321, - 5332, - 5344, - 5362, - 5374, - 5386, - 5416, + 5102, + 5113, + 5125, + 5143, + 5154, + 5166, + 5184, + 5195, + 5207, + 5228, + 5244, + 5245, + 5246, + 5258, + 5276, + 5287, + 5299, + 5317, + 5328, + 5340, + 5358, + 5370, + 5382, + 5412, + 5424, + 5425, + 5426, + 5427, 5428, 5429, 5430, @@ -634,6612 +638,6625 @@ export default { 5432, 5433, 5434, - 5435, - 5436, - 5437, - 5438, - 5450, - 5458, + 5446, + 5454, + 5483, + 5484, + 5485, + 5486, 5487, 5488, 5489, 5490, 5491, - 5492, - 5493, - 5494, - 5495, - 5520, - 5546, + 5516, + 5542, + 5585, + 5586, + 5587, + 5588, 5589, 5590, 5591, 5592, 5593, - 5594, - 5595, - 5596, - 5597, - 5626, - 5654, - 5679, - 5697, - 5715, - 5736, - 5756, - 5782, - 5807, - 5825, + 5622, + 5650, + 5675, + 5693, + 5711, + 5732, + 5752, + 5778, + 5803, + 5821, + 5857, + 5858, + 5859, + 5860, 5861, 5862, 5863, 5864, 5865, - 5866, - 5867, - 5868, - 5869, - 5894, - 5912, - 5930, - 5958, - 5985, - 6003, - 6021, - 6047, - 6072, - 6090, - 6108, - 6135, - 6136, - 6137, - 6150, - 6170, - 6190, - 6220, + 5890, + 5908, + 5926, + 5954, + 5981, + 5999, + 6017, + 6043, + 6068, + 6086, + 6104, + 6131, + 6132, + 6133, + 6146, + 6166, + 6186, + 6216, + 6228, + 6229, + 6230, + 6231, 6232, 6233, 6234, 6235, 6236, - 6237, - 6238, - 6239, - 6240, - 6252, + 6248, + 6282, + 6283, + 6284, + 6285, 6286, 6287, 6288, 6289, 6290, - 6291, - 6292, - 6293, - 6294, + 6333, + 6334, + 6335, + 6336, 6337, 6338, 6339, 6340, - 6341, - 6342, - 6343, - 6344, - 6345 + 6341 ], "types": { "ActiveConnection": { "application_name": [ - 83 + 84 ], "client_addr": [ - 83 + 84 ], "pid": [ - 40 + 41 ], "query": [ - 83 + 84 ], "query_start": [ - 4957 + 4953 ], "state": [ - 83 + 84 ], "usename": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "ActiveQuery": { "application_name": [ - 83 + 84 ], "client_addr": [ - 83 + 84 ], "duration_seconds": [ - 31 + 32 ], "pid": [ - 40 + 41 ], "query": [ - 83 + 84 ], "query_start": [ - 4957 + 4953 ], "state": [ - 83 + 84 ], "usename": [ - 83 + 84 ], "wait_event": [ - 83 + 84 ], "wait_event_type": [ - 83 + 84 ], "__typename": [ - 83 + 84 + ] + }, + "AddCustomGamePluginOutput": { + "name": [ + 84 + ], + "runtime": [ + 84 + ], + "slug": [ + 84 + ], + "version": [ + 84 + ], + "__typename": [ + 84 ] }, "ApiKeyResponse": { "key": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "Award": { "allow_multiple": [ - 5 + 6 ], "created_at": [ - 83 + 84 ], "created_by_steam_id": [ - 83 + 84 ], "description": [ - 83 + 84 ], "event_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "image_url": [ - 83 + 84 ], "league_season_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "season_id": [ - 5458 + 5454 ], "silhouette": [ - 40 + 41 ], "system_key": [ - 83 + 84 ], "tier": [ - 83 + 84 ], "tournament_id": [ - 5458 + 5454 ], "updated_at": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "AwardRecipient": { "award_id": [ - 5458 + 5454 ], "awarded_by_steam_id": [ - 83 + 84 ], "created_at": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "note": [ - 83 + 84 ], "placement": [ - 40 + 41 ], "player_steam_id": [ - 83 + 84 ], "source": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "ClipAudioInput": { "duck_game_audio": [ - 5 + 6 ], "fade_in_ms": [ - 40 + 41 ], "fade_out_ms": [ - 40 + 41 ], "track_url": [ - 83 + 84 ], "volume": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "ClipOutputInput": { "format": [ - 83 + 84 ], "fps": [ - 40 + 41 ], "resolution": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "ClipOverlayInput": { "end_ms": [ - 40 + 41 ], "payload": [ - 2191 + 2187 ], "start_ms": [ - 40 + 41 ], "type": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "ClipSegmentInput": { "end_tick": [ - 40 + 41 ], "pov_steam_id": [ - 83 + 84 ], "start_tick": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "ClipSpecInput": { "audio": [ - 7 + 8 ], "destination": [ - 83 + 84 ], "match_map_id": [ - 5458 + 5454 ], "output": [ - 8 + 9 ], "overlays": [ - 9 + 10 ], "segments": [ - 10 + 11 ], "title": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "ConnectionByState": { "count": [ - 40 + 41 ], "state": [ - 83 + 84 ], "wait_event_type": [ - 83 + 84 ], "waiting_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "ConnectionStats": { "active": [ - 40 + 41 ], "by_state": [ - 12 + 13 ], "idle": [ - 40 + 41 ], "idle_in_transaction": [ - 40 + 41 ], "total": [ - 40 + 41 ], "waiting": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "CpuStat": { "time": [ - 4957 + 4953 ], "total": [ - 268 + 269 ], "used": [ - 268 + 269 ], "window": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "CreateClipRenderOutput": { "job_id": [ - 5458 + 5454 ], "success": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "CreateDraftGameOutput": { "draftGameId": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "CreateScheduledMatchOutput": { "matchId": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "DatabaseStats": { "blks_hit": [ - 40 + 41 ], "blks_read": [ - 40 + 41 ], "cache_hit_ratio": [ - 31 + 32 ], "conflicts": [ - 40 + 41 ], "datname": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ], "queryid": [ - 83 + 84 ], "shared_blks_hit": [ - 40 + 41 ], "shared_blks_read": [ - 40 + 41 ], "total_exec_time": [ - 31 + 32 ], "total_rows": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "DedicatedSeverInfo": { "id": [ - 83 + 84 ], "lastPing": [ - 83 + 84 ], "map": [ - 83 + 84 ], "players": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "DeleteOrphansOutput": { "bytes_freed": [ - 31 + 32 ], "deleted": [ - 40 + 41 ], "remaining_orphans": [ - 40 + 41 ], "success": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "DiskStat": { "available": [ - 83 + 84 ], "filesystem": [ - 83 + 84 ], "mountpoint": [ - 83 + 84 ], "size": [ - 83 + 84 ], "used": [ - 83 + 84 ], "usedPercent": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "DiskStats": { "disks": [ - 22 + 23 ], "time": [ - 4957 + 4953 ], "__typename": [ - 83 + 84 ] }, "DraftGamePreviewOutput": { "accepted_count": [ - 40 + 41 ], "access": [ - 83 + 84 ], "capacity": [ - 40 + 41 ], "host_avatar_url": [ - 83 + 84 ], "host_name": [ - 83 + 84 ], "host_steam_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "mode": [ - 83 + 84 ], "players": [ - 25 + 26 ], "require_approval": [ - 5 + 6 ], "status": [ - 83 + 84 ], "type": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "DraftGamePreviewPlayer": { "avatar_url": [ - 83 + 84 ], "name": [ - 83 + 84 ], "status": [ - 83 + 84 ], "steam_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "FaceitTestOutput": { "dataApi": [ - 27 + 28 ], "downloadApi": [ - 27 + 28 ], "__typename": [ - 83 + 84 ] }, "FaceitTestResult": { "detail": [ - 83 + 84 ], "ok": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "FileContentResponse": { "content": [ - 83 + 84 ], "path": [ - 83 + 84 ], "size": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "FileItem": { "isDirectory": [ - 5 + 6 ], "modified": [ - 4957 + 4953 ], "name": [ - 83 + 84 ], "path": [ - 83 + 84 ], "size": [ - 268 + 269 ], "type": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "FileListResponse": { "currentPath": [ - 83 + 84 ], "items": [ - 29 + 30 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "GetTestUploadResponse": { "error": [ - 83 + 84 ], "link": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "GpuDeviceStat": { "index": [ - 40 + 41 ], "memory_mb": [ - 40 + 41 ], "memory_used_mb": [ - 40 + 41 ], "name": [ - 83 + 84 ], "power_w": [ - 40 + 41 ], "temperature_c": [ - 40 + 41 ], "utilization_percent": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "GpuStats": { "devices": [ - 34 + 35 ], "time": [ - 4957 + 4953 ], "__typename": [ - 83 + 84 ] }, "HighlightPresetAvailability": { "best_round": [ - 5 + 6 ], "has_demo": [ - 5 + 6 ], "knife": [ - 5 + 6 ], "multikills": [ - 5 + 6 ], "recap": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "HypertableInfo": { "compression_enabled": [ - 5 + 6 ], "hypertable_name": [ - 83 + 84 ], "num_chunks": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "IndexIOStat": { "idx_blks_hit": [ - 40 + 41 ], "idx_blks_read": [ - 40 + 41 ], "indexname": [ - 83 + 84 ], "schemaname": [ - 83 + 84 ], "tablename": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "IndexStat": { "idx_scan": [ - 40 + 41 ], "idx_tup_fetch": [ - 40 + 41 ], "idx_tup_read": [ - 40 + 41 ], "index_size": [ - 40 + 41 ], "indexname": [ - 83 + 84 ], "schemaname": [ - 83 + 84 ], "table_size": [ - 40 + 41 ], "tablename": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "KickResult": { "kicked": [ - 5 + 6 ], "message": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "LiveSpecGsi": { "map_name": [ - 83 + 84 ], "map_phase": [ - 83 + 84 ], "round_number": [ - 40 + 41 ], "round_phase": [ - 83 + 84 ], "spec_slots": [ - 44 + 45 ], "spectated_steam_id": [ - 83 + 84 ], "team_ct_name": [ - 83 + 84 ], "team_ct_score": [ - 40 + 41 ], "team_t_name": [ - 83 + 84 ], "team_t_score": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "LiveSpecSlot": { "alive": [ - 5 + 6 ], "health": [ - 40 + 41 ], "name": [ - 83 + 84 ], "slot": [ - 40 + 41 ], "steam_id": [ - 83 + 84 ], "team": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "LiveStreamSpecState": { "gsi": [ - 43 + 44 ], "__typename": [ - 83 + 84 ] }, "LockInfo": { "granted": [ - 5 + 6 ], "locktype": [ - 83 + 84 ], "mode": [ - 83 + 84 ], "pid": [ - 40 + 41 ], "query": [ - 83 + 84 ], "relation": [ - 83 + 84 ], "usename": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "MeResponse": { "avatar_url": [ - 83 + 84 ], "country": [ - 83 + 84 ], "discord_id": [ - 83 + 84 ], "language": [ - 83 + 84 ], "name": [ - 83 + 84 ], "player": [ - 4335 + 4331 ], "profile_url": [ - 83 + 84 ], "role": [ - 83 + 84 ], "steam_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "MemoryStat": { "time": [ - 4957 + 4953 ], "total": [ - 268 + 269 ], "used": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "NetworkStats": { "nics": [ - 51 + 52 ], "time": [ - 4957 + 4953 ], "__typename": [ - 83 + 84 ] }, "NewsPost": { "author_steam_id": [ - 83 + 84 ], "content_markdown": [ - 83 + 84 ], "cover_image_url": [ - 83 + 84 ], "created_at": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "published_at": [ - 83 + 84 ], "slug": [ - 83 + 84 ], "status": [ - 83 + 84 ], "teaser": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 83 + 84 ], "view_count": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "NicStat": { "name": [ - 83 + 84 ], "rx": [ - 268 + 269 ], "tx": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "NodeStats": { "cpu": [ - 14 + 15 ], "disks": [ - 23 + 24 ], "gpu": [ - 35 + 36 ], "memory": [ - 48 + 49 ], "network": [ - 49 + 50 ], "node": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "OrphanObject": { "key": [ - 83 + 84 ], "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "OrphanScanResultOutput": { "bucket": [ - 83 + 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": [ - 83 + 84 ], "scanning": [ - 5 + 6 ], "total_bytes": [ - 31 + 32 ], "total_objects": [ - 40 + 41 ], "tracked_bytes": [ - 31 + 32 ], "tracked_objects": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "PendingMatchImportActionOutput": { "error": [ - 83 + 84 ], "success": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "PluginReadmeOutput": { "content": [ - 83 + 84 ], "format": [ - 83 + 84 ], "repo": [ - 83 + 84 ], "url": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "PodStats": { "cpu": [ - 14 + 15 ], "memory": [ - 48 + 49 ], "name": [ - 83 + 84 ], "node": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "PreviewGameModeOutput": { "cfg": [ - 83 + 84 ], "enabledPlugins": [ - 83 + 84 ], "extraGameParams": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "PreviewTournamentMatchResetOutput": { "impacts": [ - 107 + 108 ], "__typename": [ - 83 + 84 ] }, "QueryDetail": { "explain_plan": [ - 83 + 84 ], "query": [ - 83 + 84 ], "queryid": [ - 83 + 84 ], "stats": [ - 61 + 62 ], "__typename": [ - 83 + 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": [ - 83 + 84 ], "queryid": [ - 83 + 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": [ - 83 + 84 ] }, "RecomputeEloStartedOutput": { "running": [ - 5 + 6 ], "success": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "RecomputeEloStatusOutput": { "canceled": [ - 5 + 6 ], "completed": [ - 40 + 41 ], "current_match_id": [ - 83 + 84 ], "failed": [ - 40 + 41 ], "finished_at": [ - 83 + 84 ], "running": [ - 5 + 6 ], "started_at": [ - 83 + 84 ], "total": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "ReconcileNodePluginsOutput": { "detected": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "ReindexStartedOutput": { "running": [ - 5 + 6 ], "success": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "ReindexStatusOutput": { "canceled": [ - 5 + 6 ], "completed": [ - 40 + 41 ], "current_steam_id": [ - 83 + 84 ], "failed": [ - 40 + 41 ], "finished_at": [ - 83 + 84 ], "running": [ - 5 + 6 ], "started_at": [ - 83 + 84 ], "total": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "ReparseAllStartedOutput": { "running": [ - 5 + 6 ], "success": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "ReparseAllStatusOutput": { "canceled": [ - 5 + 6 ], "completed": [ - 40 + 41 ], "current_demo_id": [ - 83 + 84 ], "failed": [ - 40 + 41 ], "finished_at": [ - 83 + 84 ], "running": [ - 5 + 6 ], "started_at": [ - 83 + 84 ], "total": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "SanctionResult": { "enforced": [ - 5 + 6 ], "id": [ - 83 + 84 ], "message": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "ScanStartedOutput": { "scanning": [ - 5 + 6 ], "success": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "ScheduledLineupInput": { "steam_ids": [ - 83 + 84 ], "team_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "SeasonBackfillStatusOutput": { "canceled": [ - 5 + 6 ], "completed": [ - 40 + 41 ], "current_match_id": [ - 83 + 84 ], "failed": [ - 40 + 41 ], "finished_at": [ - 83 + 84 ], "running": [ - 5 + 6 ], "season_id": [ - 83 + 84 ], "started_at": [ - 83 + 84 ], "total": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "ServerPlayer": { "name": [ - 83 + 84 ], "steam_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "SetupGameServeOutput": { "gameServerId": [ - 83 + 84 ], "link": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "SteamMatchHistoryLinkOutput": { "error": [ - 83 + 84 ], "success": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "SteamMatchHistoryPollOutput": { "collected": [ - 40 + 41 ], "error": [ - 83 + 84 ], "success": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "SteamPresenceAdminStatusOutput": { "bots": [ - 78 + 79 ], "enabled": [ - 5 + 6 ], "pool": [ - 80 + 81 ], "__typename": [ - 83 + 84 ] }, "SteamPresenceBot": { "assigned": [ - 40 + 41 ], "capacity": [ - 40 + 41 ], "guardLastWrong": [ - 5 + 6 ], "guardType": [ - 83 + 84 ], "id": [ - 83 + 84 ], "needs2fa": [ - 5 + 6 ], "online": [ - 5 + 6 ], "steamId": [ - 83 + 84 ], "steamLevel": [ - 40 + 41 ], "username": [ - 83 + 84 ], "watching": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "SteamPresenceBotAssignment": { "addUrl": [ - 83 + 84 ], "enabled": [ - 5 + 6 ], "status": [ - 83 + 84 ], "steamId": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "SteamPresencePool": { "bots": [ - 40 + 41 ], "capacity": [ - 40 + 41 ], "online": [ - 40 + 41 ], "pending": [ - 40 + 41 ], "watching": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "StorageStats": { "summary": [ - 82 + 83 ], "tables": [ - 89 + 90 ], "__typename": [ - 83 + 84 ] }, "StorageSummary": { "estimated_reclaimable_space": [ - 31 + 32 ], "total_database_size": [ - 31 + 32 ], "total_indexes_size": [ - 31 + 32 ], "total_table_size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "String": {}, "String_array_comparison_exp": { "_contained_in": [ - 83 + 84 ], "_contains": [ - 83 + 84 ], "_eq": [ - 83 + 84 ], "_gt": [ - 83 + 84 ], "_gte": [ - 83 + 84 ], "_in": [ - 83 + 84 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 83 + 84 ], "_lte": [ - 83 + 84 ], "_neq": [ - 83 + 84 ], "_nin": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "String_comparison_exp": { "_eq": [ - 83 + 84 ], "_gt": [ - 83 + 84 ], "_gte": [ - 83 + 84 ], "_ilike": [ - 83 + 84 ], "_in": [ - 83 + 84 ], "_iregex": [ - 83 + 84 ], "_is_null": [ - 5 + 6 ], "_like": [ - 83 + 84 ], "_lt": [ - 83 + 84 ], "_lte": [ - 83 + 84 ], "_neq": [ - 83 + 84 ], "_nilike": [ - 83 + 84 ], "_nin": [ - 83 + 84 ], "_niregex": [ - 83 + 84 ], "_nlike": [ - 83 + 84 ], "_nregex": [ - 83 + 84 ], "_nsimilar": [ - 83 + 84 ], "_regex": [ - 83 + 84 ], "_similar": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "SuccessOutput": { "success": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "SyncPluginRegistryOutput": { "plugins": [ - 40 + 41 ], "versions": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 83 + 84 ], "schemaname": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "TableSizeInfo": { "estimated_dead_tuple_bytes": [ - 31 + 32 ], "indexes_size": [ - 31 + 32 ], "n_dead_tup": [ - 40 + 41 ], "n_live_tup": [ - 40 + 41 ], "schemaname": [ - 83 + 84 ], "table_size": [ - 31 + 32 ], "tablename": [ - 83 + 84 ], "total_size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "TableStat": { "idx_scan": [ - 40 + 41 ], "idx_tup_fetch": [ - 40 + 41 ], "last_analyze": [ - 4957 + 4953 ], "last_autoanalyze": [ - 4957 + 4953 ], "last_autovacuum": [ - 4957 + 4953 ], "last_vacuum": [ - 4957 + 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": [ - 83 + 84 ], "schemaname": [ - 83 + 84 ], "seq_scan": [ - 40 + 41 ], "seq_tup_read": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "TeamCalendarOutput": { "url": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "TelemetryActivityPoint": { "day": [ - 83 + 84 ], "installs": [ - 40 + 41 ], "matches": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "TelemetryCountryCount": { "country": [ - 83 + 84 ], "installs": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "TelemetryFeatureAdoption": { "counted": [ - 40 + 41 ], "enabled": [ - 40 + 41 ], "flagged": [ - 40 + 41 ], "installsUsing": [ - 40 + 41 ], "key": [ - 83 + 84 ], "kind": [ - 83 + 84 ], "reporting": [ - 40 + 41 ], "total": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "TelemetryFleetTotals": { "appearancesReported": [ - 40 + 41 ], "competitionReported": [ - 40 + 41 ], "dedicatedServers": [ - 40 + 41 ], "eventTeams": [ - 40 + 41 ], "events": [ - 40 + 41 ], "gameModes": [ - 40 + 41 ], "gameModesEnabled": [ - 40 + 41 ], "gameModesUnranked": [ - 40 + 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": [ - 2191 + 2187 ], "pluginsManual": [ - 40 + 41 ], "pluginsReported": [ - 40 + 41 ], "pluginsRequested": [ - 40 + 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": [ - 83 + 84 ] }, "TelemetryGrowthPoint": { "installs": [ - 40 + 41 ], "month": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "TelemetryInstallCounts": { "active24h": [ - 40 + 41 ], "active30d": [ - 40 + 41 ], "active7d": [ - 40 + 41 ], "new30d": [ - 40 + 41 ], "retained180d": [ - 40 + 41 ], "total": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "TelemetryMatchSourceCount": { "matches": [ - 40 + 41 ], "source": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "TelemetryMatchTypeCount": { "matches": [ - 40 + 41 ], "type": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "TelemetryRuntimeCount": { "installs": [ - 40 + 41 ], "runtime": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "TelemetryStats": { "activity": [ - 92 + 93 ], "countries": [ - 93 + 94 ], "features": [ - 94 + 95 ], "growth": [ - 96 + 97 ], "installs": [ - 97 + 98 ], "matchSources": [ - 98 + 99 ], "matchTypes": [ - 99 + 100 ], "online": [ - 40 + 41 ], "runtimes": [ - 100 + 101 ], "totals": [ - 95 + 96 ], "versions": [ - 102 + 103 ], "__typename": [ - 83 + 84 ] }, "TelemetryVersionCount": { "installs": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "since": [ - 83 + 84 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "TestUploadResponse": { "error": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "TimescaleJob": { "hypertable_name": [ - 83 + 84 ], "job_id": [ - 40 + 41 ], "job_type": [ - 83 + 84 ], "last_run_status": [ - 83 + 84 ], "next_start": [ - 4957 + 4953 ], "__typename": [ - 83 + 84 ] }, "TimescaleStats": { "chunks_count": [ - 40 + 41 ], "hypertables": [ - 37 + 38 ], "jobs": [ - 104 + 105 ], "__typename": [ - 83 + 84 ] }, "TournamentAward": { "award_id": [ - 5458 + 5454 ], "custom_name": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "image_url": [ - 83 + 84 ], "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "TournamentMatchResetImpact": { "bracket_id": [ - 5458 + 5454 ], "depth": [ - 40 + 41 ], "is_source": [ - 5 + 6 ], "match_id": [ - 5458 + 5454 ], "match_number": [ - 40 + 41 ], "match_status": [ - 83 + 84 ], "path": [ - 83 + 84 ], "round": [ - 40 + 41 ], "stage_type": [ - 83 + 84 ], "will_delete_match": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "WatchDemoOutput": { "match_map_id": [ - 83 + 84 ], "session_id": [ - 83 + 84 ], "stream_url": [ - 83 + 84 ], "success": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "WebPushPlatformCount": { "devices": [ - 40 + 41 ], "platform": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "WebPushStatusOutput": { "active_7d": [ - 40 + 41 ], "configured": [ - 5 + 6 ], "last_delivered_at": [ - 4958 + 4954 ], "managed_by_environment": [ - 5 + 6 ], "never_delivered": [ - 40 + 41 ], "new_7d": [ - 40 + 41 ], "platforms": [ - 109 + 110 ], "players": [ - 40 + 41 ], "subscriptions": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "_map_pool": { "map_id": [ - 5458 + 5454 ], "map_pool_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "_map_pool_aggregate": { "aggregate": [ - 113 + 114 ], "nodes": [ - 111 + 112 ], "__typename": [ - 83 + 84 ] }, "_map_pool_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 123, + 124, "[_map_pool_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 117 + 118 ], "min": [ - 118 + 119 ], "__typename": [ - 83 + 84 ] }, "_map_pool_bool_exp": { "_and": [ - 114 + 115 ], "_not": [ - 114 + 115 ], "_or": [ - 114 + 115 ], "map_id": [ - 5460 + 5456 ], "map_pool_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 5458 + 5454 ], "map_pool_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "_map_pool_max_fields": { "map_id": [ - 5458 + 5454 ], "map_pool_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "_map_pool_min_fields": { "map_id": [ - 5458 + 5454 ], "map_pool_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "_map_pool_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 111 + 112 ], "__typename": [ - 83 + 84 ] }, "_map_pool_on_conflict": { "constraint": [ - 115 + 116 ], "update_columns": [ - 127 + 128 ], "where": [ - 114 + 115 ], "__typename": [ - 83 + 84 ] }, "_map_pool_order_by": { "map_id": [ - 3377 + 3373 ], "map_pool_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "_map_pool_pk_columns_input": { "map_id": [ - 5458 + 5454 ], "map_pool_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 5458 + 5454 ], "map_pool_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "_map_pool_stream_cursor_input": { "initial_value": [ - 126 + 127 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 5458 + 5454 ], "map_pool_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "_map_pool_update_column": {}, "_map_pool_updates": { "_set": [ - 124 + 125 ], "where": [ - 114 + 115 ], "__typename": [ - 83 + 84 ] }, "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_aggregate": { "aggregate": [ - 134 + 135 ], "nodes": [ - 130 + 131 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_aggregate_bool_exp": { "count": [ - 133 + 134 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_aggregate_bool_exp_count": { "arguments": [ - 151 + 152 ], "distinct": [ - 5 + 6 ], "filter": [ - 139 + 140 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_aggregate_fields": { "avg": [ - 137 + 138 ], "count": [ - 40, + 41, { "columns": [ - 151, + 152, "[abandoned_matches_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 143 + 144 ], "min": [ - 145 + 146 ], "stddev": [ - 153 + 154 ], "stddev_pop": [ - 155 + 156 ], "stddev_samp": [ - 157 + 158 ], "sum": [ - 161 + 162 ], "var_pop": [ - 165 + 166 ], "var_samp": [ - 167 + 168 ], "variance": [ - 169 + 170 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_aggregate_order_by": { "avg": [ - 138 + 139 ], "count": [ - 3377 + 3373 ], "max": [ - 144 + 145 ], "min": [ - 146 + 147 ], "stddev": [ - 154 + 155 ], "stddev_pop": [ - 156 + 157 ], "stddev_samp": [ - 158 + 159 ], "sum": [ - 162 + 163 ], "var_pop": [ - 166 + 167 ], "var_samp": [ - 168 + 169 ], "variance": [ - 170 + 171 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_arr_rel_insert_input": { "data": [ - 142 + 143 ], "on_conflict": [ - 148 + 149 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_avg_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_bool_exp": { "_and": [ - 139 + 140 ], "_not": [ - 139 + 140 ], "_or": [ - 139 + 140 ], "abandoned_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_constraint": {}, "abandoned_matches_inc_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 130 + 131 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_on_conflict": { "constraint": [ - 140 + 141 ], "update_columns": [ - 163 + 164 ], "where": [ - 139 + 140 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_order_by": { "abandoned_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_stream_cursor_input": { "initial_value": [ - 160 + 161 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_sum_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_update_column": {}, "abandoned_matches_updates": { "_inc": [ - 141 + 142 ], "_set": [ - 152 + 153 ], "where": [ - 139 + 140 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "abandoned_matches_variance_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "api_keys": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "last_used_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "api_keys_aggregate": { "aggregate": [ - 173 + 174 ], "nodes": [ - 171 + 172 ], "__typename": [ - 83 + 84 ] }, "api_keys_aggregate_fields": { "avg": [ - 174 + 175 ], "count": [ - 40, + 41, { "columns": [ - 185, + 186, "[api_keys_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 179 + 180 ], "min": [ - 180 + 181 ], "stddev": [ - 187 + 188 ], "stddev_pop": [ - 188 + 189 ], "stddev_samp": [ - 189 + 190 ], "sum": [ - 192 + 193 ], "var_pop": [ - 195 + 196 ], "var_samp": [ - 196 + 197 ], "variance": [ - 197 + 198 ], "__typename": [ - 83 + 84 ] }, "api_keys_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "api_keys_bool_exp": { "_and": [ - 175 + 176 ], "_not": [ - 175 + 176 ], "_or": [ - 175 + 176 ], "created_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "label": [ - 85 + 86 ], "last_used_at": [ - 4959 + 4955 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "api_keys_constraint": {}, "api_keys_inc_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "api_keys_insert_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "last_used_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "api_keys_max_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "last_used_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "api_keys_min_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "last_used_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "api_keys_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 171 + 172 ], "__typename": [ - 83 + 84 ] }, "api_keys_on_conflict": { "constraint": [ - 176 + 177 ], "update_columns": [ - 193 + 194 ], "where": [ - 175 + 176 ], "__typename": [ - 83 + 84 ] }, "api_keys_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "last_used_at": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "api_keys_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "last_used_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "api_keys_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "api_keys_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "api_keys_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "api_keys_stream_cursor_input": { "initial_value": [ - 191 + 192 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "last_used_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "api_keys_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "api_keys_update_column": {}, "api_keys_updates": { "_inc": [ - 177 + 178 ], "_set": [ - 186 + 187 ], "where": [ - 175 + 176 ], "__typename": [ - 83 + 84 ] }, "api_keys_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "api_keys_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "api_keys_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "approve_league_season_movements_args": { "_league_season_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "award_recipients": { "award": [ - 240 + 241 ], "award_id": [ - 5458 + 5454 ], "awarded_by": [ - 4335 + 4331 ], "awarded_by_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "event": [ - 1813 + 1814 ], "event_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "league_season": [ - 2394 + 2390 ], "league_season_id": [ - 5458 + 5454 ], "note": [ - 83 + 84 ], "placement": [ - 40 + 41 ], "placement_tier": [ - 83 + 84 ], "player": [ - 4335 + 4331 ], "player_steam_id": [ - 268 + 269 ], "season": [ - 4421 + 4417 ], "season_id": [ - 5458 + 5454 ], "source": [ - 606 + 607 ], "team": [ - 4909 + 4905 ], "team_id": [ - 5458 + 5454 ], "tournament": [ - 5394 + 5390 ], "tournament_award": [ - 4960 + 4956 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team": [ - 5352 + 5348 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "award_recipients_aggregate": { "aggregate": [ - 203 + 204 ], "nodes": [ - 199 + 200 ], "__typename": [ - 83 + 84 ] }, "award_recipients_aggregate_bool_exp": { "count": [ - 202 + 203 ], "__typename": [ - 83 + 84 ] }, "award_recipients_aggregate_bool_exp_count": { "arguments": [ - 220 + 221 ], "distinct": [ - 5 + 6 ], "filter": [ - 208 + 209 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "award_recipients_aggregate_fields": { "avg": [ - 206 + 207 ], "count": [ - 40, + 41, { "columns": [ - 220, + 221, "[award_recipients_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 212 + 213 ], "min": [ - 214 + 215 ], "stddev": [ - 222 + 223 ], "stddev_pop": [ - 224 + 225 ], "stddev_samp": [ - 226 + 227 ], "sum": [ - 230 + 231 ], "var_pop": [ - 234 + 235 ], "var_samp": [ - 236 + 237 ], "variance": [ - 238 + 239 ], "__typename": [ - 83 + 84 ] }, "award_recipients_aggregate_order_by": { "avg": [ - 207 + 208 ], "count": [ - 3377 + 3373 ], "max": [ - 213 + 214 ], "min": [ - 215 + 216 ], "stddev": [ - 223 + 224 ], "stddev_pop": [ - 225 + 226 ], "stddev_samp": [ - 227 + 228 ], "sum": [ - 231 + 232 ], "var_pop": [ - 235 + 236 ], "var_samp": [ - 237 + 238 ], "variance": [ - 239 + 240 ], "__typename": [ - 83 + 84 ] }, "award_recipients_arr_rel_insert_input": { "data": [ - 211 + 212 ], "on_conflict": [ - 217 + 218 ], "__typename": [ - 83 + 84 ] }, "award_recipients_avg_fields": { "awarded_by_steam_id": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "award_recipients_avg_order_by": { "awarded_by_steam_id": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "award_recipients_bool_exp": { "_and": [ - 208 + 209 ], "_not": [ - 208 + 209 ], "_or": [ - 208 + 209 ], "award": [ - 244 + 245 ], "award_id": [ - 5460 + 5456 ], "awarded_by": [ - 4339 + 4335 ], "awarded_by_steam_id": [ - 270 + 271 ], "created_at": [ - 4959 + 4955 ], "event": [ - 1817 + 1818 ], "event_id": [ - 5460 + 5456 ], "id": [ - 5460 + 5456 ], "league_season": [ - 2399 + 2395 ], "league_season_id": [ - 5460 + 5456 ], "note": [ - 85 + 86 ], "placement": [ - 41 + 42 ], "placement_tier": [ - 85 + 86 ], "player": [ - 4339 + 4335 ], "player_steam_id": [ - 270 + 271 ], "season": [ - 4425 + 4421 ], "season_id": [ - 5460 + 5456 ], "source": [ - 607 + 608 ], "team": [ - 4920 + 4916 ], "team_id": [ - 5460 + 5456 ], "tournament": [ - 5415 + 5411 ], "tournament_award": [ - 4969 + 4965 ], "tournament_id": [ - 5460 + 5456 ], "tournament_team": [ - 5361 + 5357 ], "tournament_team_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "award_recipients_constraint": {}, "award_recipients_inc_input": { "awarded_by_steam_id": [ - 268 + 269 ], "placement": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "award_recipients_insert_input": { "award": [ - 251 + 252 ], "award_id": [ - 5458 + 5454 ], "awarded_by": [ - 4346 + 4342 ], "awarded_by_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "event": [ - 1824 + 1825 ], "event_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "league_season": [ - 2409 + 2405 ], "league_season_id": [ - 5458 + 5454 ], "note": [ - 83 + 84 ], "placement": [ - 40 + 41 ], "player": [ - 4346 + 4342 ], "player_steam_id": [ - 268 + 269 ], "season": [ - 4432 + 4428 ], "season_id": [ - 5458 + 5454 ], "source": [ - 606 + 607 ], "team": [ - 4929 + 4925 ], "team_id": [ - 5458 + 5454 ], "tournament": [ - 5424 + 5420 ], "tournament_award": [ - 4978 + 4974 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team": [ - 5370 + 5366 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "award_recipients_max_fields": { "award_id": [ - 5458 + 5454 ], "awarded_by_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "note": [ - 83 + 84 ], "placement": [ - 40 + 41 ], "placement_tier": [ - 83 + 84 ], "player_steam_id": [ - 268 + 269 ], "season_id": [ - 5458 + 5454 ], "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "award_recipients_max_order_by": { "award_id": [ - 3377 + 3373 ], "awarded_by_steam_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "event_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "note": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "placement_tier": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "season_id": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "award_recipients_min_fields": { "award_id": [ - 5458 + 5454 ], "awarded_by_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "note": [ - 83 + 84 ], "placement": [ - 40 + 41 ], "placement_tier": [ - 83 + 84 ], "player_steam_id": [ - 268 + 269 ], "season_id": [ - 5458 + 5454 ], "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "award_recipients_min_order_by": { "award_id": [ - 3377 + 3373 ], "awarded_by_steam_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "event_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "note": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "placement_tier": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "season_id": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "award_recipients_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 199 + 200 ], "__typename": [ - 83 + 84 ] }, "award_recipients_on_conflict": { "constraint": [ - 209 + 210 ], "update_columns": [ - 232 + 233 ], "where": [ - 208 + 209 ], "__typename": [ - 83 + 84 ] }, "award_recipients_order_by": { "award": [ - 253 + 254 ], "award_id": [ - 3377 + 3373 ], "awarded_by": [ - 4348 + 4344 ], "awarded_by_steam_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "event": [ - 1826 + 1827 ], "event_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_season": [ - 2411 + 2407 ], "league_season_id": [ - 3377 + 3373 ], "note": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "placement_tier": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "player_steam_id": [ - 3377 + 3373 ], "season": [ - 4434 + 4430 ], "season_id": [ - 3377 + 3373 ], "source": [ - 3377 + 3373 ], "team": [ - 4931 + 4927 ], "team_id": [ - 3377 + 3373 ], "tournament": [ - 5426 + 5422 ], "tournament_award": [ - 4980 + 4976 ], "tournament_id": [ - 3377 + 3373 ], "tournament_team": [ - 5372 + 5368 ], "tournament_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "award_recipients_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "award_recipients_select_column": {}, "award_recipients_set_input": { "award_id": [ - 5458 + 5454 ], "awarded_by_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "note": [ - 83 + 84 ], "placement": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "season_id": [ - 5458 + 5454 ], "source": [ - 606 + 607 ], "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "award_recipients_stddev_fields": { "awarded_by_steam_id": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "award_recipients_stddev_order_by": { "awarded_by_steam_id": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "award_recipients_stddev_pop_fields": { "awarded_by_steam_id": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "award_recipients_stddev_pop_order_by": { "awarded_by_steam_id": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "award_recipients_stddev_samp_fields": { "awarded_by_steam_id": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "award_recipients_stddev_samp_order_by": { "awarded_by_steam_id": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "award_recipients_stream_cursor_input": { "initial_value": [ - 229 + 230 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "award_recipients_stream_cursor_value_input": { "award_id": [ - 5458 + 5454 ], "awarded_by_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "note": [ - 83 + 84 ], "placement": [ - 40 + 41 ], "placement_tier": [ - 83 + 84 ], "player_steam_id": [ - 268 + 269 ], "season_id": [ - 5458 + 5454 ], "source": [ - 606 + 607 ], "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "award_recipients_sum_fields": { "awarded_by_steam_id": [ - 268 + 269 ], "placement": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "award_recipients_sum_order_by": { "awarded_by_steam_id": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "award_recipients_update_column": {}, "award_recipients_updates": { "_inc": [ - 210 + 211 ], "_set": [ - 221 + 222 ], "where": [ - 208 + 209 ], "__typename": [ - 83 + 84 ] }, "award_recipients_var_pop_fields": { "awarded_by_steam_id": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "award_recipients_var_pop_order_by": { "awarded_by_steam_id": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "award_recipients_var_samp_fields": { "awarded_by_steam_id": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "award_recipients_var_samp_order_by": { "awarded_by_steam_id": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "award_recipients_variance_fields": { "awarded_by_steam_id": [ - 31 + 32 ], "placement": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "award_recipients_variance_order_by": { "awarded_by_steam_id": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "awards": { "allow_multiple": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "created_by": [ - 4335 + 4331 ], "created_by_steam_id": [ - 268 + 269 ], "description": [ - 83 + 84 ], "event": [ - 1813 + 1814 ], "event_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "image_url": [ - 83 + 84 ], "league_season": [ - 2394 + 2390 ], "league_season_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "recipients": [ - 199, + 200, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "recipients_aggregate": [ - 200, + 201, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "season": [ - 4421 + 4417 ], "season_id": [ - 5458 + 5454 ], "silhouette": [ - 40 + 41 ], "system_key": [ - 83 + 84 ], "tier": [ - 626 + 627 ], "tournament": [ - 5394 + 5390 ], "tournament_configs": [ - 4960, + 4956, { "distinct_on": [ - 4982, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4980, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4969 + 4965 ] } ], "tournament_configs_aggregate": [ - 4961, + 4957, { "distinct_on": [ - 4982, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4980, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4969 + 4965 ] } ], "tournament_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "awards_aggregate": { "aggregate": [ - 242 + 243 ], "nodes": [ - 240 + 241 ], "__typename": [ - 83 + 84 ] }, "awards_aggregate_fields": { "avg": [ - 243 + 244 ], "count": [ - 40, + 41, { "columns": [ - 255, + 256, "[awards_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 248 + 249 ], "min": [ - 249 + 250 ], "stddev": [ - 257 + 258 ], "stddev_pop": [ - 258 + 259 ], "stddev_samp": [ - 259 + 260 ], "sum": [ - 262 + 263 ], "var_pop": [ - 265 + 266 ], "var_samp": [ - 266 + 267 ], "variance": [ - 267 + 268 ], "__typename": [ - 83 + 84 ] }, "awards_avg_fields": { "created_by_steam_id": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "awards_bool_exp": { "_and": [ - 244 + 245 ], "_not": [ - 244 + 245 ], "_or": [ - 244 + 245 ], "allow_multiple": [ - 6 + 7 ], "created_at": [ - 4959 + 4955 ], "created_by": [ - 4339 + 4335 ], "created_by_steam_id": [ - 270 + 271 ], "description": [ - 85 + 86 ], "event": [ - 1817 + 1818 ], "event_id": [ - 5460 + 5456 ], "id": [ - 5460 + 5456 ], "image_url": [ - 85 + 86 ], "league_season": [ - 2399 + 2395 ], "league_season_id": [ - 5460 + 5456 ], "name": [ - 85 + 86 ], "recipients": [ - 208 + 209 ], "recipients_aggregate": [ - 201 + 202 ], "season": [ - 4425 + 4421 ], "season_id": [ - 5460 + 5456 ], "silhouette": [ - 41 + 42 ], "system_key": [ - 85 + 86 ], "tier": [ - 627 + 628 ], "tournament": [ - 5415 + 5411 ], "tournament_configs": [ - 4969 + 4965 ], "tournament_configs_aggregate": [ - 4962 + 4958 ], "tournament_id": [ - 5460 + 5456 ], "updated_at": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "awards_constraint": {}, "awards_inc_input": { "created_by_steam_id": [ - 268 + 269 ], "silhouette": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "awards_insert_input": { "allow_multiple": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "created_by": [ - 4346 + 4342 ], "created_by_steam_id": [ - 268 + 269 ], "description": [ - 83 + 84 ], "event": [ - 1824 + 1825 ], "event_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "image_url": [ - 83 + 84 ], "league_season": [ - 2409 + 2405 ], "league_season_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "recipients": [ - 205 + 206 ], "season": [ - 4432 + 4428 ], "season_id": [ - 5458 + 5454 ], "silhouette": [ - 40 + 41 ], "system_key": [ - 83 + 84 ], "tier": [ - 626 + 627 ], "tournament": [ - 5424 + 5420 ], "tournament_configs": [ - 4966 + 4962 ], "tournament_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "awards_max_fields": { "created_at": [ - 4958 + 4954 ], "created_by_steam_id": [ - 268 + 269 ], "description": [ - 83 + 84 ], "event_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "image_url": [ - 83 + 84 ], "league_season_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "season_id": [ - 5458 + 5454 ], "silhouette": [ - 40 + 41 ], "system_key": [ - 83 + 84 ], "tournament_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "awards_min_fields": { "created_at": [ - 4958 + 4954 ], "created_by_steam_id": [ - 268 + 269 ], "description": [ - 83 + 84 ], "event_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "image_url": [ - 83 + 84 ], "league_season_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "season_id": [ - 5458 + 5454 ], "silhouette": [ - 40 + 41 ], "system_key": [ - 83 + 84 ], "tournament_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "awards_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 240 + 241 ], "__typename": [ - 83 + 84 ] }, "awards_obj_rel_insert_input": { "data": [ - 247 + 248 ], "on_conflict": [ - 252 + 253 ], "__typename": [ - 83 + 84 ] }, "awards_on_conflict": { "constraint": [ - 245 + 246 ], "update_columns": [ - 263 + 264 ], "where": [ - 244 + 245 ], "__typename": [ - 83 + 84 ] }, "awards_order_by": { "allow_multiple": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "created_by": [ - 4348 + 4344 ], "created_by_steam_id": [ - 3377 + 3373 ], "description": [ - 3377 + 3373 ], "event": [ - 1826 + 1827 ], "event_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "image_url": [ - 3377 + 3373 ], "league_season": [ - 2411 + 2407 ], "league_season_id": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "recipients_aggregate": [ - 204 + 205 ], "season": [ - 4434 + 4430 ], "season_id": [ - 3377 + 3373 ], "silhouette": [ - 3377 + 3373 ], "system_key": [ - 3377 + 3373 ], "tier": [ - 3377 + 3373 ], "tournament": [ - 5426 + 5422 ], "tournament_configs_aggregate": [ - 4965 + 4961 ], "tournament_id": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "awards_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "awards_select_column": {}, "awards_set_input": { "allow_multiple": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "created_by_steam_id": [ - 268 + 269 ], "description": [ - 83 + 84 ], "event_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "image_url": [ - 83 + 84 ], "league_season_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "season_id": [ - 5458 + 5454 ], "silhouette": [ - 40 + 41 ], "system_key": [ - 83 + 84 ], "tier": [ - 626 + 627 ], "tournament_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "awards_stddev_fields": { "created_by_steam_id": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "awards_stddev_pop_fields": { "created_by_steam_id": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "awards_stddev_samp_fields": { "created_by_steam_id": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "awards_stream_cursor_input": { "initial_value": [ - 261 + 262 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "awards_stream_cursor_value_input": { "allow_multiple": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "created_by_steam_id": [ - 268 + 269 ], "description": [ - 83 + 84 ], "event_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "image_url": [ - 83 + 84 ], "league_season_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "season_id": [ - 5458 + 5454 ], "silhouette": [ - 40 + 41 ], "system_key": [ - 83 + 84 ], "tier": [ - 626 + 627 ], "tournament_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "awards_sum_fields": { "created_by_steam_id": [ - 268 + 269 ], "silhouette": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "awards_update_column": {}, "awards_updates": { "_inc": [ - 246 + 247 ], "_set": [ - 256 + 257 ], "where": [ - 244 + 245 ], "__typename": [ - 83 + 84 ] }, "awards_var_pop_fields": { "created_by_steam_id": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "awards_var_samp_fields": { "created_by_steam_id": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "awards_variance_fields": { "created_by_steam_id": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "bigint": {}, "bigint_array_comparison_exp": { "_contained_in": [ - 268 + 269 ], "_contains": [ - 268 + 269 ], "_eq": [ - 268 + 269 ], "_gt": [ - 268 + 269 ], "_gte": [ - 268 + 269 ], "_in": [ - 268 + 269 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 268 + 269 ], "_lte": [ - 268 + 269 ], "_neq": [ - 268 + 269 ], "_nin": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "bigint_comparison_exp": { "_eq": [ - 268 + 269 ], "_gt": [ - 268 + 269 ], "_gte": [ - 268 + 269 ], "_in": [ - 268 + 269 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 268 + 269 ], "_lte": [ - 268 + 269 ], "_neq": [ - 268 + 269 ], "_nin": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "bytea": {}, "bytea_comparison_exp": { "_eq": [ - 271 + 272 ], "_gt": [ - 271 + 272 ], "_gte": [ - 271 + 272 ], "_in": [ - 271 + 272 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 271 + 272 ], "_lte": [ - 271 + 272 ], "_neq": [ - 271 + 272 ], "_nin": [ - 271 + 272 ], "__typename": [ - 83 + 84 ] }, "chat_read_state": { "last_read_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "thread": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_aggregate": { "aggregate": [ - 275 + 276 ], "nodes": [ - 273 + 274 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_aggregate_fields": { "avg": [ - 276 + 277 ], "count": [ - 40, + 41, { "columns": [ - 287, + 288, "[chat_read_state_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 281 + 282 ], "min": [ - 282 + 283 ], "stddev": [ - 289 + 290 ], "stddev_pop": [ - 290 + 291 ], "stddev_samp": [ - 291 + 292 ], "sum": [ - 294 + 295 ], "var_pop": [ - 297 + 298 ], "var_samp": [ - 298 + 299 ], "variance": [ - 299 + 300 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_bool_exp": { "_and": [ - 277 + 278 ], "_not": [ - 277 + 278 ], "_or": [ - 277 + 278 ], "last_read_at": [ - 4959 + 4955 ], "steam_id": [ - 270 + 271 ], "thread": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_constraint": {}, "chat_read_state_inc_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_insert_input": { "last_read_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "thread": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_max_fields": { "last_read_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "thread": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_min_fields": { "last_read_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "thread": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 273 + 274 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_on_conflict": { "constraint": [ - 278 + 279 ], "update_columns": [ - 295 + 296 ], "where": [ - 277 + 278 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_order_by": { "last_read_at": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "thread": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_pk_columns_input": { "steam_id": [ - 268 + 269 ], "thread": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_select_column": {}, "chat_read_state_set_input": { "last_read_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "thread": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_stream_cursor_input": { "initial_value": [ - 293 + 294 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_stream_cursor_value_input": { "last_read_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "thread": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_update_column": {}, "chat_read_state_updates": { "_inc": [ - 279 + 280 ], "_set": [ - 288 + 289 ], "where": [ - 277 + 278 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "chat_read_state_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs": { "clip": [ - 2682 + 2678 ], "clip_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "error_message": [ - 83 + 84 ], "game_server_node": [ - 2067 + 2063 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "last_status_at": [ - 4958 + 4954 ], "match_map": [ - 2977 + 2973 ], "match_map_demo": [ - 2857 + 2853 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "paused": [ - 5 + 6 ], "progress": [ - 3375 + 3371 ], "session_token": [ - 83 + 84 ], "sort_index": [ - 40 + 41 ], "spec": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "status": [ - 83 + 84 ], "status_history": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "user": [ - 4335 + 4331 ], "user_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_aggregate": { "aggregate": [ - 306 + 307 ], "nodes": [ - 300 + 301 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_aggregate_bool_exp": { "bool_and": [ - 303 + 304 ], "bool_or": [ - 304 + 305 ], "count": [ - 305 + 306 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_aggregate_bool_exp_bool_and": { "arguments": [ - 329 + 330 ], "distinct": [ - 5 + 6 ], "filter": [ - 312 + 313 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_aggregate_bool_exp_bool_or": { "arguments": [ - 330 + 331 ], "distinct": [ - 5 + 6 ], "filter": [ - 312 + 313 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_aggregate_bool_exp_count": { "arguments": [ - 328 + 329 ], "distinct": [ - 5 + 6 ], "filter": [ - 312 + 313 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_aggregate_fields": { "avg": [ - 310 + 311 ], "count": [ - 40, + 41, { "columns": [ - 328, + 329, "[clip_render_jobs_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 319 + 320 ], "min": [ - 321 + 322 ], "stddev": [ - 332 + 333 ], "stddev_pop": [ - 334 + 335 ], "stddev_samp": [ - 336 + 337 ], "sum": [ - 340 + 341 ], "var_pop": [ - 344 + 345 ], "var_samp": [ - 346 + 347 ], "variance": [ - 348 + 349 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_aggregate_order_by": { "avg": [ - 311 + 312 ], "count": [ - 3377 + 3373 ], "max": [ - 320 + 321 ], "min": [ - 322 + 323 ], "stddev": [ - 333 + 334 ], "stddev_pop": [ - 335 + 336 ], "stddev_samp": [ - 337 + 338 ], "sum": [ - 341 + 342 ], "var_pop": [ - 345 + 346 ], "var_samp": [ - 347 + 348 ], "variance": [ - 349 + 350 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_append_input": { "spec": [ - 2191 + 2187 ], "status_history": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_arr_rel_insert_input": { "data": [ - 318 + 319 ], "on_conflict": [ - 324 + 325 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_avg_fields": { "progress": [ - 31 + 32 ], "sort_index": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_avg_order_by": { "progress": [ - 3377 + 3373 ], "sort_index": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_bool_exp": { "_and": [ - 312 + 313 ], "_not": [ - 312 + 313 ], "_or": [ - 312 + 313 ], "clip": [ - 2691 + 2687 ], "clip_id": [ - 5460 + 5456 ], "created_at": [ - 4959 + 4955 ], "error_message": [ - 85 + 86 ], "game_server_node": [ - 2079 + 2075 ], "game_server_node_id": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "k8s_job_name": [ - 85 + 86 ], "last_status_at": [ - 4959 + 4955 ], "match_map": [ - 2986 + 2982 ], "match_map_demo": [ - 2869 + 2865 ], "match_map_demo_id": [ - 5460 + 5456 ], "match_map_id": [ - 5460 + 5456 ], "paused": [ - 6 + 7 ], "progress": [ - 3376 + 3372 ], "session_token": [ - 85 + 86 ], "sort_index": [ - 41 + 42 ], "spec": [ - 2193 + 2189 ], "status": [ - 85 + 86 ], "status_history": [ - 2193 + 2189 ], "user": [ - 4339 + 4335 ], "user_steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_constraint": {}, "clip_render_jobs_delete_at_path_input": { "spec": [ - 83 + 84 ], "status_history": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_delete_elem_input": { "spec": [ - 40 + 41 ], "status_history": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_delete_key_input": { "spec": [ - 83 + 84 ], "status_history": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_inc_input": { "progress": [ - 3375 + 3371 ], "sort_index": [ - 40 + 41 ], "user_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_insert_input": { "clip": [ - 2700 + 2696 ], "clip_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "error_message": [ - 83 + 84 ], "game_server_node": [ - 2091 + 2087 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "last_status_at": [ - 4958 + 4954 ], "match_map": [ - 2995 + 2991 ], "match_map_demo": [ - 2881 + 2877 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "paused": [ - 5 + 6 ], "progress": [ - 3375 + 3371 ], "session_token": [ - 83 + 84 ], "sort_index": [ - 40 + 41 ], "spec": [ - 2191 + 2187 ], "status": [ - 83 + 84 ], "status_history": [ - 2191 + 2187 ], "user": [ - 4346 + 4342 ], "user_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_max_fields": { "clip_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "error_message": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "last_status_at": [ - 4958 + 4954 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "progress": [ - 3375 + 3371 ], "session_token": [ - 83 + 84 ], "sort_index": [ - 40 + 41 ], "status": [ - 83 + 84 ], "user_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_max_order_by": { "clip_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "error_message": [ - 3377 + 3373 ], "game_server_node_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "k8s_job_name": [ - 3377 + 3373 ], "last_status_at": [ - 3377 + 3373 ], "match_map_demo_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "progress": [ - 3377 + 3373 ], "session_token": [ - 3377 + 3373 ], "sort_index": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_min_fields": { "clip_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "error_message": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "last_status_at": [ - 4958 + 4954 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "progress": [ - 3375 + 3371 ], "session_token": [ - 83 + 84 ], "sort_index": [ - 40 + 41 ], "status": [ - 83 + 84 ], "user_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_min_order_by": { "clip_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "error_message": [ - 3377 + 3373 ], "game_server_node_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "k8s_job_name": [ - 3377 + 3373 ], "last_status_at": [ - 3377 + 3373 ], "match_map_demo_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "progress": [ - 3377 + 3373 ], "session_token": [ - 3377 + 3373 ], "sort_index": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 300 + 301 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_on_conflict": { "constraint": [ - 313 + 314 ], "update_columns": [ - 342 + 343 ], "where": [ - 312 + 313 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_order_by": { "clip": [ - 2702 + 2698 ], "clip_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "error_message": [ - 3377 + 3373 ], "game_server_node": [ - 2093 + 2089 ], "game_server_node_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "k8s_job_name": [ - 3377 + 3373 ], "last_status_at": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_demo": [ - 2883 + 2879 ], "match_map_demo_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "paused": [ - 3377 + 3373 ], "progress": [ - 3377 + 3373 ], "session_token": [ - 3377 + 3373 ], "sort_index": [ - 3377 + 3373 ], "spec": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "status_history": [ - 3377 + 3373 ], "user": [ - 4348 + 4344 ], "user_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_prepend_input": { "spec": [ - 2191 + 2187 ], "status_history": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_select_column": {}, @@ -7247,2697 +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": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "error_message": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "last_status_at": [ - 4958 + 4954 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "paused": [ - 5 + 6 ], "progress": [ - 3375 + 3371 ], "session_token": [ - 83 + 84 ], "sort_index": [ - 40 + 41 ], "spec": [ - 2191 + 2187 ], "status": [ - 83 + 84 ], "status_history": [ - 2191 + 2187 ], "user_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_stddev_fields": { "progress": [ - 31 + 32 ], "sort_index": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_stddev_order_by": { "progress": [ - 3377 + 3373 ], "sort_index": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_stddev_pop_fields": { "progress": [ - 31 + 32 ], "sort_index": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 3377 + 3373 ], "sort_index": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_stddev_samp_fields": { "progress": [ - 31 + 32 ], "sort_index": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 3377 + 3373 ], "sort_index": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_stream_cursor_input": { "initial_value": [ - 339 + 340 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "error_message": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "last_status_at": [ - 4958 + 4954 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "paused": [ - 5 + 6 ], "progress": [ - 3375 + 3371 ], "session_token": [ - 83 + 84 ], "sort_index": [ - 40 + 41 ], "spec": [ - 2191 + 2187 ], "status": [ - 83 + 84 ], "status_history": [ - 2191 + 2187 ], "user_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_sum_fields": { "progress": [ - 3375 + 3371 ], "sort_index": [ - 40 + 41 ], "user_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_sum_order_by": { "progress": [ - 3377 + 3373 ], "sort_index": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_update_column": {}, "clip_render_jobs_updates": { "_append": [ - 308 + 309 ], "_delete_at_path": [ - 314 + 315 ], "_delete_elem": [ - 315 + 316 ], "_delete_key": [ - 316 + 317 ], "_inc": [ - 317 + 318 ], "_prepend": [ - 327 + 328 ], "_set": [ - 331 + 332 ], "where": [ - 312 + 313 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_var_pop_fields": { "progress": [ - 31 + 32 ], "sort_index": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 3377 + 3373 ], "sort_index": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_var_samp_fields": { "progress": [ - 31 + 32 ], "sort_index": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 3377 + 3373 ], "sort_index": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_variance_fields": { "progress": [ - 31 + 32 ], "sort_index": [ - 31 + 32 ], "user_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "clip_render_jobs_variance_order_by": { "progress": [ - 3377 + 3373 ], "sort_index": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "clone_league_season_args": { "_league_season_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "cursor_ordering": {}, "custom_pages": { "created_at": [ - 4958 + 4954 ], "deployments": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "enabled": [ - 5 + 6 ], "exposed_module": [ - 83 + 84 ], "icon": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_default": [ - 5 + 6 ], "manifest_url": [ - 83 + 84 ], "nav_group": [ - 83 + 84 ], "nav_order": [ - 40 + 41 ], "plugin_slug": [ - 83 + 84 ], "profile_tab_label": [ - 83 + 84 ], "remote_entry_url": [ - 83 + 84 ], "remote_scope": [ - 83 + 84 ], "required_role": [ - 1242 + 1243 ], "slug": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "custom_pages_aggregate": { "aggregate": [ - 354 + 355 ], "nodes": [ - 352 + 353 ], "__typename": [ - 83 + 84 ] }, "custom_pages_aggregate_fields": { "avg": [ - 356 + 357 ], "count": [ - 40, + 41, { "columns": [ - 371, + 372, "[custom_pages_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 364 + 365 ], "min": [ - 365 + 366 ], "stddev": [ - 373 + 374 ], "stddev_pop": [ - 374 + 375 ], "stddev_samp": [ - 375 + 376 ], "sum": [ - 378 + 379 ], "var_pop": [ - 381 + 382 ], "var_samp": [ - 382 + 383 ], "variance": [ - 383 + 384 ], "__typename": [ - 83 + 84 ] }, "custom_pages_append_input": { "deployments": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "custom_pages_avg_fields": { "nav_order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "custom_pages_bool_exp": { "_and": [ - 357 + 358 ], "_not": [ - 357 + 358 ], "_or": [ - 357 + 358 ], "created_at": [ - 4959 + 4955 ], "deployments": [ - 2193 + 2189 ], "enabled": [ - 6 + 7 ], "exposed_module": [ - 85 + 86 ], "icon": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "is_default": [ - 6 + 7 ], "manifest_url": [ - 85 + 86 ], "nav_group": [ - 85 + 86 ], "nav_order": [ - 41 + 42 ], "plugin_slug": [ - 85 + 86 ], "profile_tab_label": [ - 85 + 86 ], "remote_entry_url": [ - 85 + 86 ], "remote_scope": [ - 85 + 86 ], "required_role": [ - 1243 + 1244 ], "slug": [ - 85 + 86 ], "title": [ - 85 + 86 ], "updated_at": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "custom_pages_constraint": {}, "custom_pages_delete_at_path_input": { "deployments": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "custom_pages_delete_elem_input": { "deployments": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "custom_pages_delete_key_input": { "deployments": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "custom_pages_inc_input": { "nav_order": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "custom_pages_insert_input": { "created_at": [ - 4958 + 4954 ], "deployments": [ - 2191 + 2187 ], "enabled": [ - 5 + 6 ], "exposed_module": [ - 83 + 84 ], "icon": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_default": [ - 5 + 6 ], "manifest_url": [ - 83 + 84 ], "nav_group": [ - 83 + 84 ], "nav_order": [ - 40 + 41 ], "plugin_slug": [ - 83 + 84 ], "profile_tab_label": [ - 83 + 84 ], "remote_entry_url": [ - 83 + 84 ], "remote_scope": [ - 83 + 84 ], "required_role": [ - 1242 + 1243 ], "slug": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "custom_pages_max_fields": { "created_at": [ - 4958 + 4954 ], "exposed_module": [ - 83 + 84 ], "icon": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "manifest_url": [ - 83 + 84 ], "nav_group": [ - 83 + 84 ], "nav_order": [ - 40 + 41 ], "plugin_slug": [ - 83 + 84 ], "profile_tab_label": [ - 83 + 84 ], "remote_entry_url": [ - 83 + 84 ], "remote_scope": [ - 83 + 84 ], "slug": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "custom_pages_min_fields": { "created_at": [ - 4958 + 4954 ], "exposed_module": [ - 83 + 84 ], "icon": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "manifest_url": [ - 83 + 84 ], "nav_group": [ - 83 + 84 ], "nav_order": [ - 40 + 41 ], "plugin_slug": [ - 83 + 84 ], "profile_tab_label": [ - 83 + 84 ], "remote_entry_url": [ - 83 + 84 ], "remote_scope": [ - 83 + 84 ], "slug": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "custom_pages_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 352 + 353 ], "__typename": [ - 83 + 84 ] }, "custom_pages_on_conflict": { "constraint": [ - 358 + 359 ], "update_columns": [ - 379 + 380 ], "where": [ - 357 + 358 ], "__typename": [ - 83 + 84 ] }, "custom_pages_order_by": { "created_at": [ - 3377 + 3373 ], "deployments": [ - 3377 + 3373 ], "enabled": [ - 3377 + 3373 ], "exposed_module": [ - 3377 + 3373 ], "icon": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "is_default": [ - 3377 + 3373 ], "manifest_url": [ - 3377 + 3373 ], "nav_group": [ - 3377 + 3373 ], "nav_order": [ - 3377 + 3373 ], "plugin_slug": [ - 3377 + 3373 ], "profile_tab_label": [ - 3377 + 3373 ], "remote_entry_url": [ - 3377 + 3373 ], "remote_scope": [ - 3377 + 3373 ], "required_role": [ - 3377 + 3373 ], "slug": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "custom_pages_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "custom_pages_prepend_input": { "deployments": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "custom_pages_select_column": {}, "custom_pages_set_input": { "created_at": [ - 4958 + 4954 ], "deployments": [ - 2191 + 2187 ], "enabled": [ - 5 + 6 ], "exposed_module": [ - 83 + 84 ], "icon": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_default": [ - 5 + 6 ], "manifest_url": [ - 83 + 84 ], "nav_group": [ - 83 + 84 ], "nav_order": [ - 40 + 41 ], "plugin_slug": [ - 83 + 84 ], "profile_tab_label": [ - 83 + 84 ], "remote_entry_url": [ - 83 + 84 ], "remote_scope": [ - 83 + 84 ], "required_role": [ - 1242 + 1243 ], "slug": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "custom_pages_stddev_fields": { "nav_order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "custom_pages_stddev_pop_fields": { "nav_order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "custom_pages_stddev_samp_fields": { "nav_order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "custom_pages_stream_cursor_input": { "initial_value": [ - 377 + 378 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "custom_pages_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "deployments": [ - 2191 + 2187 ], "enabled": [ - 5 + 6 ], "exposed_module": [ - 83 + 84 ], "icon": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_default": [ - 5 + 6 ], "manifest_url": [ - 83 + 84 ], "nav_group": [ - 83 + 84 ], "nav_order": [ - 40 + 41 ], "plugin_slug": [ - 83 + 84 ], "profile_tab_label": [ - 83 + 84 ], "remote_entry_url": [ - 83 + 84 ], "remote_scope": [ - 83 + 84 ], "required_role": [ - 1242 + 1243 ], "slug": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "custom_pages_sum_fields": { "nav_order": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "custom_pages_update_column": {}, "custom_pages_updates": { "_append": [ - 355 + 356 ], "_delete_at_path": [ - 359 + 360 ], "_delete_elem": [ - 360 + 361 ], "_delete_key": [ - 361 + 362 ], "_inc": [ - 362 + 363 ], "_prepend": [ - 370 + 371 ], "_set": [ - 372 + 373 ], "where": [ - 357 + 358 ], "__typename": [ - 83 + 84 ] }, "custom_pages_var_pop_fields": { "nav_order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "custom_pages_var_samp_fields": { "nav_order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "custom_pages_variance_fields": { "nav_order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "db_backups": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "size": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "db_backups_aggregate": { "aggregate": [ - 386 + 387 ], "nodes": [ - 384 + 385 ], "__typename": [ - 83 + 84 ] }, "db_backups_aggregate_fields": { "avg": [ - 387 + 388 ], "count": [ - 40, + 41, { "columns": [ - 398, + 399, "[db_backups_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 392 + 393 ], "min": [ - 393 + 394 ], "stddev": [ - 400 + 401 ], "stddev_pop": [ - 401 + 402 ], "stddev_samp": [ - 402 + 403 ], "sum": [ - 405 + 406 ], "var_pop": [ - 408 + 409 ], "var_samp": [ - 409 + 410 ], "variance": [ - 410 + 411 ], "__typename": [ - 83 + 84 ] }, "db_backups_avg_fields": { "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "db_backups_bool_exp": { "_and": [ - 388 + 389 ], "_not": [ - 388 + 389 ], "_or": [ - 388 + 389 ], "created_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "name": [ - 85 + 86 ], "size": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "db_backups_constraint": {}, "db_backups_inc_input": { "size": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "db_backups_insert_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "size": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "db_backups_max_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "size": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "db_backups_min_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "size": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "db_backups_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 384 + 385 ], "__typename": [ - 83 + 84 ] }, "db_backups_on_conflict": { "constraint": [ - 389 + 390 ], "update_columns": [ - 406 + 407 ], "where": [ - 388 + 389 ], "__typename": [ - 83 + 84 ] }, "db_backups_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "db_backups_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "size": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "db_backups_stddev_fields": { "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "db_backups_stddev_pop_fields": { "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "db_backups_stddev_samp_fields": { "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "db_backups_stream_cursor_input": { "initial_value": [ - 404 + 405 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "size": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "db_backups_sum_fields": { "size": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "db_backups_update_column": {}, "db_backups_updates": { "_inc": [ - 390 + 391 ], "_set": [ - 399 + 400 ], "where": [ - 388 + 389 ], "__typename": [ - 83 + 84 ] }, "db_backups_var_pop_fields": { "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "db_backups_var_samp_fields": { "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "db_backups_variance_fields": { "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "direct_conversations": { "is_open": [ - 5 + 6 ], "last_message_at": [ - 4958 + 4954 ], "position": [ - 40 + 41 ], "room_id": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_aggregate": { "aggregate": [ - 413 + 414 ], "nodes": [ - 411 + 412 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_aggregate_fields": { "avg": [ - 414 + 415 ], "count": [ - 40, + 41, { "columns": [ - 425, + 426, "[direct_conversations_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 419 + 420 ], "min": [ - 420 + 421 ], "stddev": [ - 427 + 428 ], "stddev_pop": [ - 428 + 429 ], "stddev_samp": [ - 429 + 430 ], "sum": [ - 432 + 433 ], "var_pop": [ - 435 + 436 ], "var_samp": [ - 436 + 437 ], "variance": [ - 437 + 438 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_avg_fields": { "position": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_bool_exp": { "_and": [ - 415 + 416 ], "_not": [ - 415 + 416 ], "_or": [ - 415 + 416 ], "is_open": [ - 6 + 7 ], "last_message_at": [ - 4959 + 4955 ], "position": [ - 41 + 42 ], "room_id": [ - 85 + 86 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_constraint": {}, "direct_conversations_inc_input": { "position": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_insert_input": { "is_open": [ - 5 + 6 ], "last_message_at": [ - 4958 + 4954 ], "position": [ - 40 + 41 ], "room_id": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_max_fields": { "last_message_at": [ - 4958 + 4954 ], "position": [ - 40 + 41 ], "room_id": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_min_fields": { "last_message_at": [ - 4958 + 4954 ], "position": [ - 40 + 41 ], "room_id": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 411 + 412 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_on_conflict": { "constraint": [ - 416 + 417 ], "update_columns": [ - 433 + 434 ], "where": [ - 415 + 416 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_order_by": { "is_open": [ - 3377 + 3373 ], "last_message_at": [ - 3377 + 3373 ], "position": [ - 3377 + 3373 ], "room_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_pk_columns_input": { "room_id": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_select_column": {}, "direct_conversations_set_input": { "is_open": [ - 5 + 6 ], "last_message_at": [ - 4958 + 4954 ], "position": [ - 40 + 41 ], "room_id": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_stddev_fields": { "position": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_stddev_pop_fields": { "position": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_stddev_samp_fields": { "position": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_stream_cursor_input": { "initial_value": [ - 431 + 432 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_stream_cursor_value_input": { "is_open": [ - 5 + 6 ], "last_message_at": [ - 4958 + 4954 ], "position": [ - 40 + 41 ], "room_id": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_sum_fields": { "position": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_update_column": {}, "direct_conversations_updates": { "_inc": [ - 417 + 418 ], "_set": [ - 426 + 427 ], "where": [ - 415 + 416 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_var_pop_fields": { "position": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_var_samp_fields": { "position": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "direct_conversations_variance_fields": { "position": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "direct_messages": { "created_at": [ - 4958 + 4954 ], "from_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "room_id": [ - 83 + 84 ], "seq": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_messages_aggregate": { "aggregate": [ - 440 + 441 ], "nodes": [ - 438 + 439 ], "__typename": [ - 83 + 84 ] }, "direct_messages_aggregate_fields": { "avg": [ - 441 + 442 ], "count": [ - 40, + 41, { "columns": [ - 452, + 453, "[direct_messages_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 446 + 447 ], "min": [ - 447 + 448 ], "stddev": [ - 454 + 455 ], "stddev_pop": [ - 455 + 456 ], "stddev_samp": [ - 456 + 457 ], "sum": [ - 459 + 460 ], "var_pop": [ - 462 + 463 ], "var_samp": [ - 463 + 464 ], "variance": [ - 464 + 465 ], "__typename": [ - 83 + 84 ] }, "direct_messages_avg_fields": { "from_steam_id": [ - 31 + 32 ], "seq": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "direct_messages_bool_exp": { "_and": [ - 442 + 443 ], "_not": [ - 442 + 443 ], "_or": [ - 442 + 443 ], "created_at": [ - 4959 + 4955 ], "from_steam_id": [ - 270 + 271 ], "id": [ - 5460 + 5456 ], "message": [ - 85 + 86 ], "room_id": [ - 85 + 86 ], "seq": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "direct_messages_constraint": {}, "direct_messages_inc_input": { "from_steam_id": [ - 268 + 269 ], "seq": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_messages_insert_input": { "created_at": [ - 4958 + 4954 ], "from_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "room_id": [ - 83 + 84 ], "seq": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_messages_max_fields": { "created_at": [ - 4958 + 4954 ], "from_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "room_id": [ - 83 + 84 ], "seq": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_messages_min_fields": { "created_at": [ - 4958 + 4954 ], "from_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "room_id": [ - 83 + 84 ], "seq": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_messages_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 438 + 439 ], "__typename": [ - 83 + 84 ] }, "direct_messages_on_conflict": { "constraint": [ - 443 + 444 ], "update_columns": [ - 460 + 461 ], "where": [ - 442 + 443 ], "__typename": [ - 83 + 84 ] }, "direct_messages_order_by": { "created_at": [ - 3377 + 3373 ], "from_steam_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "message": [ - 3377 + 3373 ], "room_id": [ - 3377 + 3373 ], "seq": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "direct_messages_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "direct_messages_select_column": {}, "direct_messages_set_input": { "created_at": [ - 4958 + 4954 ], "from_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "room_id": [ - 83 + 84 ], "seq": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_messages_stddev_fields": { "from_steam_id": [ - 31 + 32 ], "seq": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "direct_messages_stddev_pop_fields": { "from_steam_id": [ - 31 + 32 ], "seq": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "direct_messages_stddev_samp_fields": { "from_steam_id": [ - 31 + 32 ], "seq": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "direct_messages_stream_cursor_input": { "initial_value": [ - 458 + 459 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "direct_messages_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "from_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "room_id": [ - 83 + 84 ], "seq": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_messages_sum_fields": { "from_steam_id": [ - 268 + 269 ], "seq": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "direct_messages_update_column": {}, "direct_messages_updates": { "_inc": [ - 444 + 445 ], "_set": [ - 453 + 454 ], "where": [ - 442 + 443 ], "__typename": [ - 83 + 84 ] }, "direct_messages_var_pop_fields": { "from_steam_id": [ - 31 + 32 ], "seq": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "direct_messages_var_samp_fields": { "from_steam_id": [ - 31 + 32 ], "seq": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "direct_messages_variance_fields": { "from_steam_id": [ - 31 + 32 ], "seq": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks": { "auto_picked": [ - 5 + 6 ], "captain": [ - 4335 + 4331 ], "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "draft_game": [ - 555 + 556 ], "draft_game_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "is_organizer": [ - 5 + 6 ], "lineup": [ - 40 + 41 ], "picked": [ - 4335 + 4331 ], "picked_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_aggregate": { "aggregate": [ - 471 + 472 ], "nodes": [ - 465 + 466 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_aggregate_bool_exp": { "bool_and": [ - 468 + 469 ], "bool_or": [ - 469 + 470 ], "count": [ - 470 + 471 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 489 + 490 ], "distinct": [ - 5 + 6 ], "filter": [ - 476 + 477 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 490 + 491 ], "distinct": [ - 5 + 6 ], "filter": [ - 476 + 477 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_aggregate_bool_exp_count": { "arguments": [ - 488 + 489 ], "distinct": [ - 5 + 6 ], "filter": [ - 476 + 477 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_aggregate_fields": { "avg": [ - 474 + 475 ], "count": [ - 40, + 41, { "columns": [ - 488, + 489, "[draft_game_picks_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 480 + 481 ], "min": [ - 482 + 483 ], "stddev": [ - 492 + 493 ], "stddev_pop": [ - 494 + 495 ], "stddev_samp": [ - 496 + 497 ], "sum": [ - 500 + 501 ], "var_pop": [ - 504 + 505 ], "var_samp": [ - 506 + 507 ], "variance": [ - 508 + 509 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_aggregate_order_by": { "avg": [ - 475 + 476 ], "count": [ - 3377 + 3373 ], "max": [ - 481 + 482 ], "min": [ - 483 + 484 ], "stddev": [ - 493 + 494 ], "stddev_pop": [ - 495 + 496 ], "stddev_samp": [ - 497 + 498 ], "sum": [ - 501 + 502 ], "var_pop": [ - 505 + 506 ], "var_samp": [ - 507 + 508 ], "variance": [ - 509 + 510 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_arr_rel_insert_input": { "data": [ - 479 + 480 ], "on_conflict": [ - 485 + 486 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_avg_fields": { "captain_steam_id": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "picked_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "picked_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_bool_exp": { "_and": [ - 476 + 477 ], "_not": [ - 476 + 477 ], "_or": [ - 476 + 477 ], "auto_picked": [ - 6 + 7 ], "captain": [ - 4339 + 4335 ], "captain_steam_id": [ - 270 + 271 ], "created_at": [ - 4959 + 4955 ], "draft_game": [ - 566 + 567 ], "draft_game_id": [ - 5460 + 5456 ], "id": [ - 5460 + 5456 ], "is_organizer": [ - 6 + 7 ], "lineup": [ - 41 + 42 ], "picked": [ - 4339 + 4335 ], "picked_steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_constraint": {}, "draft_game_picks_inc_input": { "captain_steam_id": [ - 268 + 269 ], "lineup": [ - 40 + 41 ], "picked_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_insert_input": { "auto_picked": [ - 5 + 6 ], "captain": [ - 4346 + 4342 ], "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "draft_game": [ - 575 + 576 ], "draft_game_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "lineup": [ - 40 + 41 ], "picked": [ - 4346 + 4342 ], "picked_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_max_fields": { "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "draft_game_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "lineup": [ - 40 + 41 ], "picked_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "draft_game_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "picked_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_min_fields": { "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "draft_game_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "lineup": [ - 40 + 41 ], "picked_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "draft_game_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "picked_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 465 + 466 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_on_conflict": { "constraint": [ - 477 + 478 ], "update_columns": [ - 502 + 503 ], "where": [ - 476 + 477 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_order_by": { "auto_picked": [ - 3377 + 3373 ], "captain": [ - 4348 + 4344 ], "captain_steam_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "draft_game": [ - 577 + 578 ], "draft_game_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "is_organizer": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "picked": [ - 4348 + 4344 ], "picked_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_select_column": {}, @@ -9945,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": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "draft_game_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "lineup": [ - 40 + 41 ], "picked_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_stddev_fields": { "captain_steam_id": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "picked_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "picked_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_stddev_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "picked_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "picked_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_stddev_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "picked_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "picked_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_stream_cursor_input": { "initial_value": [ - 499 + 500 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_stream_cursor_value_input": { "auto_picked": [ - 5 + 6 ], "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "draft_game_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "lineup": [ - 40 + 41 ], "picked_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_sum_fields": { "captain_steam_id": [ - 268 + 269 ], "lineup": [ - 40 + 41 ], "picked_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "picked_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_update_column": {}, "draft_game_picks_updates": { "_inc": [ - 478 + 479 ], "_set": [ - 491 + 492 ], "where": [ - 476 + 477 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_var_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "picked_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "picked_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_var_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "picked_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "picked_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_variance_fields": { "captain_steam_id": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "picked_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "picked_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_players": { "draft_game": [ - 555 + 556 ], "draft_game_id": [ - 5458 + 5454 ], "e_draft_game_player_status": [ - 724 + 725 ], "elo_snapshot": [ - 40 + 41 ], "is_captain": [ - 5 + 6 ], "is_organizer": [ - 5 + 6 ], "joined_at": [ - 4958 + 4954 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "player": [ - 4335 + 4331 ], "status": [ - 729 + 730 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_aggregate": { "aggregate": [ - 516 + 517 ], "nodes": [ - 510 + 511 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_aggregate_bool_exp": { "bool_and": [ - 513 + 514 ], "bool_or": [ - 514 + 515 ], "count": [ - 515 + 516 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_aggregate_bool_exp_bool_and": { "arguments": [ - 534 + 535 ], "distinct": [ - 5 + 6 ], "filter": [ - 521 + 522 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_aggregate_bool_exp_bool_or": { "arguments": [ - 535 + 536 ], "distinct": [ - 5 + 6 ], "filter": [ - 521 + 522 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_aggregate_bool_exp_count": { "arguments": [ - 533 + 534 ], "distinct": [ - 5 + 6 ], "filter": [ - 521 + 522 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_aggregate_fields": { "avg": [ - 519 + 520 ], "count": [ - 40, + 41, { "columns": [ - 533, + 534, "[draft_game_players_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 525 + 526 ], "min": [ - 527 + 528 ], "stddev": [ - 537 + 538 ], "stddev_pop": [ - 539 + 540 ], "stddev_samp": [ - 541 + 542 ], "sum": [ - 545 + 546 ], "var_pop": [ - 549 + 550 ], "var_samp": [ - 551 + 552 ], "variance": [ - 553 + 554 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_aggregate_order_by": { "avg": [ - 520 + 521 ], "count": [ - 3377 + 3373 ], "max": [ - 526 + 527 ], "min": [ - 528 + 529 ], "stddev": [ - 538 + 539 ], "stddev_pop": [ - 540 + 541 ], "stddev_samp": [ - 542 + 543 ], "sum": [ - 546 + 547 ], "var_pop": [ - 550 + 551 ], "var_samp": [ - 552 + 553 ], "variance": [ - 554 + 555 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_arr_rel_insert_input": { "data": [ - 524 + 525 ], "on_conflict": [ - 530 + 531 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_avg_fields": { "elo_snapshot": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "pick_order": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "pick_order": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_bool_exp": { "_and": [ - 521 + 522 ], "_not": [ - 521 + 522 ], "_or": [ - 521 + 522 ], "draft_game": [ - 566 + 567 ], "draft_game_id": [ - 5460 + 5456 ], "e_draft_game_player_status": [ - 727 + 728 ], "elo_snapshot": [ - 41 + 42 ], "is_captain": [ - 6 + 7 ], "is_organizer": [ - 6 + 7 ], "joined_at": [ - 4959 + 4955 ], "lineup": [ - 41 + 42 ], "pick_order": [ - 41 + 42 ], "player": [ - 4339 + 4335 ], "status": [ - 730 + 731 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_constraint": {}, "draft_game_players_inc_input": { "elo_snapshot": [ - 40 + 41 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_insert_input": { "draft_game": [ - 575 + 576 ], "draft_game_id": [ - 5458 + 5454 ], "e_draft_game_player_status": [ - 735 + 736 ], "elo_snapshot": [ - 40 + 41 ], "is_captain": [ - 5 + 6 ], "joined_at": [ - 4958 + 4954 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "player": [ - 4346 + 4342 ], "status": [ - 729 + 730 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_max_fields": { "draft_game_id": [ - 5458 + 5454 ], "elo_snapshot": [ - 40 + 41 ], "joined_at": [ - 4958 + 4954 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_max_order_by": { "draft_game_id": [ - 3377 + 3373 ], "elo_snapshot": [ - 3377 + 3373 ], "joined_at": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "pick_order": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_min_fields": { "draft_game_id": [ - 5458 + 5454 ], "elo_snapshot": [ - 40 + 41 ], "joined_at": [ - 4958 + 4954 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_min_order_by": { "draft_game_id": [ - 3377 + 3373 ], "elo_snapshot": [ - 3377 + 3373 ], "joined_at": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "pick_order": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 510 + 511 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_on_conflict": { "constraint": [ - 522 + 523 ], "update_columns": [ - 547 + 548 ], "where": [ - 521 + 522 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_order_by": { "draft_game": [ - 577 + 578 ], "draft_game_id": [ - 3377 + 3373 ], "e_draft_game_player_status": [ - 737 + 738 ], "elo_snapshot": [ - 3377 + 3373 ], "is_captain": [ - 3377 + 3373 ], "is_organizer": [ - 3377 + 3373 ], "joined_at": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "pick_order": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "status": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_select_column": {}, @@ -10744,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": [ - 5458 + 5454 ], "elo_snapshot": [ - 40 + 41 ], "is_captain": [ - 5 + 6 ], "joined_at": [ - 4958 + 4954 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "status": [ - 729 + 730 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_stddev_fields": { "elo_snapshot": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "pick_order": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "pick_order": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_stddev_pop_fields": { "elo_snapshot": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "pick_order": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "pick_order": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_stddev_samp_fields": { "elo_snapshot": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "pick_order": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "pick_order": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_stream_cursor_input": { "initial_value": [ - 544 + 545 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 5458 + 5454 ], "elo_snapshot": [ - 40 + 41 ], "is_captain": [ - 5 + 6 ], "joined_at": [ - 4958 + 4954 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "status": [ - 729 + 730 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_sum_fields": { "elo_snapshot": [ - 40 + 41 ], "lineup": [ - 40 + 41 ], "pick_order": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "pick_order": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_update_column": {}, "draft_game_players_updates": { "_inc": [ - 523 + 524 ], "_set": [ - 536 + 537 ], "where": [ - 521 + 522 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_var_pop_fields": { "elo_snapshot": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "pick_order": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "pick_order": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_var_samp_fields": { "elo_snapshot": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "pick_order": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "pick_order": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_variance_fields": { "elo_snapshot": [ - 31 + 32 ], "lineup": [ - 31 + 32 ], "pick_order": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 3377 + 3373 ], "lineup": [ - 3377 + 3373 ], "pick_order": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_games": { "access": [ - 1017 + 1018 ], "capacity": [ - 40 + 41 ], "captain_selection": [ - 666 + 667 ], "created_at": [ - 4958 + 4954 ], "current_pick_lineup": [ - 40 + 41 ], "draft_order": [ - 687 + 688 ], "e_draft_game_captain_selection": [ - 661 + 662 ], "e_draft_game_draft_order": [ - 682 + 683 ], "e_draft_game_mode": [ - 703 + 704 ], "e_draft_game_status": [ - 745 + 746 ], "e_lobby_access": [ - 1012 + 1013 ], "expires_at": [ - 4958 + 4954 ], "host": [ - 4335 + 4331 ], "host_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "inner_squad": [ - 5 + 6 ], "invite_code": [ - 5458 + 5454 ], "is_organizer": [ - 5 + 6 ], "map_pool": [ - 2634 + 2630 ], "map_pool_id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "mode": [ - 708 + 709 ], "options": [ - 3019 + 3015 ], "pattern": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "pick_deadline": [ - 4958 + 4954 ], "picks": [ - 465, + 466, { "distinct_on": [ - 488, + 489, "[draft_game_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 486, + 487, "[draft_game_picks_order_by!]" ], "where": [ - 476 + 477 ] } ], "picks_aggregate": [ - 466, + 467, { "distinct_on": [ - 488, + 489, "[draft_game_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 486, + 487, "[draft_game_picks_order_by!]" ], "where": [ - 476 + 477 ] } ], "players": [ - 510, + 511, { "distinct_on": [ - 533, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 531, + 532, "[draft_game_players_order_by!]" ], "where": [ - 521 + 522 ] } ], "players_aggregate": [ - 511, + 512, { "distinct_on": [ - 533, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 531, + 532, "[draft_game_players_order_by!]" ], "where": [ - 521 + 522 ] } ], "regions": [ - 83 + 84 ], "require_approval": [ - 5 + 6 ], "scheduled_at": [ - 4958 + 4954 ], "status": [ - 750 + 751 ], "team_1": [ - 4909 + 4905 ], "team_1_id": [ - 5458 + 5454 ], "team_2": [ - 4909 + 4905 ], "team_2_id": [ - 5458 + 5454 ], "type": [ - 1181 + 1182 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "draft_games_aggregate": { "aggregate": [ - 561 + 562 ], "nodes": [ - 555 + 556 ], "__typename": [ - 83 + 84 ] }, "draft_games_aggregate_bool_exp": { "bool_and": [ - 558 + 559 ], "bool_or": [ - 559 + 560 ], "count": [ - 560 + 561 ], "__typename": [ - 83 + 84 ] }, "draft_games_aggregate_bool_exp_bool_and": { "arguments": [ - 580 + 581 ], "distinct": [ - 5 + 6 ], "filter": [ - 566 + 567 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "draft_games_aggregate_bool_exp_bool_or": { "arguments": [ - 581 + 582 ], "distinct": [ - 5 + 6 ], "filter": [ - 566 + 567 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "draft_games_aggregate_bool_exp_count": { "arguments": [ - 579 + 580 ], "distinct": [ - 5 + 6 ], "filter": [ - 566 + 567 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "draft_games_aggregate_fields": { "avg": [ - 564 + 565 ], "count": [ - 40, + 41, { "columns": [ - 579, + 580, "[draft_games_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 570 + 571 ], "min": [ - 572 + 573 ], "stddev": [ - 583 + 584 ], "stddev_pop": [ - 585 + 586 ], "stddev_samp": [ - 587 + 588 ], "sum": [ - 591 + 592 ], "var_pop": [ - 595 + 596 ], "var_samp": [ - 597 + 598 ], "variance": [ - 599 + 600 ], "__typename": [ - 83 + 84 ] }, "draft_games_aggregate_order_by": { "avg": [ - 565 + 566 ], "count": [ - 3377 + 3373 ], "max": [ - 571 + 572 ], "min": [ - 573 + 574 ], "stddev": [ - 584 + 585 ], "stddev_pop": [ - 586 + 587 ], "stddev_samp": [ - 588 + 589 ], "sum": [ - 592 + 593 ], "var_pop": [ - 596 + 597 ], "var_samp": [ - 598 + 599 ], "variance": [ - 600 + 601 ], "__typename": [ - 83 + 84 ] }, "draft_games_arr_rel_insert_input": { "data": [ - 569 + 570 ], "on_conflict": [ - 576 + 577 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "draft_games_avg_order_by": { "capacity": [ - 3377 + 3373 ], "current_pick_lineup": [ - 3377 + 3373 ], "host_steam_id": [ - 3377 + 3373 ], "max_elo": [ - 3377 + 3373 ], "min_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_games_bool_exp": { "_and": [ - 566 + 567 ], "_not": [ - 566 + 567 ], "_or": [ - 566 + 567 ], "access": [ - 1018 + 1019 ], "capacity": [ - 41 + 42 ], "captain_selection": [ - 667 + 668 ], "created_at": [ - 4959 + 4955 ], "current_pick_lineup": [ - 41 + 42 ], "draft_order": [ - 688 + 689 ], "e_draft_game_captain_selection": [ - 664 + 665 ], "e_draft_game_draft_order": [ - 685 + 686 ], "e_draft_game_mode": [ - 706 + 707 ], "e_draft_game_status": [ - 748 + 749 ], "e_lobby_access": [ - 1015 + 1016 ], "expires_at": [ - 4959 + 4955 ], "host": [ - 4339 + 4335 ], "host_steam_id": [ - 270 + 271 ], "id": [ - 5460 + 5456 ], "inner_squad": [ - 6 + 7 ], "invite_code": [ - 5460 + 5456 ], "is_organizer": [ - 6 + 7 ], "map_pool": [ - 2637 + 2633 ], "map_pool_id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_options_id": [ - 5460 + 5456 ], "max_elo": [ - 41 + 42 ], "min_elo": [ - 41 + 42 ], "mode": [ - 709 + 710 ], "options": [ - 3030 + 3026 ], "pattern": [ - 2193 + 2189 ], "pick_deadline": [ - 4959 + 4955 ], "picks": [ - 476 + 477 ], "picks_aggregate": [ - 467 + 468 ], "players": [ - 521 + 522 ], "players_aggregate": [ - 512 + 513 ], "regions": [ - 84 + 85 ], "require_approval": [ - 6 + 7 ], "scheduled_at": [ - 4959 + 4955 ], "status": [ - 751 + 752 ], "team_1": [ - 4920 + 4916 ], "team_1_id": [ - 5460 + 5456 ], "team_2": [ - 4920 + 4916 ], "team_2_id": [ - 5460 + 5456 ], "type": [ - 1182 + 1183 ], "updated_at": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "draft_games_constraint": {}, "draft_games_inc_input": { "capacity": [ - 40 + 41 ], "current_pick_lineup": [ - 40 + 41 ], "host_steam_id": [ - 268 + 269 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "draft_games_insert_input": { "access": [ - 1017 + 1018 ], "capacity": [ - 40 + 41 ], "captain_selection": [ - 666 + 667 ], "created_at": [ - 4958 + 4954 ], "current_pick_lineup": [ - 40 + 41 ], "draft_order": [ - 687 + 688 ], "e_draft_game_captain_selection": [ - 672 + 673 ], "e_draft_game_draft_order": [ - 693 + 694 ], "e_draft_game_mode": [ - 714 + 715 ], "e_draft_game_status": [ - 756 + 757 ], "e_lobby_access": [ - 1023 + 1024 ], "expires_at": [ - 4958 + 4954 ], "host": [ - 4346 + 4342 ], "host_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "inner_squad": [ - 5 + 6 ], "invite_code": [ - 5458 + 5454 ], "map_pool": [ - 2643 + 2639 ], "map_pool_id": [ - 5458 + 5454 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "mode": [ - 708 + 709 ], "options": [ - 3039 + 3035 ], "pick_deadline": [ - 4958 + 4954 ], "picks": [ - 473 + 474 ], "players": [ - 518 + 519 ], "regions": [ - 83 + 84 ], "require_approval": [ - 5 + 6 ], "scheduled_at": [ - 4958 + 4954 ], "status": [ - 750 + 751 ], "team_1": [ - 4929 + 4925 ], "team_1_id": [ - 5458 + 5454 ], "team_2": [ - 4929 + 4925 ], "team_2_id": [ - 5458 + 5454 ], "type": [ - 1181 + 1182 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "draft_games_max_fields": { "capacity": [ - 40 + 41 ], "created_at": [ - 4958 + 4954 ], "current_pick_lineup": [ - 40 + 41 ], "expires_at": [ - 4958 + 4954 ], "host_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "invite_code": [ - 5458 + 5454 ], "map_pool_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "pick_deadline": [ - 4958 + 4954 ], "regions": [ - 83 + 84 ], "scheduled_at": [ - 4958 + 4954 ], "team_1_id": [ - 5458 + 5454 ], "team_2_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "draft_games_max_order_by": { "capacity": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "current_pick_lineup": [ - 3377 + 3373 ], "expires_at": [ - 3377 + 3373 ], "host_steam_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "invite_code": [ - 3377 + 3373 ], "map_pool_id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "max_elo": [ - 3377 + 3373 ], "min_elo": [ - 3377 + 3373 ], "pick_deadline": [ - 3377 + 3373 ], "regions": [ - 3377 + 3373 ], "scheduled_at": [ - 3377 + 3373 ], "team_1_id": [ - 3377 + 3373 ], "team_2_id": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_games_min_fields": { "capacity": [ - 40 + 41 ], "created_at": [ - 4958 + 4954 ], "current_pick_lineup": [ - 40 + 41 ], "expires_at": [ - 4958 + 4954 ], "host_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "invite_code": [ - 5458 + 5454 ], "map_pool_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "pick_deadline": [ - 4958 + 4954 ], "regions": [ - 83 + 84 ], "scheduled_at": [ - 4958 + 4954 ], "team_1_id": [ - 5458 + 5454 ], "team_2_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "draft_games_min_order_by": { "capacity": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "current_pick_lineup": [ - 3377 + 3373 ], "expires_at": [ - 3377 + 3373 ], "host_steam_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "invite_code": [ - 3377 + 3373 ], "map_pool_id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "max_elo": [ - 3377 + 3373 ], "min_elo": [ - 3377 + 3373 ], "pick_deadline": [ - 3377 + 3373 ], "regions": [ - 3377 + 3373 ], "scheduled_at": [ - 3377 + 3373 ], "team_1_id": [ - 3377 + 3373 ], "team_2_id": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_games_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 555 + 556 ], "__typename": [ - 83 + 84 ] }, "draft_games_obj_rel_insert_input": { "data": [ - 569 + 570 ], "on_conflict": [ - 576 + 577 ], "__typename": [ - 83 + 84 ] }, "draft_games_on_conflict": { "constraint": [ - 567 + 568 ], "update_columns": [ - 593 + 594 ], "where": [ - 566 + 567 ], "__typename": [ - 83 + 84 ] }, "draft_games_order_by": { "access": [ - 3377 + 3373 ], "capacity": [ - 3377 + 3373 ], "captain_selection": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "current_pick_lineup": [ - 3377 + 3373 ], "draft_order": [ - 3377 + 3373 ], "e_draft_game_captain_selection": [ - 674 + 675 ], "e_draft_game_draft_order": [ - 695 + 696 ], "e_draft_game_mode": [ - 716 + 717 ], "e_draft_game_status": [ - 758 + 759 ], "e_lobby_access": [ - 1025 + 1026 ], "expires_at": [ - 3377 + 3373 ], "host": [ - 4348 + 4344 ], "host_steam_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "inner_squad": [ - 3377 + 3373 ], "invite_code": [ - 3377 + 3373 ], "is_organizer": [ - 3377 + 3373 ], "map_pool": [ - 2645 + 2641 ], "map_pool_id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "max_elo": [ - 3377 + 3373 ], "min_elo": [ - 3377 + 3373 ], "mode": [ - 3377 + 3373 ], "options": [ - 3041 + 3037 ], "pattern": [ - 3377 + 3373 ], "pick_deadline": [ - 3377 + 3373 ], "picks_aggregate": [ - 472 + 473 ], "players_aggregate": [ - 517 + 518 ], "regions": [ - 3377 + 3373 ], "require_approval": [ - 3377 + 3373 ], "scheduled_at": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "team_1": [ - 4931 + 4927 ], "team_1_id": [ - 3377 + 3373 ], "team_2": [ - 4931 + 4927 ], "team_2_id": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_games_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "draft_games_select_column": {}, @@ -12190,12154 +12207,12116 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 1017 + 1018 ], "capacity": [ - 40 + 41 ], "captain_selection": [ - 666 + 667 ], "created_at": [ - 4958 + 4954 ], "current_pick_lineup": [ - 40 + 41 ], "draft_order": [ - 687 + 688 ], "expires_at": [ - 4958 + 4954 ], "host_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "inner_squad": [ - 5 + 6 ], "invite_code": [ - 5458 + 5454 ], "map_pool_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "mode": [ - 708 + 709 ], "pick_deadline": [ - 4958 + 4954 ], "regions": [ - 83 + 84 ], "require_approval": [ - 5 + 6 ], "scheduled_at": [ - 4958 + 4954 ], "status": [ - 750 + 751 ], "team_1_id": [ - 5458 + 5454 ], "team_2_id": [ - 5458 + 5454 ], "type": [ - 1181 + 1182 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "draft_games_stddev_order_by": { "capacity": [ - 3377 + 3373 ], "current_pick_lineup": [ - 3377 + 3373 ], "host_steam_id": [ - 3377 + 3373 ], "max_elo": [ - 3377 + 3373 ], "min_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "draft_games_stddev_pop_order_by": { "capacity": [ - 3377 + 3373 ], "current_pick_lineup": [ - 3377 + 3373 ], "host_steam_id": [ - 3377 + 3373 ], "max_elo": [ - 3377 + 3373 ], "min_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "draft_games_stddev_samp_order_by": { "capacity": [ - 3377 + 3373 ], "current_pick_lineup": [ - 3377 + 3373 ], "host_steam_id": [ - 3377 + 3373 ], "max_elo": [ - 3377 + 3373 ], "min_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_games_stream_cursor_input": { "initial_value": [ - 590 + 591 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "draft_games_stream_cursor_value_input": { "access": [ - 1017 + 1018 ], "capacity": [ - 40 + 41 ], "captain_selection": [ - 666 + 667 ], "created_at": [ - 4958 + 4954 ], "current_pick_lineup": [ - 40 + 41 ], "draft_order": [ - 687 + 688 ], "expires_at": [ - 4958 + 4954 ], "host_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "inner_squad": [ - 5 + 6 ], "invite_code": [ - 5458 + 5454 ], "map_pool_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "mode": [ - 708 + 709 ], "pick_deadline": [ - 4958 + 4954 ], "regions": [ - 83 + 84 ], "require_approval": [ - 5 + 6 ], "scheduled_at": [ - 4958 + 4954 ], "status": [ - 750 + 751 ], "team_1_id": [ - 5458 + 5454 ], "team_2_id": [ - 5458 + 5454 ], "type": [ - 1181 + 1182 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "draft_games_sum_fields": { "capacity": [ - 40 + 41 ], "current_pick_lineup": [ - 40 + 41 ], "host_steam_id": [ - 268 + 269 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "draft_games_sum_order_by": { "capacity": [ - 3377 + 3373 ], "current_pick_lineup": [ - 3377 + 3373 ], "host_steam_id": [ - 3377 + 3373 ], "max_elo": [ - 3377 + 3373 ], "min_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "draft_games_update_column": {}, "draft_games_updates": { "_inc": [ - 568 + 569 ], "_set": [ - 582 + 583 ], "where": [ - 566 + 567 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "draft_games_var_pop_order_by": { "capacity": [ - 3377 + 3373 ], "current_pick_lineup": [ - 3377 + 3373 ], "host_steam_id": [ - 3377 + 3373 ], "max_elo": [ - 3377 + 3373 ], "min_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "draft_games_var_samp_order_by": { "capacity": [ - 3377 + 3373 ], "current_pick_lineup": [ - 3377 + 3373 ], "host_steam_id": [ - 3377 + 3373 ], "max_elo": [ - 3377 + 3373 ], "min_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "draft_games_variance_order_by": { "capacity": [ - 3377 + 3373 ], "current_pick_lineup": [ - 3377 + 3373 ], "host_steam_id": [ - 3377 + 3373 ], "max_elo": [ - 3377 + 3373 ], "min_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_award_sources": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_aggregate": { "aggregate": [ - 603 + 604 ], "nodes": [ - 601 + 602 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 615, + 616, "[e_award_sources_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 609 + 610 ], "min": [ - 610 + 611 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_bool_exp": { "_and": [ - 604 + 605 ], "_not": [ - 604 + 605 ], "_or": [ - 604 + 605 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_constraint": {}, "e_award_sources_enum": {}, "e_award_sources_enum_comparison_exp": { "_eq": [ - 606 + 607 ], "_in": [ - 606 + 607 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 606 + 607 ], "_nin": [ - 606 + 607 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 601 + 602 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_on_conflict": { "constraint": [ - 605 + 606 ], "update_columns": [ - 619 + 620 ], "where": [ - 604 + 605 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_select_column": {}, "e_award_sources_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_stream_cursor_input": { "initial_value": [ - 618 + 619 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_award_sources_update_column": {}, "e_award_sources_updates": { "_set": [ - 616 + 617 ], "where": [ - 604 + 605 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_aggregate": { "aggregate": [ - 623 + 624 ], "nodes": [ - 621 + 622 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 635, + 636, "[e_award_tiers_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 629 + 630 ], "min": [ - 630 + 631 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_bool_exp": { "_and": [ - 624 + 625 ], "_not": [ - 624 + 625 ], "_or": [ - 624 + 625 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_constraint": {}, "e_award_tiers_enum": {}, "e_award_tiers_enum_comparison_exp": { "_eq": [ - 626 + 627 ], "_in": [ - 626 + 627 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 626 + 627 ], "_nin": [ - 626 + 627 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 621 + 622 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_on_conflict": { "constraint": [ - 625 + 626 ], "update_columns": [ - 639 + 640 ], "where": [ - 624 + 625 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_select_column": {}, "e_award_tiers_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_stream_cursor_input": { "initial_value": [ - 638 + 639 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_award_tiers_update_column": {}, "e_award_tiers_updates": { "_set": [ - 636 + 637 ], "where": [ - 624 + 625 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_aggregate": { "aggregate": [ - 643 + 644 ], "nodes": [ - 641 + 642 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 655, + 656, "[e_check_in_settings_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 649 + 650 ], "min": [ - 650 + 651 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_bool_exp": { "_and": [ - 644 + 645 ], "_not": [ - 644 + 645 ], "_or": [ - 644 + 645 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_constraint": {}, "e_check_in_settings_enum": {}, "e_check_in_settings_enum_comparison_exp": { "_eq": [ - 646 + 647 ], "_in": [ - 646 + 647 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 646 + 647 ], "_nin": [ - 646 + 647 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 641 + 642 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_on_conflict": { "constraint": [ - 645 + 646 ], "update_columns": [ - 659 + 660 ], "where": [ - 644 + 645 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_select_column": {}, "e_check_in_settings_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_stream_cursor_input": { "initial_value": [ - 658 + 659 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_check_in_settings_update_column": {}, "e_check_in_settings_updates": { "_set": [ - 656 + 657 ], "where": [ - 644 + 645 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_aggregate": { "aggregate": [ - 663 + 664 ], "nodes": [ - 661 + 662 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 676, + 677, "[e_draft_game_captain_selection_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 669 + 670 ], "min": [ - 670 + 671 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_bool_exp": { "_and": [ - 664 + 665 ], "_not": [ - 664 + 665 ], "_or": [ - 664 + 665 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_constraint": {}, "e_draft_game_captain_selection_enum": {}, "e_draft_game_captain_selection_enum_comparison_exp": { "_eq": [ - 666 + 667 ], "_in": [ - 666 + 667 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 666 + 667 ], "_nin": [ - 666 + 667 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 661 + 662 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_obj_rel_insert_input": { "data": [ - 668 + 669 ], "on_conflict": [ - 673 + 674 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_on_conflict": { "constraint": [ - 665 + 666 ], "update_columns": [ - 680 + 681 ], "where": [ - 664 + 665 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_select_column": {}, "e_draft_game_captain_selection_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_stream_cursor_input": { "initial_value": [ - 679 + 680 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_captain_selection_update_column": {}, "e_draft_game_captain_selection_updates": { "_set": [ - 677 + 678 ], "where": [ - 664 + 665 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_aggregate": { "aggregate": [ - 684 + 685 ], "nodes": [ - 682 + 683 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 697, + 698, "[e_draft_game_draft_order_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 690 + 691 ], "min": [ - 691 + 692 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_bool_exp": { "_and": [ - 685 + 686 ], "_not": [ - 685 + 686 ], "_or": [ - 685 + 686 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_constraint": {}, "e_draft_game_draft_order_enum": {}, "e_draft_game_draft_order_enum_comparison_exp": { "_eq": [ - 687 + 688 ], "_in": [ - 687 + 688 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 687 + 688 ], "_nin": [ - 687 + 688 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 682 + 683 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_obj_rel_insert_input": { "data": [ - 689 + 690 ], "on_conflict": [ - 694 + 695 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_on_conflict": { "constraint": [ - 686 + 687 ], "update_columns": [ - 701 + 702 ], "where": [ - 685 + 686 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_select_column": {}, "e_draft_game_draft_order_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_stream_cursor_input": { "initial_value": [ - 700 + 701 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_draft_order_update_column": {}, "e_draft_game_draft_order_updates": { "_set": [ - 698 + 699 ], "where": [ - 685 + 686 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_aggregate": { "aggregate": [ - 705 + 706 ], "nodes": [ - 703 + 704 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 718, + 719, "[e_draft_game_mode_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 711 + 712 ], "min": [ - 712 + 713 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_bool_exp": { "_and": [ - 706 + 707 ], "_not": [ - 706 + 707 ], "_or": [ - 706 + 707 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_constraint": {}, "e_draft_game_mode_enum": {}, "e_draft_game_mode_enum_comparison_exp": { "_eq": [ - 708 + 709 ], "_in": [ - 708 + 709 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 708 + 709 ], "_nin": [ - 708 + 709 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 703 + 704 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_obj_rel_insert_input": { "data": [ - 710 + 711 ], "on_conflict": [ - 715 + 716 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_on_conflict": { "constraint": [ - 707 + 708 ], "update_columns": [ - 722 + 723 ], "where": [ - 706 + 707 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_select_column": {}, "e_draft_game_mode_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_stream_cursor_input": { "initial_value": [ - 721 + 722 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_mode_update_column": {}, "e_draft_game_mode_updates": { "_set": [ - 719 + 720 ], "where": [ - 706 + 707 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_aggregate": { "aggregate": [ - 726 + 727 ], "nodes": [ - 724 + 725 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 739, + 740, "[e_draft_game_player_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 732 + 733 ], "min": [ - 733 + 734 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_bool_exp": { "_and": [ - 727 + 728 ], "_not": [ - 727 + 728 ], "_or": [ - 727 + 728 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_constraint": {}, "e_draft_game_player_status_enum": {}, "e_draft_game_player_status_enum_comparison_exp": { "_eq": [ - 729 + 730 ], "_in": [ - 729 + 730 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 729 + 730 ], "_nin": [ - 729 + 730 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 724 + 725 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_obj_rel_insert_input": { "data": [ - 731 + 732 ], "on_conflict": [ - 736 + 737 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_on_conflict": { "constraint": [ - 728 + 729 ], "update_columns": [ - 743 + 744 ], "where": [ - 727 + 728 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_select_column": {}, "e_draft_game_player_status_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_stream_cursor_input": { "initial_value": [ - 742 + 743 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_player_status_update_column": {}, "e_draft_game_player_status_updates": { "_set": [ - 740 + 741 ], "where": [ - 727 + 728 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_aggregate": { "aggregate": [ - 747 + 748 ], "nodes": [ - 745 + 746 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 760, + 761, "[e_draft_game_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 753 + 754 ], "min": [ - 754 + 755 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_bool_exp": { "_and": [ - 748 + 749 ], "_not": [ - 748 + 749 ], "_or": [ - 748 + 749 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_constraint": {}, "e_draft_game_status_enum": {}, "e_draft_game_status_enum_comparison_exp": { "_eq": [ - 750 + 751 ], "_in": [ - 750 + 751 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 750 + 751 ], "_nin": [ - 750 + 751 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 745 + 746 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_obj_rel_insert_input": { "data": [ - 752 + 753 ], "on_conflict": [ - 757 + 758 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_on_conflict": { "constraint": [ - 749 + 750 ], "update_columns": [ - 764 + 765 ], "where": [ - 748 + 749 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_select_column": {}, "e_draft_game_status_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_stream_cursor_input": { "initial_value": [ - 763 + 764 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_draft_game_status_update_column": {}, "e_draft_game_status_updates": { "_set": [ - 761 + 762 ], "where": [ - 748 + 749 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_aggregate": { "aggregate": [ - 768 + 769 ], "nodes": [ - 766 + 767 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 780, + 781, "[e_event_media_access_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 774 + 775 ], "min": [ - 775 + 776 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_bool_exp": { "_and": [ - 769 + 770 ], "_not": [ - 769 + 770 ], "_or": [ - 769 + 770 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_constraint": {}, "e_event_media_access_enum": {}, "e_event_media_access_enum_comparison_exp": { "_eq": [ - 771 + 772 ], "_in": [ - 771 + 772 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 771 + 772 ], "_nin": [ - 771 + 772 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 766 + 767 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_on_conflict": { "constraint": [ - 770 + 771 ], "update_columns": [ - 784 + 785 ], "where": [ - 769 + 770 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_select_column": {}, "e_event_media_access_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_stream_cursor_input": { "initial_value": [ - 783 + 784 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_event_media_access_update_column": {}, "e_event_media_access_updates": { "_set": [ - 781 + 782 ], "where": [ - 769 + 770 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_aggregate": { "aggregate": [ - 788 + 789 ], "nodes": [ - 786 + 787 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 800, + 801, "[e_event_visibility_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 794 + 795 ], "min": [ - 795 + 796 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_bool_exp": { "_and": [ - 789 + 790 ], "_not": [ - 789 + 790 ], "_or": [ - 789 + 790 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_constraint": {}, "e_event_visibility_enum": {}, "e_event_visibility_enum_comparison_exp": { "_eq": [ - 791 + 792 ], "_in": [ - 791 + 792 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 791 + 792 ], "_nin": [ - 791 + 792 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 786 + 787 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_on_conflict": { "constraint": [ - 790 + 791 ], "update_columns": [ - 804 + 805 ], "where": [ - 789 + 790 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_select_column": {}, "e_event_visibility_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_stream_cursor_input": { "initial_value": [ - 803 + 804 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_event_visibility_update_column": {}, "e_event_visibility_updates": { "_set": [ - 801 + 802 ], "where": [ - 789 + 790 ], "__typename": [ - 83 + 84 ] }, "e_friend_status": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_aggregate": { "aggregate": [ - 808 + 809 ], "nodes": [ - 806 + 807 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 821, + 822, "[e_friend_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 814 + 815 ], "min": [ - 815 + 816 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_bool_exp": { "_and": [ - 809 + 810 ], "_not": [ - 809 + 810 ], "_or": [ - 809 + 810 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_constraint": {}, "e_friend_status_enum": {}, "e_friend_status_enum_comparison_exp": { "_eq": [ - 811 + 812 ], "_in": [ - 811 + 812 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 811 + 812 ], "_nin": [ - 811 + 812 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 806 + 807 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_obj_rel_insert_input": { "data": [ - 813 + 814 ], "on_conflict": [ - 818 + 819 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_on_conflict": { "constraint": [ - 810 + 811 ], "update_columns": [ - 825 + 826 ], "where": [ - 809 + 810 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_select_column": {}, "e_friend_status_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 824 + 825 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 822 + 823 ], "where": [ - 809 + 810 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_aggregate": { "aggregate": [ - 829 + 830 ], "nodes": [ - 827 + 828 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 841, + 842, "[e_game_cfg_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 835 + 836 ], "min": [ - 836 + 837 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_bool_exp": { "_and": [ - 830 + 831 ], "_not": [ - 830 + 831 ], "_or": [ - 830 + 831 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_constraint": {}, "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 832 + 833 ], "_in": [ - 832 + 833 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 832 + 833 ], "_nin": [ - 832 + 833 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 827 + 828 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_on_conflict": { "constraint": [ - 831 + 832 ], "update_columns": [ - 845 + 846 ], "where": [ - 830 + 831 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_select_column": {}, "e_game_cfg_types_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 844 + 845 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 842 + 843 ], "where": [ - 830 + 831 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_aggregate": { "aggregate": [ - 849 + 850 ], "nodes": [ - 847 + 848 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 861, + 862, "[e_game_plugin_channels_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 855 + 856 ], "min": [ - 856 + 857 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_bool_exp": { "_and": [ - 850 + 851 ], "_not": [ - 850 + 851 ], "_or": [ - 850 + 851 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_constraint": {}, "e_game_plugin_channels_enum": {}, "e_game_plugin_channels_enum_comparison_exp": { "_eq": [ - 852 + 853 ], "_in": [ - 852 + 853 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 852 + 853 ], "_nin": [ - 852 + 853 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 847 + 848 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_on_conflict": { "constraint": [ - 851 + 852 ], "update_columns": [ - 865 + 866 ], "where": [ - 850 + 851 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_select_column": {}, "e_game_plugin_channels_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_stream_cursor_input": { "initial_value": [ - 864 + 865 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_channels_update_column": {}, "e_game_plugin_channels_updates": { "_set": [ - 862 + 863 ], "where": [ - 850 + 851 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_aggregate": { "aggregate": [ - 869 + 870 ], "nodes": [ - 867 + 868 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 881, + 882, "[e_game_plugin_install_statuses_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 875 + 876 ], "min": [ - 876 + 877 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_bool_exp": { "_and": [ - 870 + 871 ], "_not": [ - 870 + 871 ], "_or": [ - 870 + 871 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_constraint": {}, "e_game_plugin_install_statuses_enum": {}, "e_game_plugin_install_statuses_enum_comparison_exp": { "_eq": [ - 872 + 873 ], "_in": [ - 872 + 873 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 872 + 873 ], "_nin": [ - 872 + 873 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 867 + 868 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_on_conflict": { "constraint": [ - 871 + 872 ], "update_columns": [ - 885 + 886 ], "where": [ - 870 + 871 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_select_column": {}, "e_game_plugin_install_statuses_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_stream_cursor_input": { "initial_value": [ - 884 + 885 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_install_statuses_update_column": {}, "e_game_plugin_install_statuses_updates": { "_set": [ - 882 + 883 ], "where": [ - 870 + 871 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_aggregate": { "aggregate": [ - 889 + 890 ], "nodes": [ - 887 + 888 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 901, + 902, "[e_game_plugin_kinds_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 895 + 896 ], "min": [ - 896 + 897 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_bool_exp": { "_and": [ - 890 + 891 ], "_not": [ - 890 + 891 ], "_or": [ - 890 + 891 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_constraint": {}, "e_game_plugin_kinds_enum": {}, "e_game_plugin_kinds_enum_comparison_exp": { "_eq": [ - 892 + 893 ], "_in": [ - 892 + 893 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 892 + 893 ], "_nin": [ - 892 + 893 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 887 + 888 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_on_conflict": { "constraint": [ - 891 + 892 ], "update_columns": [ - 905 + 906 ], "where": [ - 890 + 891 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_select_column": {}, "e_game_plugin_kinds_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_stream_cursor_input": { "initial_value": [ - 904 + 905 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_plugin_kinds_update_column": {}, "e_game_plugin_kinds_updates": { "_set": [ - 902 + 903 ], "where": [ - 890 + 891 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 909 + 910 ], "nodes": [ - 907 + 908 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 922, + 923, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 915 + 916 ], "min": [ - 916 + 917 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 910 + 911 ], "_not": [ - 910 + 911 ], "_or": [ - 910 + 911 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_constraint": {}, "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 912 + 913 ], "_in": [ - 912 + 913 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 912 + 913 ], "_nin": [ - 912 + 913 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 907 + 908 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 914 + 915 ], "on_conflict": [ - 919 + 920 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 911 + 912 ], "update_columns": [ - 926 + 927 ], "where": [ - 910 + 911 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_select_column": {}, "e_game_server_node_statuses_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 925 + 926 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 923 + 924 ], "where": [ - 910 + 911 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_aggregate": { "aggregate": [ - 930 + 931 ], "nodes": [ - 928 + 929 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 943, + 944, "[e_league_movement_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 936 + 937 ], "min": [ - 937 + 938 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_bool_exp": { "_and": [ - 931 + 932 ], "_not": [ - 931 + 932 ], "_or": [ - 931 + 932 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_constraint": {}, "e_league_movement_types_enum": {}, "e_league_movement_types_enum_comparison_exp": { "_eq": [ - 933 + 934 ], "_in": [ - 933 + 934 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 933 + 934 ], "_nin": [ - 933 + 934 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 928 + 929 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_obj_rel_insert_input": { "data": [ - 935 + 936 ], "on_conflict": [ - 940 + 941 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_on_conflict": { "constraint": [ - 932 + 933 ], "update_columns": [ - 947 + 948 ], "where": [ - 931 + 932 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_select_column": {}, "e_league_movement_types_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_stream_cursor_input": { "initial_value": [ - 946 + 947 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_movement_types_update_column": {}, "e_league_movement_types_updates": { "_set": [ - 944 + 945 ], "where": [ - 931 + 932 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_aggregate": { "aggregate": [ - 951 + 952 ], "nodes": [ - 949 + 950 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 964, + 965, "[e_league_proposal_statuses_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 957 + 958 ], "min": [ - 958 + 959 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_bool_exp": { "_and": [ - 952 + 953 ], "_not": [ - 952 + 953 ], "_or": [ - 952 + 953 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_constraint": {}, "e_league_proposal_statuses_enum": {}, "e_league_proposal_statuses_enum_comparison_exp": { "_eq": [ - 954 + 955 ], "_in": [ - 954 + 955 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 954 + 955 ], "_nin": [ - 954 + 955 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 949 + 950 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_obj_rel_insert_input": { "data": [ - 956 + 957 ], "on_conflict": [ - 961 + 962 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_on_conflict": { "constraint": [ - 953 + 954 ], "update_columns": [ - 968 + 969 ], "where": [ - 952 + 953 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_select_column": {}, "e_league_proposal_statuses_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_stream_cursor_input": { "initial_value": [ - 967 + 968 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_proposal_statuses_update_column": {}, "e_league_proposal_statuses_updates": { "_set": [ - 965 + 966 ], "where": [ - 952 + 953 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_aggregate": { "aggregate": [ - 972 + 973 ], "nodes": [ - 970 + 971 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 985, + 986, "[e_league_registration_statuses_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 978 + 979 ], "min": [ - 979 + 980 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_bool_exp": { "_and": [ - 973 + 974 ], "_not": [ - 973 + 974 ], "_or": [ - 973 + 974 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_constraint": {}, "e_league_registration_statuses_enum": {}, "e_league_registration_statuses_enum_comparison_exp": { "_eq": [ - 975 + 976 ], "_in": [ - 975 + 976 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 975 + 976 ], "_nin": [ - 975 + 976 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 970 + 971 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_obj_rel_insert_input": { "data": [ - 977 + 978 ], "on_conflict": [ - 982 + 983 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_on_conflict": { "constraint": [ - 974 + 975 ], "update_columns": [ - 989 + 990 ], "where": [ - 973 + 974 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_select_column": {}, "e_league_registration_statuses_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_stream_cursor_input": { "initial_value": [ - 988 + 989 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_registration_statuses_update_column": {}, "e_league_registration_statuses_updates": { "_set": [ - 986 + 987 ], "where": [ - 973 + 974 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_aggregate": { "aggregate": [ - 993 + 994 ], "nodes": [ - 991 + 992 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1006, + 1007, "[e_league_season_statuses_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 999 + 1000 ], "min": [ - 1000 + 1001 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_bool_exp": { "_and": [ - 994 + 995 ], "_not": [ - 994 + 995 ], "_or": [ - 994 + 995 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_constraint": {}, "e_league_season_statuses_enum": {}, "e_league_season_statuses_enum_comparison_exp": { "_eq": [ - 996 + 997 ], "_in": [ - 996 + 997 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 996 + 997 ], "_nin": [ - 996 + 997 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 991 + 992 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_obj_rel_insert_input": { "data": [ - 998 + 999 ], "on_conflict": [ - 1003 + 1004 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_on_conflict": { "constraint": [ - 995 + 996 ], "update_columns": [ - 1010 + 1011 ], "where": [ - 994 + 995 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_select_column": {}, "e_league_season_statuses_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_stream_cursor_input": { "initial_value": [ - 1009 + 1010 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_league_season_statuses_update_column": {}, "e_league_season_statuses_updates": { "_set": [ - 1007 + 1008 ], "where": [ - 994 + 995 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_aggregate": { "aggregate": [ - 1014 + 1015 ], "nodes": [ - 1012 + 1013 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1027, + 1028, "[e_lobby_access_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1020 + 1021 ], "min": [ - 1021 + 1022 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_bool_exp": { "_and": [ - 1015 + 1016 ], "_not": [ - 1015 + 1016 ], "_or": [ - 1015 + 1016 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_constraint": {}, "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 1017 + 1018 ], "_in": [ - 1017 + 1018 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1017 + 1018 ], "_nin": [ - 1017 + 1018 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1012 + 1013 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 1019 + 1020 ], "on_conflict": [ - 1024 + 1025 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_on_conflict": { "constraint": [ - 1016 + 1017 ], "update_columns": [ - 1031 + 1032 ], "where": [ - 1015 + 1016 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_select_column": {}, "e_lobby_access_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 1030 + 1031 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 1028 + 1029 ], "where": [ - 1015 + 1016 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_aggregate": { "aggregate": [ - 1035 + 1036 ], "nodes": [ - 1033 + 1034 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1047, + 1048, "[e_lobby_player_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1041 + 1042 ], "min": [ - 1042 + 1043 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_bool_exp": { "_and": [ - 1036 + 1037 ], "_not": [ - 1036 + 1037 ], "_or": [ - 1036 + 1037 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_constraint": {}, "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 1038 + 1039 ], "_in": [ - 1038 + 1039 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1038 + 1039 ], "_nin": [ - 1038 + 1039 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1033 + 1034 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_on_conflict": { "constraint": [ - 1037 + 1038 ], "update_columns": [ - 1051 + 1052 ], "where": [ - 1036 + 1037 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_select_column": {}, "e_lobby_player_status_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 1050 + 1051 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 1048 + 1049 ], "where": [ - 1036 + 1037 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_aggregate": { "aggregate": [ - 1055 + 1056 ], "nodes": [ - 1053 + 1054 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1068, + 1069, "[e_map_pool_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1061 + 1062 ], "min": [ - 1062 + 1063 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_bool_exp": { "_and": [ - 1056 + 1057 ], "_not": [ - 1056 + 1057 ], "_or": [ - 1056 + 1057 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_constraint": {}, "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 1058 + 1059 ], "_in": [ - 1058 + 1059 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1058 + 1059 ], "_nin": [ - 1058 + 1059 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1053 + 1054 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 1060 + 1061 ], "on_conflict": [ - 1065 + 1066 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_on_conflict": { "constraint": [ - 1057 + 1058 ], "update_columns": [ - 1072 + 1073 ], "where": [ - 1056 + 1057 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_select_column": {}, "e_map_pool_types_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 1071 + 1072 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 1069 + 1070 ], "where": [ - 1056 + 1057 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility": { "description": [ - 83 + 84 ], "match_clips": [ - 2682, + 2678, { "distinct_on": [ - 2704, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2702, + 2698, "[match_clips_order_by!]" ], "where": [ - 2691 + 2687 ] } ], "match_clips_aggregate": [ - 2683, + 2679, { "distinct_on": [ - 2704, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2702, + 2698, "[match_clips_order_by!]" ], "where": [ - 2691 + 2687 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 1076 + 1077 ], "nodes": [ - 1074 + 1075 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1088, + 1089, "[e_match_clip_visibility_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1082 + 1083 ], "min": [ - 1083 + 1084 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_bool_exp": { "_and": [ - 1077 + 1078 ], "_not": [ - 1077 + 1078 ], "_or": [ - 1077 + 1078 ], "description": [ - 85 + 86 ], "match_clips": [ - 2691 + 2687 ], "match_clips_aggregate": [ - 2684 + 2680 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_constraint": {}, "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 1079 + 1080 ], "_in": [ - 1079 + 1080 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1079 + 1080 ], "_nin": [ - 1079 + 1080 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_insert_input": { "description": [ - 83 + 84 ], "match_clips": [ - 2688 + 2684 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1074 + 1075 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 1078 + 1079 ], "update_columns": [ - 1092 + 1093 ], "where": [ - 1077 + 1078 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_order_by": { "description": [ - 3377 + 3373 ], "match_clips_aggregate": [ - 2687 + 2683 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_select_column": {}, "e_match_clip_visibility_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 1091 + 1092 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 1089 + 1090 ], "where": [ - 1077 + 1078 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status": { "description": [ - 83 + 84 ], "match_maps": [ - 2977, + 2973, { "distinct_on": [ - 2999, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2997, + 2993, "[match_maps_order_by!]" ], "where": [ - 2986 + 2982 ] } ], "match_maps_aggregate": [ - 2978, + 2974, { "distinct_on": [ - 2999, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2997, + 2993, "[match_maps_order_by!]" ], "where": [ - 2986 + 2982 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_aggregate": { "aggregate": [ - 1096 + 1097 ], "nodes": [ - 1094 + 1095 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1109, + 1110, "[e_match_map_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1102 + 1103 ], "min": [ - 1103 + 1104 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_bool_exp": { "_and": [ - 1097 + 1098 ], "_not": [ - 1097 + 1098 ], "_or": [ - 1097 + 1098 ], "description": [ - 85 + 86 ], "match_maps": [ - 2986 + 2982 ], "match_maps_aggregate": [ - 2979 + 2975 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_constraint": {}, "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 1099 + 1100 ], "_in": [ - 1099 + 1100 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1099 + 1100 ], "_nin": [ - 1099 + 1100 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_insert_input": { "description": [ - 83 + 84 ], "match_maps": [ - 2983 + 2979 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1094 + 1095 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 1101 + 1102 ], "on_conflict": [ - 1106 + 1107 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_on_conflict": { "constraint": [ - 1098 + 1099 ], "update_columns": [ - 1113 + 1114 ], "where": [ - 1097 + 1098 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_order_by": { "description": [ - 3377 + 3373 ], "match_maps_aggregate": [ - 2982 + 2978 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_select_column": {}, "e_match_map_status_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 1112 + 1113 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 1110 + 1111 ], "where": [ - 1097 + 1098 ], "__typename": [ - 83 + 84 ] }, "e_match_mode": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_aggregate": { "aggregate": [ - 1117 + 1118 ], "nodes": [ - 1115 + 1116 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1129, + 1130, "[e_match_mode_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1123 + 1124 ], "min": [ - 1124 + 1125 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_bool_exp": { "_and": [ - 1118 + 1119 ], "_not": [ - 1118 + 1119 ], "_or": [ - 1118 + 1119 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_constraint": {}, "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 1120 + 1121 ], "_in": [ - 1120 + 1121 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1120 + 1121 ], "_nin": [ - 1120 + 1121 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1115 + 1116 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_on_conflict": { "constraint": [ - 1119 + 1120 ], "update_columns": [ - 1133 + 1134 ], "where": [ - 1118 + 1119 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_select_column": {}, "e_match_mode_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 1132 + 1133 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 1130 + 1131 ], "where": [ - 1118 + 1119 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources": { "description": [ - 83 + 84 ], "match_lineup_players": [ - 2770, + 2766, { "distinct_on": [ - 2793, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2791, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2781 + 2777 ] } ], "match_lineup_players_aggregate": [ - 2771, + 2767, { "distinct_on": [ - 2793, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2791, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2781 + 2777 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_aggregate": { "aggregate": [ - 1137 + 1138 ], "nodes": [ - 1135 + 1136 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1149, + 1150, "[e_match_party_sources_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1143 + 1144 ], "min": [ - 1144 + 1145 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_bool_exp": { "_and": [ - 1138 + 1139 ], "_not": [ - 1138 + 1139 ], "_or": [ - 1138 + 1139 ], "description": [ - 85 + 86 ], "match_lineup_players": [ - 2781 + 2777 ], "match_lineup_players_aggregate": [ - 2772 + 2768 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_constraint": {}, "e_match_party_sources_enum": {}, "e_match_party_sources_enum_comparison_exp": { "_eq": [ - 1140 + 1141 ], "_in": [ - 1140 + 1141 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1140 + 1141 ], "_nin": [ - 1140 + 1141 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_insert_input": { "description": [ - 83 + 84 ], "match_lineup_players": [ - 2778 + 2774 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1135 + 1136 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_on_conflict": { "constraint": [ - 1139 + 1140 ], "update_columns": [ - 1153 + 1154 ], "where": [ - 1138 + 1139 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_order_by": { "description": [ - 3377 + 3373 ], "match_lineup_players_aggregate": [ - 2777 + 2773 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_select_column": {}, "e_match_party_sources_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_stream_cursor_input": { "initial_value": [ - 1152 + 1153 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_party_sources_update_column": {}, "e_match_party_sources_updates": { "_set": [ - 1150 + 1151 ], "where": [ - 1138 + 1139 ], "__typename": [ - 83 + 84 ] }, "e_match_status": { "description": [ - 83 + 84 ], "matches": [ - 3161, + 3157, { "distinct_on": [ - 3185, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3183, + 3179, "[matches_order_by!]" ], "where": [ - 3172 + 3168 ] } ], "matches_aggregate": [ - 3162, + 3158, { "distinct_on": [ - 3185, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3183, + 3179, "[matches_order_by!]" ], "where": [ - 3172 + 3168 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_status_aggregate": { "aggregate": [ - 1157 + 1158 ], "nodes": [ - 1155 + 1156 ], "__typename": [ - 83 + 84 ] }, "e_match_status_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1170, + 1171, "[e_match_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1163 + 1164 ], "min": [ - 1164 + 1165 ], "__typename": [ - 83 + 84 ] }, "e_match_status_bool_exp": { "_and": [ - 1158 + 1159 ], "_not": [ - 1158 + 1159 ], "_or": [ - 1158 + 1159 ], "description": [ - 85 + 86 ], "matches": [ - 3172 + 3168 ], "matches_aggregate": [ - 3163 + 3159 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_match_status_constraint": {}, "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 1160 + 1161 ], "_in": [ - 1160 + 1161 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1160 + 1161 ], "_nin": [ - 1160 + 1161 ], "__typename": [ - 83 + 84 ] }, "e_match_status_insert_input": { "description": [ - 83 + 84 ], "matches": [ - 3169 + 3165 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_status_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_status_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_status_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1155 + 1156 ], "__typename": [ - 83 + 84 ] }, "e_match_status_obj_rel_insert_input": { "data": [ - 1162 + 1163 ], "on_conflict": [ - 1167 + 1168 ], "__typename": [ - 83 + 84 ] }, "e_match_status_on_conflict": { "constraint": [ - 1159 + 1160 ], "update_columns": [ - 1174 + 1175 ], "where": [ - 1158 + 1159 ], "__typename": [ - 83 + 84 ] }, "e_match_status_order_by": { "description": [ - 3377 + 3373 ], "matches_aggregate": [ - 3168 + 3164 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_match_status_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_status_select_column": {}, "e_match_status_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_status_stream_cursor_input": { "initial_value": [ - 1173 + 1174 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_match_status_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 1171 + 1172 ], "where": [ - 1158 + 1159 ], "__typename": [ - 83 + 84 ] }, "e_match_types": { "description": [ - 83 + 84 ], "maps": [ - 2653, + 2649, { "distinct_on": [ - 2674, + 2670, "[maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2672, + 2668, "[maps_order_by!]" ], "where": [ - 2662 + 2658 ] } ], "maps_aggregate": [ - 2654, + 2650, { "distinct_on": [ - 2674, + 2670, "[maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2672, + 2668, "[maps_order_by!]" ], "where": [ - 2662 + 2658 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_types_aggregate": { "aggregate": [ - 1178 + 1179 ], "nodes": [ - 1176 + 1177 ], "__typename": [ - 83 + 84 ] }, "e_match_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1191, + 1192, "[e_match_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1184 + 1185 ], "min": [ - 1185 + 1186 ], "__typename": [ - 83 + 84 ] }, "e_match_types_bool_exp": { "_and": [ - 1179 + 1180 ], "_not": [ - 1179 + 1180 ], "_or": [ - 1179 + 1180 ], "description": [ - 85 + 86 ], "maps": [ - 2662 + 2658 ], "maps_aggregate": [ - 2655 + 2651 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_match_types_constraint": {}, "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 1181 + 1182 ], "_in": [ - 1181 + 1182 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1181 + 1182 ], "_nin": [ - 1181 + 1182 ], "__typename": [ - 83 + 84 ] }, "e_match_types_insert_input": { "description": [ - 83 + 84 ], "maps": [ - 2661 + 2657 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_types_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_types_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1176 + 1177 ], "__typename": [ - 83 + 84 ] }, "e_match_types_obj_rel_insert_input": { "data": [ - 1183 + 1184 ], "on_conflict": [ - 1188 + 1189 ], "__typename": [ - 83 + 84 ] }, "e_match_types_on_conflict": { "constraint": [ - 1180 + 1181 ], "update_columns": [ - 1195 + 1196 ], "where": [ - 1179 + 1180 ], "__typename": [ - 83 + 84 ] }, "e_match_types_order_by": { "description": [ - 3377 + 3373 ], "maps_aggregate": [ - 2660 + 2656 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_match_types_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_types_select_column": {}, "e_match_types_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_types_stream_cursor_input": { "initial_value": [ - 1194 + 1195 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_match_types_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 1192 + 1193 ], "where": [ - 1179 + 1180 ], "__typename": [ - 83 + 84 ] }, "e_notification_types": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_aggregate": { "aggregate": [ - 1199 + 1200 ], "nodes": [ - 1197 + 1198 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1211, + 1212, "[e_notification_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1205 + 1206 ], "min": [ - 1206 + 1207 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_bool_exp": { "_and": [ - 1200 + 1201 ], "_not": [ - 1200 + 1201 ], "_or": [ - 1200 + 1201 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_constraint": {}, "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 1202 + 1203 ], "_in": [ - 1202 + 1203 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1202 + 1203 ], "_nin": [ - 1202 + 1203 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1197 + 1198 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_on_conflict": { "constraint": [ - 1201 + 1202 ], "update_columns": [ - 1215 + 1216 ], "where": [ - 1200 + 1201 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_select_column": {}, "e_notification_types_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 1214 + 1215 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 1212 + 1213 ], "where": [ - 1200 + 1201 ], "__typename": [ - 83 + 84 ] }, "e_objective_types": { "description": [ - 83 + 84 ], "player_objectives": [ - 3933, + 3929, { "distinct_on": [ - 3954, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3952, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3942 + 3938 ] } ], "player_objectives_aggregate": [ - 3934, + 3930, { "distinct_on": [ - 3954, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3952, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3942 + 3938 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_aggregate": { "aggregate": [ - 1219 + 1220 ], "nodes": [ - 1217 + 1218 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1231, + 1232, "[e_objective_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1225 + 1226 ], "min": [ - 1226 + 1227 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_bool_exp": { "_and": [ - 1220 + 1221 ], "_not": [ - 1220 + 1221 ], "_or": [ - 1220 + 1221 ], "description": [ - 85 + 86 ], "player_objectives": [ - 3942 + 3938 ], "player_objectives_aggregate": [ - 3935 + 3931 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_constraint": {}, "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 1222 + 1223 ], "_in": [ - 1222 + 1223 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1222 + 1223 ], "_nin": [ - 1222 + 1223 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_insert_input": { "description": [ - 83 + 84 ], "player_objectives": [ - 3939 + 3935 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1217 + 1218 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_on_conflict": { "constraint": [ - 1221 + 1222 ], "update_columns": [ - 1235 + 1236 ], "where": [ - 1220 + 1221 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_order_by": { "description": [ - 3377 + 3373 ], "player_objectives_aggregate": [ - 3938 + 3934 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_select_column": {}, "e_objective_types_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 1234 + 1235 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 1232 + 1233 ], "where": [ - 1220 + 1221 ], "__typename": [ - 83 + 84 ] }, "e_player_roles": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_aggregate": { "aggregate": [ - 1239 + 1240 ], "nodes": [ - 1237 + 1238 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1251, + 1252, "[e_player_roles_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1245 + 1246 ], "min": [ - 1246 + 1247 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_bool_exp": { "_and": [ - 1240 + 1241 ], "_not": [ - 1240 + 1241 ], "_or": [ - 1240 + 1241 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_constraint": {}, "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 1242 + 1243 ], "_in": [ - 1242 + 1243 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1242 + 1243 ], "_nin": [ - 1242 + 1243 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1237 + 1238 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_on_conflict": { "constraint": [ - 1241 + 1242 ], "update_columns": [ - 1255 + 1256 ], "where": [ - 1240 + 1241 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_select_column": {}, "e_player_roles_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 1254 + 1255 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 1252 + 1253 ], "where": [ - 1240 + 1241 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_aggregate": { "aggregate": [ - 1259 + 1260 ], "nodes": [ - 1257 + 1258 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1271, + 1272, "[e_plugin_runtimes_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1265 + 1266 ], "min": [ - 1266 + 1267 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_bool_exp": { "_and": [ - 1260 + 1261 ], "_not": [ - 1260 + 1261 ], "_or": [ - 1260 + 1261 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_constraint": {}, "e_plugin_runtimes_enum": {}, "e_plugin_runtimes_enum_comparison_exp": { "_eq": [ - 1262 + 1263 ], "_in": [ - 1262 + 1263 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1262 + 1263 ], "_nin": [ - 1262 + 1263 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1257 + 1258 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_on_conflict": { "constraint": [ - 1261 + 1262 ], "update_columns": [ - 1275 + 1276 ], "where": [ - 1260 + 1261 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_select_column": {}, "e_plugin_runtimes_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_stream_cursor_input": { "initial_value": [ - 1274 + 1275 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_plugin_runtimes_update_column": {}, "e_plugin_runtimes_updates": { "_set": [ - 1272 + 1273 ], "where": [ - 1260 + 1261 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_aggregate": { "aggregate": [ - 1279 + 1280 ], "nodes": [ - 1277 + 1278 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1291, + 1292, "[e_ready_settings_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1285 + 1286 ], "min": [ - 1286 + 1287 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_bool_exp": { "_and": [ - 1280 + 1281 ], "_not": [ - 1280 + 1281 ], "_or": [ - 1280 + 1281 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_constraint": {}, "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 1282 + 1283 ], "_in": [ - 1282 + 1283 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1282 + 1283 ], "_nin": [ - 1282 + 1283 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1277 + 1278 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_on_conflict": { "constraint": [ - 1281 + 1282 ], "update_columns": [ - 1295 + 1296 ], "where": [ - 1280 + 1281 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_select_column": {}, "e_ready_settings_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 1294 + 1295 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 1292 + 1293 ], "where": [ - 1280 + 1281 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_aggregate": { "aggregate": [ - 1299 + 1300 ], "nodes": [ - 1297 + 1298 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1312, + 1313, "[e_sanction_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1305 + 1306 ], "min": [ - 1306 + 1307 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_bool_exp": { "_and": [ - 1300 + 1301 ], "_not": [ - 1300 + 1301 ], "_or": [ - 1300 + 1301 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_constraint": {}, "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 1302 + 1303 ], "_in": [ - 1302 + 1303 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1302 + 1303 ], "_nin": [ - 1302 + 1303 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1297 + 1298 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 1304 + 1305 ], "on_conflict": [ - 1309 + 1310 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_on_conflict": { "constraint": [ - 1301 + 1302 ], "update_columns": [ - 1316 + 1317 ], "where": [ - 1300 + 1301 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_select_column": {}, "e_sanction_types_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 1315 + 1316 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 1313 + 1314 ], "where": [ - 1300 + 1301 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses": { "description": [ - 83 + 84 ], "scrim_requests": [ - 4808, + 4804, { "distinct_on": [ - 4832, + 4828, "[team_scrim_requests_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4830, + 4826, "[team_scrim_requests_order_by!]" ], "where": [ - 4819 + 4815 ] } ], "scrim_requests_aggregate": [ - 4809, + 4805, { "distinct_on": [ - 4832, + 4828, "[team_scrim_requests_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4830, + 4826, "[team_scrim_requests_order_by!]" ], "where": [ - 4819 + 4815 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 1320 + 1321 ], "nodes": [ - 1318 + 1319 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1332, + 1333, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1326 + 1327 ], "min": [ - 1327 + 1328 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 1321 + 1322 ], "_not": [ - 1321 + 1322 ], "_or": [ - 1321 + 1322 ], "description": [ - 85 + 86 ], "scrim_requests": [ - 4819 + 4815 ], "scrim_requests_aggregate": [ - 4810 + 4806 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_constraint": {}, "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 1323 + 1324 ], "_in": [ - 1323 + 1324 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1323 + 1324 ], "_nin": [ - 1323 + 1324 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_insert_input": { "description": [ - 83 + 84 ], "scrim_requests": [ - 4816 + 4812 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1318 + 1319 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 1322 + 1323 ], "update_columns": [ - 1336 + 1337 ], "where": [ - 1321 + 1322 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_order_by": { "description": [ - 3377 + 3373 ], "scrim_requests_aggregate": [ - 4815 + 4811 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_select_column": {}, "e_scrim_request_statuses_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 1335 + 1336 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 1333 + 1334 ], "where": [ - 1321 + 1322 ], "__typename": [ - 83 + 84 ] }, "e_server_types": { "description": [ - 83 + 84 ], "servers": [ - 4476, + 4472, { "distinct_on": [ - 4505, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4502, + 4498, "[servers_order_by!]" ], "where": [ - 4488 + 4484 ] } ], "servers_aggregate": [ - 4477, + 4473, { "distinct_on": [ - 4505, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4502, + 4498, "[servers_order_by!]" ], "where": [ - 4488 + 4484 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_server_types_aggregate": { "aggregate": [ - 1340 + 1341 ], "nodes": [ - 1338 + 1339 ], "__typename": [ - 83 + 84 ] }, "e_server_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1352, + 1353, "[e_server_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1346 + 1347 ], "min": [ - 1347 + 1348 ], "__typename": [ - 83 + 84 ] }, "e_server_types_bool_exp": { "_and": [ - 1341 + 1342 ], "_not": [ - 1341 + 1342 ], "_or": [ - 1341 + 1342 ], "description": [ - 85 + 86 ], "servers": [ - 4488 + 4484 ], "servers_aggregate": [ - 4478 + 4474 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_server_types_constraint": {}, "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 1343 + 1344 ], "_in": [ - 1343 + 1344 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1343 + 1344 ], "_nin": [ - 1343 + 1344 ], "__typename": [ - 83 + 84 ] }, "e_server_types_insert_input": { "description": [ - 83 + 84 ], "servers": [ - 4485 + 4481 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_server_types_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_server_types_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_server_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1338 + 1339 ], "__typename": [ - 83 + 84 ] }, "e_server_types_on_conflict": { "constraint": [ - 1342 + 1343 ], "update_columns": [ - 1356 + 1357 ], "where": [ - 1341 + 1342 ], "__typename": [ - 83 + 84 ] }, "e_server_types_order_by": { "description": [ - 3377 + 3373 ], "servers_aggregate": [ - 4483 + 4479 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_server_types_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_server_types_select_column": {}, "e_server_types_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_server_types_stream_cursor_input": { "initial_value": [ - 1355 + 1356 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_server_types_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 1353 + 1354 ], "where": [ - 1341 + 1342 ], "__typename": [ - 83 + 84 ] }, "e_sides": { "description": [ - 83 + 84 ], "match_map_lineup_1": [ - 2977, + 2973, { "distinct_on": [ - 2999, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2997, + 2993, "[match_maps_order_by!]" ], "where": [ - 2986 + 2982 ] } ], "match_map_lineup_1_aggregate": [ - 2978, + 2974, { "distinct_on": [ - 2999, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2997, + 2993, "[match_maps_order_by!]" ], "where": [ - 2986 + 2982 ] } ], "match_map_lineup_2": [ - 2977, + 2973, { "distinct_on": [ - 2999, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2997, + 2993, "[match_maps_order_by!]" ], "where": [ - 2986 + 2982 ] } ], "match_map_lineup_2_aggregate": [ - 2978, + 2974, { "distinct_on": [ - 2999, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2997, + 2993, "[match_maps_order_by!]" ], "where": [ - 2986 + 2982 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_sides_aggregate": { "aggregate": [ - 1360 + 1361 ], "nodes": [ - 1358 + 1359 ], "__typename": [ - 83 + 84 ] }, "e_sides_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1372, + 1373, "[e_sides_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1366 + 1367 ], "min": [ - 1367 + 1368 ], "__typename": [ - 83 + 84 ] }, "e_sides_bool_exp": { "_and": [ - 1361 + 1362 ], "_not": [ - 1361 + 1362 ], "_or": [ - 1361 + 1362 ], "description": [ - 85 + 86 ], "match_map_lineup_1": [ - 2986 + 2982 ], "match_map_lineup_1_aggregate": [ - 2979 + 2975 ], "match_map_lineup_2": [ - 2986 + 2982 ], "match_map_lineup_2_aggregate": [ - 2979 + 2975 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_sides_constraint": {}, "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 1363 + 1364 ], "_in": [ - 1363 + 1364 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1363 + 1364 ], "_nin": [ - 1363 + 1364 ], "__typename": [ - 83 + 84 ] }, "e_sides_insert_input": { "description": [ - 83 + 84 ], "match_map_lineup_1": [ - 2983 + 2979 ], "match_map_lineup_2": [ - 2983 + 2979 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_sides_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_sides_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_sides_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1358 + 1359 ], "__typename": [ - 83 + 84 ] }, "e_sides_on_conflict": { "constraint": [ - 1362 + 1363 ], "update_columns": [ - 1376 + 1377 ], "where": [ - 1361 + 1362 ], "__typename": [ - 83 + 84 ] }, "e_sides_order_by": { "description": [ - 3377 + 3373 ], "match_map_lineup_1_aggregate": [ - 2982 + 2978 ], "match_map_lineup_2_aggregate": [ - 2982 + 2978 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_sides_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_sides_select_column": {}, "e_sides_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_sides_stream_cursor_input": { "initial_value": [ - 1375 + 1376 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_sides_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 1373 + 1374 ], "where": [ - 1361 + 1362 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_aggregate": { "aggregate": [ - 1380 + 1381 ], "nodes": [ - 1378 + 1379 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1392, + 1393, "[e_system_alert_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1386 + 1387 ], "min": [ - 1387 + 1388 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_bool_exp": { "_and": [ - 1381 + 1382 ], "_not": [ - 1381 + 1382 ], "_or": [ - 1381 + 1382 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_constraint": {}, "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 1383 + 1384 ], "_in": [ - 1383 + 1384 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1383 + 1384 ], "_nin": [ - 1383 + 1384 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1378 + 1379 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_on_conflict": { "constraint": [ - 1382 + 1383 ], "update_columns": [ - 1396 + 1397 ], "where": [ - 1381 + 1382 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_select_column": {}, "e_system_alert_types_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 1395 + 1396 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 1393 + 1394 ], "where": [ - 1381 + 1382 ], "__typename": [ - 83 + 84 ] }, "e_team_roles": { "description": [ - 83 + 84 ], "team_rosters": [ - 4667, + 4663, { "distinct_on": [ - 4690, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4688, + 4684, "[team_roster_order_by!]" ], "where": [ - 4678 + 4674 ] } ], "team_rosters_aggregate": [ - 4668, + 4664, { "distinct_on": [ - 4690, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4688, + 4684, "[team_roster_order_by!]" ], "where": [ - 4678 + 4674 ] } ], "tournament_team_rosters": [ - 5311, + 5307, { "distinct_on": [ - 5332, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5330, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5320 + 5316 ] } ], "tournament_team_rosters_aggregate": [ - 5312, + 5308, { "distinct_on": [ - 5332, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5330, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5320 + 5316 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_aggregate": { "aggregate": [ - 1400 + 1401 ], "nodes": [ - 1398 + 1399 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1413, + 1414, "[e_team_roles_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1406 + 1407 ], "min": [ - 1407 + 1408 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_bool_exp": { "_and": [ - 1401 + 1402 ], "_not": [ - 1401 + 1402 ], "_or": [ - 1401 + 1402 ], "description": [ - 85 + 86 ], "team_rosters": [ - 4678 + 4674 ], "team_rosters_aggregate": [ - 4669 + 4665 ], "tournament_team_rosters": [ - 5320 + 5316 ], "tournament_team_rosters_aggregate": [ - 5313 + 5309 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_constraint": {}, "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 1403 + 1404 ], "_in": [ - 1403 + 1404 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1403 + 1404 ], "_nin": [ - 1403 + 1404 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_insert_input": { "description": [ - 83 + 84 ], "team_rosters": [ - 4675 + 4671 ], "tournament_team_rosters": [ - 5317 + 5313 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1398 + 1399 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_obj_rel_insert_input": { "data": [ - 1405 + 1406 ], "on_conflict": [ - 1410 + 1411 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_on_conflict": { "constraint": [ - 1402 + 1403 ], "update_columns": [ - 1417 + 1418 ], "where": [ - 1401 + 1402 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_order_by": { "description": [ - 3377 + 3373 ], "team_rosters_aggregate": [ - 4674 + 4670 ], "tournament_team_rosters_aggregate": [ - 5316 + 5312 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_select_column": {}, "e_team_roles_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 1416 + 1417 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 1414 + 1415 ], "where": [ - 1401 + 1402 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 1421 + 1422 ], "nodes": [ - 1419 + 1420 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1433, + 1434, "[e_team_roster_statuses_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1427 + 1428 ], "min": [ - 1428 + 1429 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_bool_exp": { "_and": [ - 1422 + 1423 ], "_not": [ - 1422 + 1423 ], "_or": [ - 1422 + 1423 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_constraint": {}, "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 1424 + 1425 ], "_in": [ - 1424 + 1425 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1424 + 1425 ], "_nin": [ - 1424 + 1425 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1419 + 1420 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 1423 + 1424 ], "update_columns": [ - 1437 + 1438 ], "where": [ - 1422 + 1423 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_select_column": {}, "e_team_roster_statuses_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 1436 + 1437 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 1434 + 1435 ], "where": [ - 1422 + 1423 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_aggregate": { "aggregate": [ - 1441 + 1442 ], "nodes": [ - 1439 + 1440 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1453, + 1454, "[e_timeout_settings_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1447 + 1448 ], "min": [ - 1448 + 1449 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_bool_exp": { "_and": [ - 1442 + 1443 ], "_not": [ - 1442 + 1443 ], "_or": [ - 1442 + 1443 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_constraint": {}, "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 1444 + 1445 ], "_in": [ - 1444 + 1445 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1444 + 1445 ], "_nin": [ - 1444 + 1445 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1439 + 1440 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_on_conflict": { "constraint": [ - 1443 + 1444 ], "update_columns": [ - 1457 + 1458 ], "where": [ - 1442 + 1443 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_select_column": {}, "e_timeout_settings_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 1456 + 1457 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 1454 + 1455 ], "where": [ - 1442 + 1443 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories": { "description": [ - 83 + 84 ], "tournament_categories": [ - 5048, + 5044, { "distinct_on": [ - 5066, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5064, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 5055 + 5051 ] } ], "tournament_categories_aggregate": [ - 5049, + 5045, { "distinct_on": [ - 5066, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5064, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 5055 + 5051 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_aggregate": { "aggregate": [ - 1461 + 1462 ], "nodes": [ - 1459 + 1460 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1474, + 1475, "[e_tournament_categories_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1467 + 1468 ], "min": [ - 1468 + 1469 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_bool_exp": { "_and": [ - 1462 + 1463 ], "_not": [ - 1462 + 1463 ], "_or": [ - 1462 + 1463 ], "description": [ - 85 + 86 ], "tournament_categories": [ - 5055 + 5051 ], "tournament_categories_aggregate": [ - 5050 + 5046 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_constraint": {}, "e_tournament_categories_enum": {}, "e_tournament_categories_enum_comparison_exp": { "_eq": [ - 1464 + 1465 ], "_in": [ - 1464 + 1465 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1464 + 1465 ], "_nin": [ - 1464 + 1465 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_insert_input": { "description": [ - 83 + 84 ], "tournament_categories": [ - 5054 + 5050 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1459 + 1460 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_obj_rel_insert_input": { "data": [ - 1466 + 1467 ], "on_conflict": [ - 1471 + 1472 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_on_conflict": { "constraint": [ - 1463 + 1464 ], "update_columns": [ - 1478 + 1479 ], "where": [ - 1462 + 1463 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_order_by": { "description": [ - 3377 + 3373 ], "tournament_categories_aggregate": [ - 5053 + 5049 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_select_column": {}, "e_tournament_categories_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_stream_cursor_input": { "initial_value": [ - 1477 + 1478 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_categories_update_column": {}, "e_tournament_categories_updates": { "_set": [ - 1475 + 1476 ], "where": [ - 1462 + 1463 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types": { "description": [ - 83 + 84 ], "tournament_stages": [ - 5219, + 5215, { "distinct_on": [ - 5248, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5245, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 5231 + 5227 ] } ], "tournament_stages_aggregate": [ - 5220, + 5216, { "distinct_on": [ - 5248, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5245, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 5231 + 5227 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 1482 + 1483 ], "nodes": [ - 1480 + 1481 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1495, + 1496, "[e_tournament_stage_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1488 + 1489 ], "min": [ - 1489 + 1490 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_bool_exp": { "_and": [ - 1483 + 1484 ], "_not": [ - 1483 + 1484 ], "_or": [ - 1483 + 1484 ], "description": [ - 85 + 86 ], "tournament_stages": [ - 5231 + 5227 ], "tournament_stages_aggregate": [ - 5221 + 5217 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_constraint": {}, "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 1485 + 1486 ], "_in": [ - 1485 + 1486 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1485 + 1486 ], "_nin": [ - 1485 + 1486 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_insert_input": { "description": [ - 83 + 84 ], "tournament_stages": [ - 5228 + 5224 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1480 + 1481 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 1487 + 1488 ], "on_conflict": [ - 1492 + 1493 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 1484 + 1485 ], "update_columns": [ - 1499 + 1500 ], "where": [ - 1483 + 1484 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_order_by": { "description": [ - 3377 + 3373 ], "tournament_stages_aggregate": [ - 5226 + 5222 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_select_column": {}, "e_tournament_stage_types_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1498 + 1499 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1496 + 1497 ], "where": [ - 1483 + 1484 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status": { "description": [ - 83 + 84 ], "tournaments": [ - 5394, + 5390, { "distinct_on": [ - 5428, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5426, + 5422, "[tournaments_order_by!]" ], "where": [ - 5415 + 5411 ] } ], "tournaments_aggregate": [ - 5395, + 5391, { "distinct_on": [ - 5428, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5426, + 5422, "[tournaments_order_by!]" ], "where": [ - 5415 + 5411 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_aggregate": { "aggregate": [ - 1503 + 1504 ], "nodes": [ - 1501 + 1502 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1516, + 1517, "[e_tournament_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1509 + 1510 ], "min": [ - 1510 + 1511 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_bool_exp": { "_and": [ - 1504 + 1505 ], "_not": [ - 1504 + 1505 ], "_or": [ - 1504 + 1505 ], "description": [ - 85 + 86 ], "tournaments": [ - 5415 + 5411 ], "tournaments_aggregate": [ - 5396 + 5392 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_constraint": {}, "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1506 + 1507 ], "_in": [ - 1506 + 1507 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1506 + 1507 ], "_nin": [ - 1506 + 1507 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_insert_input": { "description": [ - 83 + 84 ], "tournaments": [ - 5412 + 5408 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1501 + 1502 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1508 + 1509 ], "on_conflict": [ - 1513 + 1514 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_on_conflict": { "constraint": [ - 1505 + 1506 ], "update_columns": [ - 1520 + 1521 ], "where": [ - 1504 + 1505 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_order_by": { "description": [ - 3377 + 3373 ], "tournaments_aggregate": [ - 5411 + 5407 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_select_column": {}, "e_tournament_status_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1519 + 1520 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1517 + 1518 ], "where": [ - 1504 + 1505 ], "__typename": [ - 83 + 84 ] }, "e_utility_types": { "description": [ - 83 + 84 ], "player_utilities": [ - 4261, + 4257, { "distinct_on": [ - 4282, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4280, + 4276, "[player_utility_order_by!]" ], "where": [ - 4270 + 4266 ] } ], "player_utilities_aggregate": [ - 4262, + 4258, { "distinct_on": [ - 4282, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4280, + 4276, "[player_utility_order_by!]" ], "where": [ - 4270 + 4266 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_aggregate": { "aggregate": [ - 1524 + 1525 ], "nodes": [ - 1522 + 1523 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1536, + 1537, "[e_utility_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1530 + 1531 ], "min": [ - 1531 + 1532 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_bool_exp": { "_and": [ - 1525 + 1526 ], "_not": [ - 1525 + 1526 ], "_or": [ - 1525 + 1526 ], "description": [ - 85 + 86 ], "player_utilities": [ - 4270 + 4266 ], "player_utilities_aggregate": [ - 4263 + 4259 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_constraint": {}, "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1527 + 1528 ], "_in": [ - 1527 + 1528 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1527 + 1528 ], "_nin": [ - 1527 + 1528 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_insert_input": { "description": [ - 83 + 84 ], "player_utilities": [ - 4267 + 4263 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1522 + 1523 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_on_conflict": { "constraint": [ - 1526 + 1527 ], "update_columns": [ - 1540 + 1541 ], "where": [ - 1525 + 1526 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_order_by": { "description": [ - 3377 + 3373 ], "player_utilities_aggregate": [ - 4266 + 4262 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_select_column": {}, "e_utility_types_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1539 + 1540 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1537 + 1538 ], "where": [ - 1525 + 1526 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types": { "description": [ - 83 + 84 ], "match_veto_picks": [ - 2949, + 2945, { "distinct_on": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2967, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2958 + 2954 ] } ], "match_veto_picks_aggregate": [ - 2950, + 2946, { "distinct_on": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2967, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2958 + 2954 ] } ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1544 + 1545 ], "nodes": [ - 1542 + 1543 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1556, + 1557, "[e_veto_pick_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1550 + 1551 ], "min": [ - 1551 + 1552 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_bool_exp": { "_and": [ - 1545 + 1546 ], "_not": [ - 1545 + 1546 ], "_or": [ - 1545 + 1546 ], "description": [ - 85 + 86 ], "match_veto_picks": [ - 2958 + 2954 ], "match_veto_picks_aggregate": [ - 2951 + 2947 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_constraint": {}, "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1547 + 1548 ], "_in": [ - 1547 + 1548 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1547 + 1548 ], "_nin": [ - 1547 + 1548 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_insert_input": { "description": [ - 83 + 84 ], "match_veto_picks": [ - 2957 + 2953 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1542 + 1543 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1546 + 1547 ], "update_columns": [ - 1560 + 1561 ], "where": [ - 1545 + 1546 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_order_by": { "description": [ - 3377 + 3373 ], "match_veto_picks_aggregate": [ - 2956 + 2952 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_select_column": {}, "e_veto_pick_types_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1559 + 1560 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1557 + 1558 ], "where": [ - 1545 + 1546 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_aggregate": { "aggregate": [ - 1564 + 1565 ], "nodes": [ - 1562 + 1563 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1576, + 1577, "[e_winning_reasons_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1570 + 1571 ], "min": [ - 1571 + 1572 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_bool_exp": { "_and": [ - 1565 + 1566 ], "_not": [ - 1565 + 1566 ], "_or": [ - 1565 + 1566 ], "description": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_constraint": {}, "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1567 + 1568 ], "_in": [ - 1567 + 1568 ], "_is_null": [ - 5 + 6 ], "_neq": [ - 1567 + 1568 ], "_nin": [ - 1567 + 1568 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_insert_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_max_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_min_fields": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1562 + 1563 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_on_conflict": { "constraint": [ - 1566 + 1567 ], "update_columns": [ - 1580 + 1581 ], "where": [ - 1565 + 1566 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_order_by": { "description": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_select_column": {}, "e_winning_reasons_set_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1579 + 1580 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_stream_cursor_value_input": { "description": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1577 + 1578 ], "where": [ - 1565 + 1566 ], "__typename": [ - 83 + 84 ] }, "event_match_links": { "created_at": [ - 4958 + 4954 ], "event": [ - 1813 + 1814 ], "event_id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_match_links_aggregate": { "aggregate": [ - 1584 + 1585 ], "nodes": [ - 1582 + 1583 ], "__typename": [ - 83 + 84 ] }, "event_match_links_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1594, + 1595, "[event_match_links_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1588 + 1589 ], "min": [ - 1589 + 1590 ], "__typename": [ - 83 + 84 ] }, "event_match_links_bool_exp": { "_and": [ - 1585 + 1586 ], "_not": [ - 1585 + 1586 ], "_or": [ - 1585 + 1586 ], "created_at": [ - 4959 + 4955 ], "event": [ - 1817 + 1818 ], "event_id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "event_match_links_constraint": {}, "event_match_links_insert_input": { "created_at": [ - 4958 + 4954 ], "event": [ - 1824 + 1825 ], "event_id": [ - 5458 + 5454 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_match_links_max_fields": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_match_links_min_fields": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_match_links_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1582 + 1583 ], "__typename": [ - 83 + 84 ] }, "event_match_links_on_conflict": { "constraint": [ - 1586 + 1587 ], "update_columns": [ - 1598 + 1599 ], "where": [ - 1585 + 1586 ], "__typename": [ - 83 + 84 ] }, "event_match_links_order_by": { "created_at": [ - 3377 + 3373 ], "event": [ - 1826 + 1827 ], "event_id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_match_links_pk_columns_input": { "event_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_match_links_select_column": {}, "event_match_links_set_input": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_match_links_stream_cursor_input": { "initial_value": [ - 1597 + 1598 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "event_match_links_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_match_links_update_column": {}, "event_match_links_updates": { "_set": [ - 1595 + 1596 ], "where": [ - 1585 + 1586 ], "__typename": [ - 83 + 84 ] }, "event_media": { "created_at": [ - 4958 + 4954 ], "event": [ - 1813 + 1814 ], "event_id": [ - 5458 + 5454 ], "external_url": [ - 83 + 84 ], "filename": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "mime_type": [ - 83 + 84 ], "players": [ - 1622, + 1623, { "distinct_on": [ - 1643, + 1644, "[event_media_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1641, + 1642, "[event_media_players_order_by!]" ], "where": [ - 1631 + 1632 ] } ], "players_aggregate": [ - 1623, + 1624, { "distinct_on": [ - 1643, + 1644, "[event_media_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1641, + 1642, "[event_media_players_order_by!]" ], "where": [ - 1631 + 1632 ] } ], "size": [ - 268 + 269 ], "thumbnail_filename": [ - 83 + 84 ], "title": [ - 83 + 84 ], "uploader": [ - 4335 + 4331 ], "uploader_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_aggregate": { "aggregate": [ - 1604 + 1605 ], "nodes": [ - 1600 + 1601 ], "__typename": [ - 83 + 84 ] }, "event_media_aggregate_bool_exp": { "count": [ - 1603 + 1604 ], "__typename": [ - 83 + 84 ] }, "event_media_aggregate_bool_exp_count": { "arguments": [ - 1663 + 1664 ], "distinct": [ - 5 + 6 ], "filter": [ - 1609 + 1610 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "event_media_aggregate_fields": { "avg": [ - 1607 + 1608 ], "count": [ - 40, + 41, { "columns": [ - 1663, + 1664, "[event_media_select_column!]" ], "distinct": [ - 5 + 6 ] } ], - "max": [ - 1613 - ], - "min": [ - 1615 - ], - "stddev": [ - 1665 - ], - "stddev_pop": [ - 1667 - ], - "stddev_samp": [ - 1669 - ], - "sum": [ - 1673 - ], - "var_pop": [ - 1677 - ], - "var_samp": [ - 1679 - ], - "variance": [ - 1681 - ], - "__typename": [ - 83 - ] - }, - "event_media_aggregate_order_by": { - "avg": [ - 1608 - ], - "count": [ - 3377 - ], "max": [ 1614 ], @@ -24366,4550 +24345,4588 @@ export default { 1682 ], "__typename": [ - 83 + 84 + ] + }, + "event_media_aggregate_order_by": { + "avg": [ + 1609 + ], + "count": [ + 3373 + ], + "max": [ + 1615 + ], + "min": [ + 1617 + ], + "stddev": [ + 1667 + ], + "stddev_pop": [ + 1669 + ], + "stddev_samp": [ + 1671 + ], + "sum": [ + 1675 + ], + "var_pop": [ + 1679 + ], + "var_samp": [ + 1681 + ], + "variance": [ + 1683 + ], + "__typename": [ + 84 ] }, "event_media_arr_rel_insert_input": { "data": [ - 1612 + 1613 ], "on_conflict": [ - 1619 + 1620 ], "__typename": [ - 83 + 84 ] }, "event_media_avg_fields": { "size": [ - 31 + 32 ], "uploader_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_media_avg_order_by": { "size": [ - 3377 + 3373 ], "uploader_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_bool_exp": { "_and": [ - 1609 + 1610 ], "_not": [ - 1609 + 1610 ], "_or": [ - 1609 + 1610 ], "created_at": [ - 4959 + 4955 ], "event": [ - 1817 + 1818 ], "event_id": [ - 5460 + 5456 ], "external_url": [ - 85 + 86 ], "filename": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "mime_type": [ - 85 + 86 ], "players": [ - 1631 + 1632 ], "players_aggregate": [ - 1624 + 1625 ], "size": [ - 270 + 271 ], "thumbnail_filename": [ - 85 + 86 ], "title": [ - 85 + 86 ], "uploader": [ - 4339 + 4335 ], "uploader_steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "event_media_constraint": {}, "event_media_inc_input": { "size": [ - 268 + 269 ], "uploader_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_insert_input": { "created_at": [ - 4958 + 4954 ], "event": [ - 1824 + 1825 ], "event_id": [ - 5458 + 5454 ], "external_url": [ - 83 + 84 ], "filename": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "mime_type": [ - 83 + 84 ], "players": [ - 1628 + 1629 ], "size": [ - 268 + 269 ], "thumbnail_filename": [ - 83 + 84 ], "title": [ - 83 + 84 ], "uploader": [ - 4346 + 4342 ], "uploader_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_max_fields": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "external_url": [ - 83 + 84 ], "filename": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "mime_type": [ - 83 + 84 ], "size": [ - 268 + 269 ], "thumbnail_filename": [ - 83 + 84 ], "title": [ - 83 + 84 ], "uploader_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_max_order_by": { "created_at": [ - 3377 + 3373 ], "event_id": [ - 3377 + 3373 ], "external_url": [ - 3377 + 3373 ], "filename": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "mime_type": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "thumbnail_filename": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "uploader_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_min_fields": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "external_url": [ - 83 + 84 ], "filename": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "mime_type": [ - 83 + 84 ], "size": [ - 268 + 269 ], "thumbnail_filename": [ - 83 + 84 ], "title": [ - 83 + 84 ], "uploader_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_min_order_by": { "created_at": [ - 3377 + 3373 ], "event_id": [ - 3377 + 3373 ], "external_url": [ - 3377 + 3373 ], "filename": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "mime_type": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "thumbnail_filename": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "uploader_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1600 + 1601 ], "__typename": [ - 83 + 84 ] }, "event_media_obj_rel_insert_input": { "data": [ - 1612 + 1613 ], "on_conflict": [ - 1619 + 1620 ], "__typename": [ - 83 + 84 ] }, "event_media_on_conflict": { "constraint": [ - 1610 + 1611 ], "update_columns": [ - 1675 + 1676 ], "where": [ - 1609 + 1610 ], "__typename": [ - 83 + 84 ] }, "event_media_order_by": { "created_at": [ - 3377 + 3373 ], "event": [ - 1826 + 1827 ], "event_id": [ - 3377 + 3373 ], "external_url": [ - 3377 + 3373 ], "filename": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "mime_type": [ - 3377 + 3373 ], "players_aggregate": [ - 1627 + 1628 ], "size": [ - 3377 + 3373 ], "thumbnail_filename": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "uploader": [ - 4348 + 4344 ], "uploader_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_media_players": { "created_at": [ - 4958 + 4954 ], "media": [ - 1600 + 1601 ], "media_id": [ - 5458 + 5454 ], "player": [ - 4335 + 4331 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_players_aggregate": { "aggregate": [ - 1626 + 1627 ], "nodes": [ - 1622 + 1623 ], "__typename": [ - 83 + 84 ] }, "event_media_players_aggregate_bool_exp": { "count": [ - 1625 + 1626 ], "__typename": [ - 83 + 84 ] }, "event_media_players_aggregate_bool_exp_count": { "arguments": [ - 1643 + 1644 ], "distinct": [ - 5 + 6 ], "filter": [ - 1631 + 1632 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "event_media_players_aggregate_fields": { "avg": [ - 1629 + 1630 ], "count": [ - 40, + 41, { "columns": [ - 1643, + 1644, "[event_media_players_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1635 + 1636 ], "min": [ - 1637 + 1638 ], "stddev": [ - 1645 + 1646 ], "stddev_pop": [ - 1647 + 1648 ], "stddev_samp": [ - 1649 + 1650 ], "sum": [ - 1653 + 1654 ], "var_pop": [ - 1657 + 1658 ], "var_samp": [ - 1659 + 1660 ], "variance": [ - 1661 + 1662 ], "__typename": [ - 83 + 84 ] }, "event_media_players_aggregate_order_by": { "avg": [ - 1630 + 1631 ], "count": [ - 3377 + 3373 ], "max": [ - 1636 + 1637 ], "min": [ - 1638 + 1639 ], "stddev": [ - 1646 + 1647 ], "stddev_pop": [ - 1648 + 1649 ], "stddev_samp": [ - 1650 + 1651 ], "sum": [ - 1654 + 1655 ], "var_pop": [ - 1658 + 1659 ], "var_samp": [ - 1660 + 1661 ], "variance": [ - 1662 + 1663 ], "__typename": [ - 83 + 84 ] }, "event_media_players_arr_rel_insert_input": { "data": [ - 1634 + 1635 ], "on_conflict": [ - 1640 + 1641 ], "__typename": [ - 83 + 84 ] }, "event_media_players_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_media_players_avg_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_players_bool_exp": { "_and": [ - 1631 + 1632 ], "_not": [ - 1631 + 1632 ], "_or": [ - 1631 + 1632 ], "created_at": [ - 4959 + 4955 ], "media": [ - 1609 + 1610 ], "media_id": [ - 5460 + 5456 ], "player": [ - 4339 + 4335 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "event_media_players_constraint": {}, "event_media_players_inc_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_players_insert_input": { "created_at": [ - 4958 + 4954 ], "media": [ - 1618 + 1619 ], "media_id": [ - 5458 + 5454 ], "player": [ - 4346 + 4342 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_players_max_fields": { "created_at": [ - 4958 + 4954 ], "media_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_players_max_order_by": { "created_at": [ - 3377 + 3373 ], "media_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_players_min_fields": { "created_at": [ - 4958 + 4954 ], "media_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_players_min_order_by": { "created_at": [ - 3377 + 3373 ], "media_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_players_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1622 + 1623 ], "__typename": [ - 83 + 84 ] }, "event_media_players_on_conflict": { "constraint": [ - 1632 + 1633 ], "update_columns": [ - 1655 + 1656 ], "where": [ - 1631 + 1632 ], "__typename": [ - 83 + 84 ] }, "event_media_players_order_by": { "created_at": [ - 3377 + 3373 ], "media": [ - 1620 + 1621 ], "media_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_players_pk_columns_input": { "media_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_players_select_column": {}, "event_media_players_set_input": { "created_at": [ - 4958 + 4954 ], "media_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_players_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_media_players_stddev_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_players_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_media_players_stddev_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_players_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_media_players_stddev_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_players_stream_cursor_input": { "initial_value": [ - 1652 + 1653 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "event_media_players_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "media_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_players_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_players_sum_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_players_update_column": {}, "event_media_players_updates": { "_inc": [ - 1633 + 1634 ], "_set": [ - 1644 + 1645 ], "where": [ - 1631 + 1632 ], "__typename": [ - 83 + 84 ] }, "event_media_players_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_media_players_var_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_players_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_media_players_var_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_players_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_media_players_variance_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_select_column": {}, "event_media_set_input": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "external_url": [ - 83 + 84 ], "filename": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "mime_type": [ - 83 + 84 ], "size": [ - 268 + 269 ], "thumbnail_filename": [ - 83 + 84 ], "title": [ - 83 + 84 ], "uploader_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_stddev_fields": { "size": [ - 31 + 32 ], "uploader_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_media_stddev_order_by": { "size": [ - 3377 + 3373 ], "uploader_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_stddev_pop_fields": { "size": [ - 31 + 32 ], "uploader_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_media_stddev_pop_order_by": { "size": [ - 3377 + 3373 ], "uploader_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_stddev_samp_fields": { "size": [ - 31 + 32 ], "uploader_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_media_stddev_samp_order_by": { "size": [ - 3377 + 3373 ], "uploader_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_stream_cursor_input": { "initial_value": [ - 1672 + 1673 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "event_media_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "external_url": [ - 83 + 84 ], "filename": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "mime_type": [ - 83 + 84 ], "size": [ - 268 + 269 ], "thumbnail_filename": [ - 83 + 84 ], "title": [ - 83 + 84 ], "uploader_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_sum_fields": { "size": [ - 268 + 269 ], "uploader_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_media_sum_order_by": { "size": [ - 3377 + 3373 ], "uploader_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_update_column": {}, "event_media_updates": { "_inc": [ - 1611 + 1612 ], "_set": [ - 1664 + 1665 ], "where": [ - 1609 + 1610 ], "__typename": [ - 83 + 84 ] }, "event_media_var_pop_fields": { "size": [ - 31 + 32 ], "uploader_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_media_var_pop_order_by": { "size": [ - 3377 + 3373 ], "uploader_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_var_samp_fields": { "size": [ - 31 + 32 ], "uploader_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_media_var_samp_order_by": { "size": [ - 3377 + 3373 ], "uploader_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_media_variance_fields": { "size": [ - 31 + 32 ], "uploader_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_media_variance_order_by": { "size": [ - 3377 + 3373 ], "uploader_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_organizers": { "created_at": [ - 4958 + 4954 ], "event": [ - 1813 + 1814 ], "event_id": [ - 5458 + 5454 ], "organizer": [ - 4335 + 4331 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_organizers_aggregate": { "aggregate": [ - 1687 + 1688 ], "nodes": [ - 1683 + 1684 ], "__typename": [ - 83 + 84 ] }, "event_organizers_aggregate_bool_exp": { "count": [ - 1686 + 1687 ], "__typename": [ - 83 + 84 ] }, "event_organizers_aggregate_bool_exp_count": { "arguments": [ - 1704 + 1705 ], "distinct": [ - 5 + 6 ], "filter": [ - 1692 + 1693 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "event_organizers_aggregate_fields": { "avg": [ - 1690 + 1691 ], "count": [ - 40, + 41, { "columns": [ - 1704, + 1705, "[event_organizers_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1696 + 1697 ], "min": [ - 1698 + 1699 ], "stddev": [ - 1706 + 1707 ], "stddev_pop": [ - 1708 + 1709 ], "stddev_samp": [ - 1710 + 1711 ], "sum": [ - 1714 + 1715 ], "var_pop": [ - 1718 + 1719 ], "var_samp": [ - 1720 + 1721 ], "variance": [ - 1722 + 1723 ], "__typename": [ - 83 + 84 ] }, "event_organizers_aggregate_order_by": { "avg": [ - 1691 + 1692 ], "count": [ - 3377 + 3373 ], "max": [ - 1697 + 1698 ], "min": [ - 1699 + 1700 ], "stddev": [ - 1707 + 1708 ], "stddev_pop": [ - 1709 + 1710 ], "stddev_samp": [ - 1711 + 1712 ], "sum": [ - 1715 + 1716 ], "var_pop": [ - 1719 + 1720 ], "var_samp": [ - 1721 + 1722 ], "variance": [ - 1723 + 1724 ], "__typename": [ - 83 + 84 ] }, "event_organizers_arr_rel_insert_input": { "data": [ - 1695 + 1696 ], "on_conflict": [ - 1701 + 1702 ], "__typename": [ - 83 + 84 ] }, "event_organizers_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_organizers_avg_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_organizers_bool_exp": { "_and": [ - 1692 + 1693 ], "_not": [ - 1692 + 1693 ], "_or": [ - 1692 + 1693 ], "created_at": [ - 4959 + 4955 ], "event": [ - 1817 + 1818 ], "event_id": [ - 5460 + 5456 ], "organizer": [ - 4339 + 4335 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "event_organizers_constraint": {}, "event_organizers_inc_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_organizers_insert_input": { "created_at": [ - 4958 + 4954 ], "event": [ - 1824 + 1825 ], "event_id": [ - 5458 + 5454 ], "organizer": [ - 4346 + 4342 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_organizers_max_fields": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_organizers_max_order_by": { "created_at": [ - 3377 + 3373 ], "event_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_organizers_min_fields": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_organizers_min_order_by": { "created_at": [ - 3377 + 3373 ], "event_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_organizers_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1683 + 1684 ], "__typename": [ - 83 + 84 ] }, "event_organizers_on_conflict": { "constraint": [ - 1693 + 1694 ], "update_columns": [ - 1716 + 1717 ], "where": [ - 1692 + 1693 ], "__typename": [ - 83 + 84 ] }, "event_organizers_order_by": { "created_at": [ - 3377 + 3373 ], "event": [ - 1826 + 1827 ], "event_id": [ - 3377 + 3373 ], "organizer": [ - 4348 + 4344 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_organizers_pk_columns_input": { "event_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_organizers_select_column": {}, "event_organizers_set_input": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_organizers_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_organizers_stddev_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_organizers_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_organizers_stddev_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_organizers_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_organizers_stddev_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_organizers_stream_cursor_input": { "initial_value": [ - 1713 + 1714 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "event_organizers_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_organizers_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_organizers_sum_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_organizers_update_column": {}, "event_organizers_updates": { "_inc": [ - 1694 + 1695 ], "_set": [ - 1705 + 1706 ], "where": [ - 1692 + 1693 ], "__typename": [ - 83 + 84 ] }, "event_organizers_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_organizers_var_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_organizers_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_organizers_var_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_organizers_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_organizers_variance_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_players": { "created_at": [ - 4958 + 4954 ], "event": [ - 1813 + 1814 ], "event_id": [ - 5458 + 5454 ], "player": [ - 4335 + 4331 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_players_aggregate": { "aggregate": [ - 1728 + 1729 ], "nodes": [ - 1724 + 1725 ], "__typename": [ - 83 + 84 ] }, "event_players_aggregate_bool_exp": { "count": [ - 1727 + 1728 ], "__typename": [ - 83 + 84 ] }, "event_players_aggregate_bool_exp_count": { "arguments": [ - 1745 + 1746 ], "distinct": [ - 5 + 6 ], "filter": [ - 1733 + 1734 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "event_players_aggregate_fields": { "avg": [ - 1731 + 1732 ], "count": [ - 40, + 41, { "columns": [ - 1745, + 1746, "[event_players_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1737 + 1738 ], "min": [ - 1739 + 1740 ], "stddev": [ - 1747 + 1748 ], "stddev_pop": [ - 1749 + 1750 ], "stddev_samp": [ - 1751 + 1752 ], "sum": [ - 1755 + 1756 ], "var_pop": [ - 1759 + 1760 ], "var_samp": [ - 1761 + 1762 ], "variance": [ - 1763 + 1764 ], "__typename": [ - 83 + 84 ] }, "event_players_aggregate_order_by": { "avg": [ - 1732 + 1733 ], "count": [ - 3377 + 3373 ], "max": [ - 1738 + 1739 ], "min": [ - 1740 + 1741 ], "stddev": [ - 1748 + 1749 ], "stddev_pop": [ - 1750 + 1751 ], "stddev_samp": [ - 1752 + 1753 ], "sum": [ - 1756 + 1757 ], "var_pop": [ - 1760 + 1761 ], "var_samp": [ - 1762 + 1763 ], "variance": [ - 1764 + 1765 ], "__typename": [ - 83 + 84 ] }, "event_players_arr_rel_insert_input": { "data": [ - 1736 + 1737 ], "on_conflict": [ - 1742 + 1743 ], "__typename": [ - 83 + 84 ] }, "event_players_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_players_avg_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_players_bool_exp": { "_and": [ - 1733 + 1734 ], "_not": [ - 1733 + 1734 ], "_or": [ - 1733 + 1734 ], "created_at": [ - 4959 + 4955 ], "event": [ - 1817 + 1818 ], "event_id": [ - 5460 + 5456 ], "player": [ - 4339 + 4335 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "event_players_constraint": {}, "event_players_inc_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_players_insert_input": { "created_at": [ - 4958 + 4954 ], "event": [ - 1824 + 1825 ], "event_id": [ - 5458 + 5454 ], "player": [ - 4346 + 4342 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_players_max_fields": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_players_max_order_by": { "created_at": [ - 3377 + 3373 ], "event_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_players_min_fields": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_players_min_order_by": { "created_at": [ - 3377 + 3373 ], "event_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_players_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1724 + 1725 ], "__typename": [ - 83 + 84 ] }, "event_players_on_conflict": { "constraint": [ - 1734 + 1735 ], "update_columns": [ - 1757 + 1758 ], "where": [ - 1733 + 1734 ], "__typename": [ - 83 + 84 ] }, "event_players_order_by": { "created_at": [ - 3377 + 3373 ], "event": [ - 1826 + 1827 ], "event_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_players_pk_columns_input": { "event_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_players_select_column": {}, "event_players_set_input": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_players_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_players_stddev_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_players_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_players_stddev_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_players_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_players_stddev_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_players_stream_cursor_input": { "initial_value": [ - 1754 + 1755 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "event_players_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_players_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "event_players_sum_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_players_update_column": {}, "event_players_updates": { "_inc": [ - 1735 + 1736 ], "_set": [ - 1746 + 1747 ], "where": [ - 1733 + 1734 ], "__typename": [ - 83 + 84 ] }, "event_players_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_players_var_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_players_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_players_var_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_players_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "event_players_variance_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_teams": { "created_at": [ - 4958 + 4954 ], "event": [ - 1813 + 1814 ], "event_id": [ - 5458 + 5454 ], "team": [ - 4909 + 4905 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_teams_aggregate": { "aggregate": [ - 1769 + 1770 ], "nodes": [ - 1765 + 1766 ], "__typename": [ - 83 + 84 ] }, "event_teams_aggregate_bool_exp": { "count": [ - 1768 + 1769 ], "__typename": [ - 83 + 84 ] }, "event_teams_aggregate_bool_exp_count": { "arguments": [ - 1783 + 1784 ], "distinct": [ - 5 + 6 ], "filter": [ - 1772 + 1773 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "event_teams_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1783, + 1784, "[event_teams_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1775 + 1776 ], "min": [ - 1777 + 1778 ], "__typename": [ - 83 + 84 ] }, "event_teams_aggregate_order_by": { "count": [ - 3377 + 3373 ], "max": [ - 1776 + 1777 ], "min": [ - 1778 + 1779 ], "__typename": [ - 83 + 84 ] }, "event_teams_arr_rel_insert_input": { "data": [ - 1774 + 1775 ], "on_conflict": [ - 1780 + 1781 ], "__typename": [ - 83 + 84 ] }, "event_teams_bool_exp": { "_and": [ - 1772 + 1773 ], "_not": [ - 1772 + 1773 ], "_or": [ - 1772 + 1773 ], "created_at": [ - 4959 + 4955 ], "event": [ - 1817 + 1818 ], "event_id": [ - 5460 + 5456 ], "team": [ - 4920 + 4916 ], "team_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "event_teams_constraint": {}, "event_teams_insert_input": { "created_at": [ - 4958 + 4954 ], "event": [ - 1824 + 1825 ], "event_id": [ - 5458 + 5454 ], "team": [ - 4929 + 4925 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_teams_max_fields": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_teams_max_order_by": { "created_at": [ - 3377 + 3373 ], "event_id": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_teams_min_fields": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_teams_min_order_by": { "created_at": [ - 3377 + 3373 ], "event_id": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_teams_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1765 + 1766 ], "__typename": [ - 83 + 84 ] }, "event_teams_on_conflict": { "constraint": [ - 1773 + 1774 ], "update_columns": [ - 1787 + 1788 ], "where": [ - 1772 + 1773 ], "__typename": [ - 83 + 84 ] }, "event_teams_order_by": { "created_at": [ - 3377 + 3373 ], "event": [ - 1826 + 1827 ], "event_id": [ - 3377 + 3373 ], "team": [ - 4931 + 4927 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_teams_pk_columns_input": { "event_id": [ - 5458 + 5454 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_teams_select_column": {}, "event_teams_set_input": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_teams_stream_cursor_input": { "initial_value": [ - 1786 + 1787 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "event_teams_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_teams_update_column": {}, "event_teams_updates": { "_set": [ - 1784 + 1785 ], "where": [ - 1772 + 1773 ], "__typename": [ - 83 + 84 ] }, "event_tournaments": { "created_at": [ - 4958 + 4954 ], "event": [ - 1813 + 1814 ], "event_id": [ - 5458 + 5454 ], "tournament": [ - 5394 + 5390 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_aggregate": { "aggregate": [ - 1793 + 1794 ], "nodes": [ - 1789 + 1790 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_aggregate_bool_exp": { "count": [ - 1792 + 1793 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_aggregate_bool_exp_count": { "arguments": [ - 1807 + 1808 ], "distinct": [ - 5 + 6 ], "filter": [ - 1796 + 1797 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1807, + 1808, "[event_tournaments_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1799 + 1800 ], "min": [ - 1801 + 1802 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_aggregate_order_by": { "count": [ - 3377 + 3373 ], "max": [ - 1800 + 1801 ], "min": [ - 1802 + 1803 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_arr_rel_insert_input": { "data": [ - 1798 + 1799 ], "on_conflict": [ - 1804 + 1805 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_bool_exp": { "_and": [ - 1796 + 1797 ], "_not": [ - 1796 + 1797 ], "_or": [ - 1796 + 1797 ], "created_at": [ - 4959 + 4955 ], "event": [ - 1817 + 1818 ], "event_id": [ - 5460 + 5456 ], "tournament": [ - 5415 + 5411 ], "tournament_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_constraint": {}, "event_tournaments_insert_input": { "created_at": [ - 4958 + 4954 ], "event": [ - 1824 + 1825 ], "event_id": [ - 5458 + 5454 ], "tournament": [ - 5424 + 5420 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_max_fields": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_max_order_by": { "created_at": [ - 3377 + 3373 ], "event_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_min_fields": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_min_order_by": { "created_at": [ - 3377 + 3373 ], "event_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1789 + 1790 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_on_conflict": { "constraint": [ - 1797 + 1798 ], "update_columns": [ - 1811 + 1812 ], "where": [ - 1796 + 1797 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_order_by": { "created_at": [ - 3377 + 3373 ], "event": [ - 1826 + 1827 ], "event_id": [ - 3377 + 3373 ], "tournament": [ - 5426 + 5422 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_pk_columns_input": { "event_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_select_column": {}, "event_tournaments_set_input": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_stream_cursor_input": { "initial_value": [ - 1810 + 1811 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "event_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "event_tournaments_update_column": {}, "event_tournaments_updates": { "_set": [ - 1808 + 1809 ], "where": [ - 1796 + 1797 ], "__typename": [ - 83 + 84 ] }, "events": { "awards": [ - 199, + 200, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "awards_aggregate": [ - 200, + 201, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "banner": [ - 1600 + 1601 ], "banner_media_id": [ - 5458 + 5454 ], "can_upload_media": [ - 5 + 6 ], "can_view": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "ends_at": [ - 4958 + 4954 ], "hide_creator_organizer": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "is_organizer": [ - 5 + 6 ], "media": [ - 1600, + 1601, { "distinct_on": [ - 1663, + 1664, "[event_media_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1620, + 1621, "[event_media_order_by!]" ], "where": [ - 1609 + 1610 ] } ], "media_access": [ - 771 + 772 ], "media_aggregate": [ - 1601, + 1602, { "distinct_on": [ - 1663, + 1664, "[event_media_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1620, + 1621, "[event_media_order_by!]" ], "where": [ - 1609 + 1610 ] } ], "name": [ - 83 + 84 ], "organizer": [ - 4335 + 4331 ], "organizer_steam_id": [ - 268 + 269 ], "organizers": [ - 1683, + 1684, { "distinct_on": [ - 1704, + 1705, "[event_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1702, + 1703, "[event_organizers_order_by!]" ], "where": [ - 1692 + 1693 ] } ], "organizers_aggregate": [ - 1684, + 1685, { "distinct_on": [ - 1704, + 1705, "[event_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1702, + 1703, "[event_organizers_order_by!]" ], "where": [ - 1692 + 1693 ] } ], "player_stats": [ - 5461, + 5457, { "distinct_on": [ - 5487, + 5483, "[v_event_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5486, + 5482, "[v_event_player_stats_order_by!]" ], "where": [ - 5480 + 5476 ] } ], "player_stats_aggregate": [ - 5462, + 5458, { "distinct_on": [ - 5487, + 5483, "[v_event_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5486, + 5482, "[v_event_player_stats_order_by!]" ], "where": [ - 5480 + 5476 ] } ], "players": [ - 1724, + 1725, { "distinct_on": [ - 1745, + 1746, "[event_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1743, + 1744, "[event_players_order_by!]" ], "where": [ - 1733 + 1734 ] } ], "players_aggregate": [ - 1725, + 1726, { "distinct_on": [ - 1745, + 1746, "[event_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1743, + 1744, "[event_players_order_by!]" ], "where": [ - 1733 + 1734 ] } ], "starts_at": [ - 4958 + 4954 ], "teams": [ - 1765, + 1766, { "distinct_on": [ - 1783, + 1784, "[event_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1781, + 1782, "[event_teams_order_by!]" ], "where": [ - 1772 + 1773 ] } ], "teams_aggregate": [ - 1766, + 1767, { "distinct_on": [ - 1783, + 1784, "[event_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1781, + 1782, "[event_teams_order_by!]" ], "where": [ - 1772 + 1773 ] } ], "tournaments": [ - 1789, + 1790, { "distinct_on": [ - 1807, + 1808, "[event_tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1805, + 1806, "[event_tournaments_order_by!]" ], "where": [ - 1796 + 1797 ] } ], "tournaments_aggregate": [ - 1790, + 1791, { "distinct_on": [ - 1807, + 1808, "[event_tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1805, + 1806, "[event_tournaments_order_by!]" ], "where": [ - 1796 + 1797 ] } ], "visibility": [ - 791 + 792 ], "__typename": [ - 83 + 84 ] }, "events_aggregate": { "aggregate": [ - 1815 + 1816 ], "nodes": [ - 1813 + 1814 ], "__typename": [ - 83 + 84 ] }, "events_aggregate_fields": { "avg": [ - 1816 + 1817 ], "count": [ - 40, + 41, { "columns": [ - 1828, + 1829, "[events_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1821 + 1822 ], "min": [ - 1822 + 1823 ], "stddev": [ - 1830 + 1831 ], "stddev_pop": [ - 1831 + 1832 ], "stddev_samp": [ - 1832 + 1833 ], "sum": [ - 1835 + 1836 ], "var_pop": [ - 1838 + 1839 ], "var_samp": [ - 1839 + 1840 ], "variance": [ - 1840 + 1841 ], "__typename": [ - 83 + 84 ] }, "events_avg_fields": { "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "events_bool_exp": { "_and": [ - 1817 + 1818 ], "_not": [ - 1817 + 1818 ], "_or": [ - 1817 + 1818 ], "awards": [ - 208 + 209 ], "awards_aggregate": [ - 201 + 202 ], "banner": [ - 1609 + 1610 ], "banner_media_id": [ - 5460 + 5456 ], "can_upload_media": [ - 6 + 7 ], "can_view": [ - 6 + 7 ], "created_at": [ - 4959 + 4955 ], "description": [ - 85 + 86 ], "ends_at": [ - 4959 + 4955 ], "hide_creator_organizer": [ - 6 + 7 ], "id": [ - 5460 + 5456 ], "is_organizer": [ - 6 + 7 ], "media": [ - 1609 + 1610 ], "media_access": [ - 772 + 773 ], "media_aggregate": [ - 1602 + 1603 ], "name": [ - 85 + 86 ], "organizer": [ - 4339 + 4335 ], "organizer_steam_id": [ - 270 + 271 ], "organizers": [ - 1692 + 1693 ], "organizers_aggregate": [ - 1685 + 1686 ], "player_stats": [ - 5480 + 5476 ], "player_stats_aggregate": [ - 5463 + 5459 ], "players": [ - 1733 + 1734 ], "players_aggregate": [ - 1726 + 1727 ], "starts_at": [ - 4959 + 4955 ], "teams": [ - 1772 + 1773 ], "teams_aggregate": [ - 1767 + 1768 ], "tournaments": [ - 1796 + 1797 ], "tournaments_aggregate": [ - 1791 + 1792 ], "visibility": [ - 792 + 793 ], "__typename": [ - 83 + 84 ] }, "events_constraint": {}, "events_inc_input": { "organizer_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "events_insert_input": { "awards": [ - 205 + 206 ], "banner": [ - 1618 + 1619 ], "banner_media_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "ends_at": [ - 4958 + 4954 ], "hide_creator_organizer": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "media": [ - 1606 + 1607 ], "media_access": [ - 771 + 772 ], "name": [ - 83 + 84 ], "organizer": [ - 4346 + 4342 ], "organizer_steam_id": [ - 268 + 269 ], "organizers": [ - 1689 + 1690 ], "player_stats": [ - 5477 + 5473 ], "players": [ - 1730 + 1731 ], "starts_at": [ - 4958 + 4954 ], "teams": [ - 1771 + 1772 ], "tournaments": [ - 1795 + 1796 ], "visibility": [ - 791 + 792 ], "__typename": [ - 83 + 84 ] }, "events_max_fields": { "banner_media_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "ends_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "organizer_steam_id": [ - 268 + 269 ], "starts_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "events_min_fields": { "banner_media_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "ends_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "organizer_steam_id": [ - 268 + 269 ], "starts_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "events_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1813 + 1814 ], "__typename": [ - 83 + 84 ] }, "events_obj_rel_insert_input": { "data": [ - 1820 + 1821 ], "on_conflict": [ - 1825 + 1826 ], "__typename": [ - 83 + 84 ] }, "events_on_conflict": { "constraint": [ - 1818 + 1819 ], "update_columns": [ - 1836 + 1837 ], "where": [ - 1817 + 1818 ], "__typename": [ - 83 + 84 ] }, "events_order_by": { "awards_aggregate": [ - 204 + 205 ], "banner": [ - 1620 + 1621 ], "banner_media_id": [ - 3377 + 3373 ], "can_upload_media": [ - 3377 + 3373 ], "can_view": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "description": [ - 3377 + 3373 ], "ends_at": [ - 3377 + 3373 ], "hide_creator_organizer": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "is_organizer": [ - 3377 + 3373 ], "media_access": [ - 3377 + 3373 ], "media_aggregate": [ - 1605 + 1606 ], "name": [ - 3377 + 3373 ], "organizer": [ - 4348 + 4344 ], "organizer_steam_id": [ - 3377 + 3373 ], "organizers_aggregate": [ - 1688 + 1689 ], "player_stats_aggregate": [ - 5476 + 5472 ], "players_aggregate": [ - 1729 + 1730 ], "starts_at": [ - 3377 + 3373 ], "teams_aggregate": [ - 1770 + 1771 ], "tournaments_aggregate": [ - 1794 + 1795 ], "visibility": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "events_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "events_select_column": {}, "events_set_input": { "banner_media_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "ends_at": [ - 4958 + 4954 ], "hide_creator_organizer": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "media_access": [ - 771 + 772 ], "name": [ - 83 + 84 ], "organizer_steam_id": [ - 268 + 269 ], "starts_at": [ - 4958 + 4954 ], "visibility": [ - 791 + 792 ], "__typename": [ - 83 + 84 ] }, "events_stddev_fields": { "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "events_stddev_pop_fields": { "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "events_stddev_samp_fields": { "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "events_stream_cursor_input": { "initial_value": [ - 1834 + 1835 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "events_stream_cursor_value_input": { "banner_media_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "ends_at": [ - 4958 + 4954 ], "hide_creator_organizer": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "media_access": [ - 771 + 772 ], "name": [ - 83 + 84 ], "organizer_steam_id": [ - 268 + 269 ], "starts_at": [ - 4958 + 4954 ], "visibility": [ - 791 + 792 ], "__typename": [ - 83 + 84 ] }, "events_sum_fields": { "organizer_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "events_update_column": {}, "events_updates": { "_inc": [ - 1819 + 1820 ], "_set": [ - 1829 + 1830 ], "where": [ - 1817 + 1818 ], "__typename": [ - 83 + 84 ] }, "events_var_pop_fields": { "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "events_var_samp_fields": { "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "events_variance_fields": { "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "float8": {}, "float8_comparison_exp": { "_eq": [ - 1841 + 1842 ], "_gt": [ - 1841 + 1842 ], "_gte": [ - 1841 + 1842 ], "_in": [ - 1841 + 1842 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 1841 + 1842 ], "_lte": [ - 1841 + 1842 ], "_neq": [ - 1841 + 1842 ], "_nin": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "friends": { "e_status": [ - 806 + 807 ], "other_player_steam_id": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "status": [ - 811 + 812 ], "__typename": [ - 83 + 84 ] }, "friends_aggregate": { "aggregate": [ - 1845 + 1846 ], "nodes": [ - 1843 + 1844 ], "__typename": [ - 83 + 84 ] }, "friends_aggregate_fields": { "avg": [ - 1846 + 1847 ], "count": [ - 40, + 41, { "columns": [ - 1857, + 1858, "[friends_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1851 + 1852 ], "min": [ - 1852 + 1853 ], "stddev": [ - 1859 + 1860 ], "stddev_pop": [ - 1860 + 1861 ], "stddev_samp": [ - 1861 + 1862 ], "sum": [ - 1864 + 1865 ], "var_pop": [ - 1867 + 1868 ], "var_samp": [ - 1868 + 1869 ], "variance": [ - 1869 + 1870 ], "__typename": [ - 83 + 84 ] }, "friends_avg_fields": { "other_player_steam_id": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "friends_bool_exp": { "_and": [ - 1847 + 1848 ], "_not": [ - 1847 + 1848 ], "_or": [ - 1847 + 1848 ], "e_status": [ - 809 + 810 ], "other_player_steam_id": [ - 270 + 271 ], "player_steam_id": [ - 270 + 271 ], "status": [ - 812 + 813 ], "__typename": [ - 83 + 84 ] }, "friends_constraint": {}, "friends_inc_input": { "other_player_steam_id": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "friends_insert_input": { "e_status": [ - 817 + 818 ], "other_player_steam_id": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "status": [ - 811 + 812 ], "__typename": [ - 83 + 84 ] }, "friends_max_fields": { "other_player_steam_id": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "friends_min_fields": { "other_player_steam_id": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "friends_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1843 + 1844 ], "__typename": [ - 83 + 84 ] }, "friends_on_conflict": { "constraint": [ - 1848 + 1849 ], "update_columns": [ - 1865 + 1866 ], "where": [ - 1847 + 1848 ], "__typename": [ - 83 + 84 ] }, "friends_order_by": { "e_status": [ - 819 + 820 ], "other_player_steam_id": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "friends_pk_columns_input": { "other_player_steam_id": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "friends_select_column": {}, "friends_set_input": { "other_player_steam_id": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "status": [ - 811 + 812 ], "__typename": [ - 83 + 84 ] }, "friends_stddev_fields": { "other_player_steam_id": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "friends_stddev_pop_fields": { "other_player_steam_id": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "friends_stddev_samp_fields": { "other_player_steam_id": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "friends_stream_cursor_input": { "initial_value": [ - 1863 + 1864 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "friends_stream_cursor_value_input": { "other_player_steam_id": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "status": [ - 811 + 812 ], "__typename": [ - 83 + 84 ] }, "friends_sum_fields": { "other_player_steam_id": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "friends_update_column": {}, "friends_updates": { "_inc": [ - 1849 + 1850 ], "_set": [ - 1858 + 1859 ], "where": [ - 1847 + 1848 ], "__typename": [ - 83 + 84 ] }, "friends_var_pop_fields": { "other_player_steam_id": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "friends_var_samp_fields": { "other_player_steam_id": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "friends_variance_fields": { "other_player_steam_id": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins": { "config": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "game_mode": [ - 1920 + 1921 ], "game_mode_id": [ - 5458 + 5454 ], "load_order": [ - 40 + 41 ], "plugin": [ - 2007 + 2003 ], "plugin_slug": [ - 83 + 84 ], "required": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_aggregate": { "aggregate": [ - 1876 + 1877 ], "nodes": [ - 1870 + 1871 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_aggregate_bool_exp": { "bool_and": [ - 1873 + 1874 ], "bool_or": [ - 1874 + 1875 ], "count": [ - 1875 + 1876 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_aggregate_bool_exp_bool_and": { "arguments": [ - 1899 + 1900 ], "distinct": [ - 5 + 6 ], "filter": [ - 1882 + 1883 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_aggregate_bool_exp_bool_or": { "arguments": [ - 1900 + 1901 ], "distinct": [ - 5 + 6 ], "filter": [ - 1882 + 1883 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_aggregate_bool_exp_count": { "arguments": [ - 1898 + 1899 ], "distinct": [ - 5 + 6 ], "filter": [ - 1882 + 1883 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_aggregate_fields": { "avg": [ - 1880 + 1881 ], "count": [ - 40, + 41, { "columns": [ - 1898, + 1899, "[game_mode_plugins_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1889 + 1890 ], "min": [ - 1891 + 1892 ], "stddev": [ - 1902 + 1903 ], "stddev_pop": [ - 1904 + 1905 ], "stddev_samp": [ - 1906 + 1907 ], "sum": [ - 1910 + 1911 ], "var_pop": [ - 1914 + 1915 ], "var_samp": [ - 1916 + 1917 ], "variance": [ - 1918 + 1919 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_aggregate_order_by": { "avg": [ - 1881 + 1882 ], "count": [ - 3377 + 3373 ], "max": [ - 1890 + 1891 ], "min": [ - 1892 + 1893 ], "stddev": [ - 1903 + 1904 ], "stddev_pop": [ - 1905 + 1906 ], "stddev_samp": [ - 1907 + 1908 ], "sum": [ - 1911 + 1912 ], "var_pop": [ - 1915 + 1916 ], "var_samp": [ - 1917 + 1918 ], "variance": [ - 1919 + 1920 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_append_input": { "config": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_arr_rel_insert_input": { "data": [ - 1888 + 1889 ], "on_conflict": [ - 1894 + 1895 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_avg_fields": { "load_order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_avg_order_by": { "load_order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_bool_exp": { "_and": [ - 1882 + 1883 ], "_not": [ - 1882 + 1883 ], "_or": [ - 1882 + 1883 ], "config": [ - 2193 + 2189 ], "game_mode": [ 1924 ], "game_mode_id": [ - 5460 + 5456 ], "load_order": [ - 41 + 42 ], "plugin": [ - 2012 + 2008 ], "plugin_slug": [ - 85 + 86 ], "required": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_constraint": {}, "game_mode_plugins_delete_at_path_input": { "config": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_delete_elem_input": { "config": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_delete_key_input": { "config": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_inc_input": { "load_order": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_insert_input": { "config": [ - 2191 + 2187 ], "game_mode": [ - 1933 + 1930 ], "game_mode_id": [ - 5458 + 5454 ], "load_order": [ - 40 + 41 ], "plugin": [ - 2021 + 2017 ], "plugin_slug": [ - 83 + 84 ], "required": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_max_fields": { "game_mode_id": [ - 5458 + 5454 ], "load_order": [ - 40 + 41 ], "plugin_slug": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_max_order_by": { "game_mode_id": [ - 3377 + 3373 ], "load_order": [ - 3377 + 3373 ], "plugin_slug": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_min_fields": { "game_mode_id": [ - 5458 + 5454 ], "load_order": [ - 40 + 41 ], "plugin_slug": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_min_order_by": { "game_mode_id": [ - 3377 + 3373 ], "load_order": [ - 3377 + 3373 ], "plugin_slug": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1870 + 1871 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_on_conflict": { "constraint": [ - 1883 + 1884 ], "update_columns": [ - 1912 + 1913 ], "where": [ - 1882 + 1883 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_order_by": { "config": [ - 3377 + 3373 ], "game_mode": [ - 1935 + 1932 ], "game_mode_id": [ - 3377 + 3373 ], "load_order": [ - 3377 + 3373 ], "plugin": [ - 2023 + 2019 ], "plugin_slug": [ - 3377 + 3373 ], "required": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_pk_columns_input": { "game_mode_id": [ - 5458 + 5454 ], "plugin_slug": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_prepend_input": { "config": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_select_column": {}, @@ -28917,396 +28934,374 @@ export default { "game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns": {}, "game_mode_plugins_set_input": { "config": [ - 2191 + 2187 ], "game_mode_id": [ - 5458 + 5454 ], "load_order": [ - 40 + 41 ], "plugin_slug": [ - 83 + 84 ], "required": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_stddev_fields": { "load_order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_stddev_order_by": { "load_order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_stddev_pop_fields": { "load_order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_stddev_pop_order_by": { "load_order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_stddev_samp_fields": { "load_order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_stddev_samp_order_by": { "load_order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_stream_cursor_input": { "initial_value": [ - 1909 + 1910 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_stream_cursor_value_input": { "config": [ - 2191 + 2187 ], "game_mode_id": [ - 5458 + 5454 ], "load_order": [ - 40 + 41 ], "plugin_slug": [ - 83 + 84 ], "required": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_sum_fields": { "load_order": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_sum_order_by": { "load_order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_update_column": {}, "game_mode_plugins_updates": { "_append": [ - 1878 + 1879 ], "_delete_at_path": [ - 1884 + 1885 ], "_delete_elem": [ - 1885 + 1886 ], "_delete_key": [ - 1886 + 1887 ], "_inc": [ - 1887 + 1888 ], "_prepend": [ - 1897 + 1898 ], "_set": [ - 1901 + 1902 ], "where": [ - 1882 + 1883 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_var_pop_fields": { "load_order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_var_pop_order_by": { "load_order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_var_samp_fields": { "load_order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_var_samp_order_by": { "load_order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_variance_fields": { "load_order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_mode_plugins_variance_order_by": { "load_order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_modes": { "archived_at": [ - 4958 + 4954 ], "cfg": [ - 83 + 84 ], "competitive_safe": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "enabled": [ - 5 + 6 ], "extra_game_params": [ - 83 + 84 ], "icon": [ - 83 + 84 ], "id": [ - 5458 - ], - "map_pool": [ - 2634 - ], - "map_pool_id": [ - 5458 - ], - "match_option_defaults": [ - 2191, - { - "path": [ - 83 - ] - } + 5454 ], "match_options": [ - 3019, + 3015, { "distinct_on": [ - 3043, + 3039, "[match_options_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3041, + 3037, "[match_options_order_by!]" ], "where": [ - 3030 + 3026 ] } ], "match_options_aggregate": [ - 3020, + 3016, { "distinct_on": [ - 3043, + 3039, "[match_options_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3041, + 3037, "[match_options_order_by!]" ], "where": [ - 3030 + 3026 ] } ], "name": [ - 83 + 84 ], "plugins": [ - 1870, + 1871, { "distinct_on": [ - 1898, + 1899, "[game_mode_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1895, + 1896, "[game_mode_plugins_order_by!]" ], "where": [ - 1882 + 1883 ] } ], "plugins_aggregate": [ - 1871, + 1872, { "distinct_on": [ - 1898, + 1899, "[game_mode_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1895, + 1896, "[game_mode_plugins_order_by!]" ], "where": [ - 1882 + 1883 ] } ], "runtime_conflicts": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "slug": [ - 83 + 84 ], "supported_runtimes": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "game_modes_aggregate": { "aggregate": [ - 1922 + 1923 ], "nodes": [ - 1920 + 1921 ], "__typename": [ - 83 + 84 ] }, "game_modes_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1938, + 1934, "[game_modes_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1930 + 1927 ], "min": [ - 1931 - ], - "__typename": [ - 83 - ] - }, - "game_modes_append_input": { - "match_option_defaults": [ - 2191 + 1928 ], "__typename": [ - 83 + 84 ] }, "game_modes_bool_exp": { @@ -29320,249 +29315,201 @@ export default { 1924 ], "archived_at": [ - 4959 + 4955 ], "cfg": [ - 85 + 86 ], "competitive_safe": [ - 6 + 7 ], "created_at": [ - 4959 + 4955 ], "description": [ - 85 + 86 ], "enabled": [ - 6 + 7 ], "extra_game_params": [ - 85 + 86 ], "icon": [ - 85 + 86 ], "id": [ - 5460 - ], - "map_pool": [ - 2637 - ], - "map_pool_id": [ - 5460 - ], - "match_option_defaults": [ - 2193 + 5456 ], "match_options": [ - 3030 + 3026 ], "match_options_aggregate": [ - 3021 + 3017 ], "name": [ - 85 + 86 ], "plugins": [ - 1882 + 1883 ], "plugins_aggregate": [ - 1872 + 1873 ], "runtime_conflicts": [ - 2193 + 2189 ], "slug": [ - 85 + 86 ], "supported_runtimes": [ - 2193 + 2189 ], "updated_at": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "game_modes_constraint": {}, - "game_modes_delete_at_path_input": { - "match_option_defaults": [ - 83 - ], - "__typename": [ - 83 - ] - }, - "game_modes_delete_elem_input": { - "match_option_defaults": [ - 40 - ], - "__typename": [ - 83 - ] - }, - "game_modes_delete_key_input": { - "match_option_defaults": [ - 83 - ], - "__typename": [ - 83 - ] - }, "game_modes_insert_input": { "archived_at": [ - 4958 + 4954 ], "cfg": [ - 83 + 84 ], "competitive_safe": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "enabled": [ - 5 + 6 ], "extra_game_params": [ - 83 + 84 ], "icon": [ - 83 + 84 ], "id": [ - 5458 - ], - "map_pool": [ - 2643 - ], - "map_pool_id": [ - 5458 - ], - "match_option_defaults": [ - 2191 + 5454 ], "match_options": [ - 3027 + 3023 ], "name": [ - 83 + 84 ], "plugins": [ - 1879 + 1880 ], "slug": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "game_modes_max_fields": { "archived_at": [ - 4958 + 4954 ], "cfg": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "extra_game_params": [ - 83 + 84 ], "icon": [ - 83 + 84 ], "id": [ - 5458 - ], - "map_pool_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "slug": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "game_modes_min_fields": { "archived_at": [ - 4958 + 4954 ], "cfg": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "extra_game_params": [ - 83 + 84 ], "icon": [ - 83 + 84 ], "id": [ - 5458 - ], - "map_pool_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "slug": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "game_modes_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1920 + 1921 ], "__typename": [ - 83 + 84 ] }, "game_modes_obj_rel_insert_input": { "data": [ - 1929 + 1926 ], "on_conflict": [ - 1934 + 1931 ], "__typename": [ - 83 + 84 ] }, "game_modes_on_conflict": { @@ -29570,1040 +29517,1014 @@ export default { 1925 ], "update_columns": [ - 1942 + 1938 ], "where": [ 1924 ], "__typename": [ - 83 + 84 ] }, "game_modes_order_by": { "archived_at": [ - 3377 + 3373 ], "cfg": [ - 3377 + 3373 ], "competitive_safe": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "description": [ - 3377 + 3373 ], "enabled": [ - 3377 + 3373 ], "extra_game_params": [ - 3377 + 3373 ], "icon": [ - 3377 + 3373 ], "id": [ - 3377 - ], - "map_pool": [ - 2645 - ], - "map_pool_id": [ - 3377 - ], - "match_option_defaults": [ - 3377 + 3373 ], "match_options_aggregate": [ - 3026 + 3022 ], "name": [ - 3377 + 3373 ], "plugins_aggregate": [ - 1877 + 1878 ], "runtime_conflicts": [ - 3377 + 3373 ], "slug": [ - 3377 + 3373 ], "supported_runtimes": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_modes_pk_columns_input": { "id": [ - 5458 - ], - "__typename": [ - 83 - ] - }, - "game_modes_prepend_input": { - "match_option_defaults": [ - 2191 + 5454 ], "__typename": [ - 83 + 84 ] }, "game_modes_select_column": {}, "game_modes_set_input": { "archived_at": [ - 4958 + 4954 ], "cfg": [ - 83 + 84 ], "competitive_safe": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "enabled": [ - 5 + 6 ], "extra_game_params": [ - 83 + 84 ], "icon": [ - 83 + 84 ], "id": [ - 5458 - ], - "map_pool_id": [ - 5458 - ], - "match_option_defaults": [ - 2191 + 5454 ], "name": [ - 83 + 84 ], "slug": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "game_modes_stream_cursor_input": { "initial_value": [ - 1941 + 1937 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "game_modes_stream_cursor_value_input": { "archived_at": [ - 4958 + 4954 ], "cfg": [ - 83 + 84 ], "competitive_safe": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "enabled": [ - 5 + 6 ], "extra_game_params": [ - 83 + 84 ], "icon": [ - 83 + 84 ], "id": [ - 5458 - ], - "map_pool_id": [ - 5458 - ], - "match_option_defaults": [ - 2191 + 5454 ], "name": [ - 83 + 84 ], "slug": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "game_modes_update_column": {}, "game_modes_updates": { - "_append": [ - 1923 - ], - "_delete_at_path": [ - 1926 - ], - "_delete_elem": [ - 1927 - ], - "_delete_key": [ - 1928 - ], - "_prepend": [ - 1937 - ], "_set": [ - 1939 + 1935 ], "where": [ 1924 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs": { "always_load": [ - 5 + 6 ], "channel": [ - 852 + 853 ], "created_at": [ - 4958 + 4954 + ], + "disable_server_guidelines": [ + 6 ], "enabled": [ - 5 + 6 ], "plugin": [ - 2007 + 2003 ], "plugin_slug": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs_aggregate": { "aggregate": [ - 1946 + 1942 ], "nodes": [ - 1944 + 1940 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 1956, + 1952, "[game_plugin_installs_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1950 + 1946 ], "min": [ - 1951 + 1947 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs_bool_exp": { "_and": [ - 1947 + 1943 ], "_not": [ - 1947 + 1943 ], "_or": [ - 1947 + 1943 ], "always_load": [ - 6 + 7 ], "channel": [ - 853 + 854 ], "created_at": [ - 4959 + 4955 + ], + "disable_server_guidelines": [ + 7 ], "enabled": [ - 6 + 7 ], "plugin": [ - 2012 + 2008 ], "plugin_slug": [ - 85 + 86 ], "updated_at": [ - 4959 + 4955 ], "version": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs_constraint": {}, "game_plugin_installs_insert_input": { "always_load": [ - 5 + 6 ], "channel": [ - 852 + 853 ], "created_at": [ - 4958 + 4954 + ], + "disable_server_guidelines": [ + 6 ], "enabled": [ - 5 + 6 ], "plugin": [ - 2021 + 2017 ], "plugin_slug": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs_max_fields": { "created_at": [ - 4958 + 4954 ], "plugin_slug": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs_min_fields": { "created_at": [ - 4958 + 4954 ], "plugin_slug": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1944 + 1940 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs_on_conflict": { "constraint": [ - 1948 + 1944 ], "update_columns": [ - 1960 + 1956 ], "where": [ - 1947 + 1943 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs_order_by": { "always_load": [ - 3377 + 3373 ], "channel": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 + ], + "disable_server_guidelines": [ + 3373 ], "enabled": [ - 3377 + 3373 ], "plugin": [ - 2023 + 2019 ], "plugin_slug": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "version": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs_pk_columns_input": { "plugin_slug": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs_select_column": {}, "game_plugin_installs_set_input": { "always_load": [ - 5 + 6 ], "channel": [ - 852 + 853 ], "created_at": [ - 4958 + 4954 + ], + "disable_server_guidelines": [ + 6 ], "enabled": [ - 5 + 6 ], "plugin_slug": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs_stream_cursor_input": { "initial_value": [ - 1959 + 1955 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs_stream_cursor_value_input": { "always_load": [ - 5 + 6 ], "channel": [ - 852 + 853 ], "created_at": [ - 4958 + 4954 + ], + "disable_server_guidelines": [ + 6 ], "enabled": [ - 5 + 6 ], "plugin_slug": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugin_installs_update_column": {}, "game_plugin_installs_updates": { "_set": [ - 1957 + 1953 ], "where": [ - 1947 + 1943 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions": { "install_path": [ - 83 + 84 ], "layout": [ - 83 + 84 ], "plugin": [ - 2007 + 2003 ], "plugin_slug": [ - 83 + 84 ], "prerelease": [ - 5 + 6 ], "published_at": [ - 4958 + 4954 ], "runtime": [ - 1262 + 1263 ], "sha256": [ - 83 + 84 ], "size": [ - 40 + 41 ], "url": [ - 83 + 84 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_aggregate": { "aggregate": [ - 1968 + 1964 ], "nodes": [ - 1962 + 1958 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_aggregate_bool_exp": { "bool_and": [ - 1965 + 1961 ], "bool_or": [ - 1966 + 1962 ], "count": [ - 1967 + 1963 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_aggregate_bool_exp_bool_and": { "arguments": [ - 1986 + 1982 ], "distinct": [ - 5 + 6 ], "filter": [ - 1973 + 1969 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_aggregate_bool_exp_bool_or": { "arguments": [ - 1987 + 1983 ], "distinct": [ - 5 + 6 ], "filter": [ - 1973 + 1969 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_aggregate_bool_exp_count": { "arguments": [ - 1985 + 1981 ], "distinct": [ - 5 + 6 ], "filter": [ - 1973 + 1969 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_aggregate_fields": { "avg": [ - 1971 + 1967 ], "count": [ - 40, + 41, { "columns": [ - 1985, + 1981, "[game_plugin_versions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 1977 + 1973 ], "min": [ - 1979 + 1975 ], "stddev": [ - 1989 + 1985 ], "stddev_pop": [ - 1991 + 1987 ], "stddev_samp": [ - 1993 + 1989 ], "sum": [ - 1997 + 1993 ], "var_pop": [ - 2001 + 1997 ], "var_samp": [ - 2003 + 1999 ], "variance": [ - 2005 + 2001 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_aggregate_order_by": { "avg": [ - 1972 + 1968 ], "count": [ - 3377 + 3373 ], "max": [ - 1978 + 1974 ], "min": [ - 1980 + 1976 ], "stddev": [ - 1990 + 1986 ], "stddev_pop": [ - 1992 + 1988 ], "stddev_samp": [ - 1994 + 1990 ], "sum": [ - 1998 + 1994 ], "var_pop": [ - 2002 + 1998 ], "var_samp": [ - 2004 + 2000 ], "variance": [ - 2006 + 2002 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_arr_rel_insert_input": { "data": [ - 1976 + 1972 ], "on_conflict": [ - 1982 + 1978 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_avg_fields": { "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_avg_order_by": { "size": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_bool_exp": { "_and": [ - 1973 + 1969 ], "_not": [ - 1973 + 1969 ], "_or": [ - 1973 + 1969 ], "install_path": [ - 85 + 86 ], "layout": [ - 85 + 86 ], "plugin": [ - 2012 + 2008 ], "plugin_slug": [ - 85 + 86 ], "prerelease": [ - 6 + 7 ], "published_at": [ - 4959 + 4955 ], "runtime": [ - 1263 + 1264 ], "sha256": [ - 85 + 86 ], "size": [ - 41 + 42 ], "url": [ - 85 + 86 ], "version": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_constraint": {}, "game_plugin_versions_inc_input": { "size": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_insert_input": { "install_path": [ - 83 + 84 ], "layout": [ - 83 + 84 ], "plugin": [ - 2021 + 2017 ], "plugin_slug": [ - 83 + 84 ], "prerelease": [ - 5 + 6 ], "published_at": [ - 4958 + 4954 ], "runtime": [ - 1262 + 1263 ], "sha256": [ - 83 + 84 ], "size": [ - 40 + 41 ], "url": [ - 83 + 84 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_max_fields": { "install_path": [ - 83 + 84 ], "layout": [ - 83 + 84 ], "plugin_slug": [ - 83 + 84 ], "published_at": [ - 4958 + 4954 ], "sha256": [ - 83 + 84 ], "size": [ - 40 + 41 ], "url": [ - 83 + 84 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_max_order_by": { "install_path": [ - 3377 + 3373 ], "layout": [ - 3377 + 3373 ], "plugin_slug": [ - 3377 + 3373 ], "published_at": [ - 3377 + 3373 ], "sha256": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "url": [ - 3377 + 3373 ], "version": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_min_fields": { "install_path": [ - 83 + 84 ], "layout": [ - 83 + 84 ], "plugin_slug": [ - 83 + 84 ], "published_at": [ - 4958 + 4954 ], "sha256": [ - 83 + 84 ], "size": [ - 40 + 41 ], "url": [ - 83 + 84 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_min_order_by": { "install_path": [ - 3377 + 3373 ], "layout": [ - 3377 + 3373 ], "plugin_slug": [ - 3377 + 3373 ], "published_at": [ - 3377 + 3373 ], "sha256": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "url": [ - 3377 + 3373 ], "version": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 1962 + 1958 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_on_conflict": { "constraint": [ - 1974 + 1970 ], "update_columns": [ - 1999 + 1995 ], "where": [ - 1973 + 1969 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_order_by": { "install_path": [ - 3377 + 3373 ], "layout": [ - 3377 + 3373 ], "plugin": [ - 2023 + 2019 ], "plugin_slug": [ - 3377 + 3373 ], "prerelease": [ - 3377 + 3373 ], "published_at": [ - 3377 + 3373 ], "runtime": [ - 3377 + 3373 ], "sha256": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "url": [ - 3377 + 3373 ], "version": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_pk_columns_input": { "plugin_slug": [ - 83 + 84 ], "runtime": [ - 1262 + 1263 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_select_column": {}, @@ -30611,1678 +30532,1720 @@ export default { "game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns": {}, "game_plugin_versions_set_input": { "install_path": [ - 83 + 84 ], "layout": [ - 83 + 84 ], "plugin_slug": [ - 83 + 84 ], "prerelease": [ - 5 + 6 ], "published_at": [ - 4958 + 4954 ], "runtime": [ - 1262 + 1263 ], "sha256": [ - 83 + 84 ], "size": [ - 40 + 41 ], "url": [ - 83 + 84 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_stddev_fields": { "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_stddev_order_by": { "size": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_stddev_pop_fields": { "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_stddev_pop_order_by": { "size": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_stddev_samp_fields": { "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_stddev_samp_order_by": { "size": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_stream_cursor_input": { "initial_value": [ - 1996 + 1992 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_stream_cursor_value_input": { "install_path": [ - 83 + 84 ], "layout": [ - 83 + 84 ], "plugin_slug": [ - 83 + 84 ], "prerelease": [ - 5 + 6 ], "published_at": [ - 4958 + 4954 ], "runtime": [ - 1262 + 1263 ], "sha256": [ - 83 + 84 ], "size": [ - 40 + 41 ], "url": [ - 83 + 84 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_sum_fields": { "size": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_sum_order_by": { "size": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_update_column": {}, "game_plugin_versions_updates": { "_inc": [ - 1975 + 1971 ], "_set": [ - 1988 + 1984 ], "where": [ - 1973 + 1969 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_var_pop_fields": { "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_var_pop_order_by": { "size": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_var_samp_fields": { "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_var_samp_order_by": { "size": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_variance_fields": { "size": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_plugin_versions_variance_order_by": { "size": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_plugins": { "author": [ - 83 + 84 ], "config_path": [ - 83 + 84 ], "config_schema": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "cvars": [ - 83 + 84 ], "description": [ - 83 + 84 ], "game_modes": [ - 1870, + 1871, { "distinct_on": [ - 1898, + 1899, "[game_mode_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1895, + 1896, "[game_mode_plugins_order_by!]" ], "where": [ - 1882 + 1883 ] } ], "game_modes_aggregate": [ - 1871, + 1872, { "distinct_on": [ - 1898, + 1899, "[game_mode_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1895, + 1896, "[game_mode_plugins_order_by!]" ], "where": [ - 1882 + 1883 ] } ], "homepage": [ - 83 + 84 ], "hot_swappable": [ - 5 + 6 ], "install_state": [ - 83 + 84 ], "installed_node_count": [ - 40 + 41 ], "kind": [ - 892 + 893 ], "name": [ - 83 + 84 ], "node_installs": [ - 2039, + 2035, { "distinct_on": [ - 2059, + 2055, "[game_server_node_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2057, + 2053, "[game_server_node_plugins_order_by!]" ], "where": [ - 2048 + 2044 ] } ], "node_installs_aggregate": [ - 2040, + 2036, { "distinct_on": [ - 2059, + 2055, "[game_server_node_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2057, + 2053, "[game_server_node_plugins_order_by!]" ], "where": [ - 2048 + 2044 ] } ], "pairs_with": [ - 83 + 84 ], "panel": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], + "requires_server_guidelines_disabled": [ + 6 + ], "requires_service": [ - 83 + 84 ], "slug": [ - 83 + 84 + ], + "source": [ + 84 ], "synced_at": [ - 4958 + 4954 ], "tags": [ - 83 + 84 ], "target_node_count": [ - 40 + 41 ], "verified": [ - 5 + 6 ], "versions": [ - 1962, + 1958, { "distinct_on": [ - 1985, + 1981, "[game_plugin_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1983, + 1979, "[game_plugin_versions_order_by!]" ], "where": [ - 1973 + 1969 ] } ], "versions_aggregate": [ - 1963, + 1959, { "distinct_on": [ - 1985, + 1981, "[game_plugin_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1983, + 1979, "[game_plugin_versions_order_by!]" ], "where": [ - 1973 + 1969 ] } ], "wiring": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "__typename": [ - 83 + 84 ] }, "game_plugins_aggregate": { "aggregate": [ - 2009 + 2005 ], "nodes": [ - 2007 + 2003 ], "__typename": [ - 83 + 84 ] }, "game_plugins_aggregate_fields": { "avg": [ - 2011 + 2007 ], "count": [ - 40, + 41, { "columns": [ - 2026, + 2022, "[game_plugins_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2018 + 2014 ], "min": [ - 2019 + 2015 ], "stddev": [ - 2028 + 2024 ], "stddev_pop": [ - 2029 + 2025 ], "stddev_samp": [ - 2030 + 2026 ], "sum": [ - 2033 + 2029 ], "var_pop": [ - 2036 + 2032 ], "var_samp": [ - 2037 + 2033 ], "variance": [ - 2038 + 2034 ], "__typename": [ - 83 + 84 ] }, "game_plugins_append_input": { "config_schema": [ - 2191 + 2187 ], "panel": [ - 2191 + 2187 ], "wiring": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "game_plugins_avg_fields": { "installed_node_count": [ - 40 + 41 ], "target_node_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_plugins_bool_exp": { "_and": [ - 2012 + 2008 ], "_not": [ - 2012 + 2008 ], "_or": [ - 2012 + 2008 ], "author": [ - 85 + 86 ], "config_path": [ - 85 + 86 ], "config_schema": [ - 2193 + 2189 ], "cvars": [ - 84 + 85 ], "description": [ - 85 + 86 ], "game_modes": [ - 1882 + 1883 ], "game_modes_aggregate": [ - 1872 + 1873 ], "homepage": [ - 85 + 86 ], "hot_swappable": [ - 6 + 7 ], "install_state": [ - 85 + 86 ], "installed_node_count": [ - 41 + 42 ], "kind": [ - 893 + 894 ], "name": [ - 85 + 86 ], "node_installs": [ - 2048 + 2044 ], "node_installs_aggregate": [ - 2041 + 2037 ], "pairs_with": [ - 84 + 85 ], "panel": [ - 2193 + 2189 + ], + "requires_server_guidelines_disabled": [ + 7 ], "requires_service": [ - 85 + 86 ], "slug": [ - 85 + 86 + ], + "source": [ + 86 ], "synced_at": [ - 4959 + 4955 ], "tags": [ - 84 + 85 ], "target_node_count": [ - 41 + 42 ], "verified": [ - 6 + 7 ], "versions": [ - 1973 + 1969 ], "versions_aggregate": [ - 1964 + 1960 ], "wiring": [ - 2193 + 2189 ], "__typename": [ - 83 + 84 ] }, "game_plugins_constraint": {}, "game_plugins_delete_at_path_input": { "config_schema": [ - 83 + 84 ], "panel": [ - 83 + 84 ], "wiring": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugins_delete_elem_input": { "config_schema": [ - 40 + 41 ], "panel": [ - 40 + 41 ], "wiring": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_plugins_delete_key_input": { "config_schema": [ - 83 + 84 ], "panel": [ - 83 + 84 ], "wiring": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugins_insert_input": { "author": [ - 83 + 84 ], "config_path": [ - 83 + 84 ], "config_schema": [ - 2191 + 2187 ], "cvars": [ - 83 + 84 ], "description": [ - 83 + 84 ], "game_modes": [ - 1879 + 1880 ], "homepage": [ - 83 + 84 ], "hot_swappable": [ - 5 + 6 ], "kind": [ - 892 + 893 ], "name": [ - 83 + 84 ], "node_installs": [ - 2047 + 2043 ], "pairs_with": [ - 83 + 84 ], "panel": [ - 2191 + 2187 ], - "requires_service": [ - 83 + "requires_server_guidelines_disabled": [ + 6 + ], + "requires_service": [ + 84 ], "slug": [ - 83 + 84 + ], + "source": [ + 84 ], "synced_at": [ - 4958 + 4954 ], "tags": [ - 83 + 84 ], "verified": [ - 5 + 6 ], "versions": [ - 1970 + 1966 ], "wiring": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "game_plugins_max_fields": { "author": [ - 83 + 84 ], "config_path": [ - 83 + 84 ], "cvars": [ - 83 + 84 ], "description": [ - 83 + 84 ], "homepage": [ - 83 + 84 ], "install_state": [ - 83 + 84 ], "installed_node_count": [ - 40 + 41 ], "name": [ - 83 + 84 ], "pairs_with": [ - 83 + 84 ], "requires_service": [ - 83 + 84 ], "slug": [ - 83 + 84 + ], + "source": [ + 84 ], "synced_at": [ - 4958 + 4954 ], "tags": [ - 83 + 84 ], "target_node_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_plugins_min_fields": { "author": [ - 83 + 84 ], "config_path": [ - 83 + 84 ], "cvars": [ - 83 + 84 ], "description": [ - 83 + 84 ], "homepage": [ - 83 + 84 ], "install_state": [ - 83 + 84 ], "installed_node_count": [ - 40 + 41 ], "name": [ - 83 + 84 ], "pairs_with": [ - 83 + 84 ], "requires_service": [ - 83 + 84 ], "slug": [ - 83 + 84 + ], + "source": [ + 84 ], "synced_at": [ - 4958 + 4954 ], "tags": [ - 83 + 84 ], "target_node_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_plugins_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2007 + 2003 ], "__typename": [ - 83 + 84 ] }, "game_plugins_obj_rel_insert_input": { "data": [ - 2017 + 2013 ], "on_conflict": [ - 2022 + 2018 ], "__typename": [ - 83 + 84 ] }, "game_plugins_on_conflict": { "constraint": [ - 2013 + 2009 ], "update_columns": [ - 2034 + 2030 ], "where": [ - 2012 + 2008 ], "__typename": [ - 83 + 84 ] }, "game_plugins_order_by": { "author": [ - 3377 + 3373 ], "config_path": [ - 3377 + 3373 ], "config_schema": [ - 3377 + 3373 ], "cvars": [ - 3377 + 3373 ], "description": [ - 3377 + 3373 ], "game_modes_aggregate": [ - 1877 + 1878 ], "homepage": [ - 3377 + 3373 ], "hot_swappable": [ - 3377 + 3373 ], "install_state": [ - 3377 + 3373 ], "installed_node_count": [ - 3377 + 3373 ], "kind": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "node_installs_aggregate": [ - 2046 + 2042 ], "pairs_with": [ - 3377 + 3373 ], "panel": [ - 3377 + 3373 + ], + "requires_server_guidelines_disabled": [ + 3373 ], "requires_service": [ - 3377 + 3373 ], "slug": [ - 3377 + 3373 + ], + "source": [ + 3373 ], "synced_at": [ - 3377 + 3373 ], "tags": [ - 3377 + 3373 ], "target_node_count": [ - 3377 + 3373 ], "verified": [ - 3377 + 3373 ], "versions_aggregate": [ - 1969 + 1965 ], "wiring": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_plugins_pk_columns_input": { "slug": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_plugins_prepend_input": { "config_schema": [ - 2191 + 2187 ], "panel": [ - 2191 + 2187 ], "wiring": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "game_plugins_select_column": {}, "game_plugins_set_input": { "author": [ - 83 + 84 ], "config_path": [ - 83 + 84 ], "config_schema": [ - 2191 + 2187 ], "cvars": [ - 83 + 84 ], "description": [ - 83 + 84 ], "homepage": [ - 83 + 84 ], "hot_swappable": [ - 5 + 6 ], "kind": [ - 892 + 893 ], "name": [ - 83 + 84 ], "pairs_with": [ - 83 + 84 ], "panel": [ - 2191 + 2187 + ], + "requires_server_guidelines_disabled": [ + 6 ], "requires_service": [ - 83 + 84 ], "slug": [ - 83 + 84 + ], + "source": [ + 84 ], "synced_at": [ - 4958 + 4954 ], "tags": [ - 83 + 84 ], "verified": [ - 5 + 6 ], "wiring": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "game_plugins_stddev_fields": { "installed_node_count": [ - 40 + 41 ], "target_node_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_plugins_stddev_pop_fields": { "installed_node_count": [ - 40 + 41 ], "target_node_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_plugins_stddev_samp_fields": { "installed_node_count": [ - 40 + 41 ], "target_node_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_plugins_stream_cursor_input": { "initial_value": [ - 2032 + 2028 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "game_plugins_stream_cursor_value_input": { "author": [ - 83 + 84 ], "config_path": [ - 83 + 84 ], "config_schema": [ - 2191 + 2187 ], "cvars": [ - 83 + 84 ], "description": [ - 83 + 84 ], "homepage": [ - 83 + 84 ], "hot_swappable": [ - 5 + 6 ], "kind": [ - 892 + 893 ], "name": [ - 83 + 84 ], "pairs_with": [ - 83 + 84 ], "panel": [ - 2191 + 2187 + ], + "requires_server_guidelines_disabled": [ + 6 ], "requires_service": [ - 83 + 84 ], "slug": [ - 83 + 84 + ], + "source": [ + 84 ], "synced_at": [ - 4958 + 4954 ], "tags": [ - 83 + 84 ], "verified": [ - 5 + 6 ], "wiring": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "game_plugins_sum_fields": { "installed_node_count": [ - 40 + 41 ], "target_node_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_plugins_update_column": {}, "game_plugins_updates": { "_append": [ - 2010 + 2006 ], "_delete_at_path": [ - 2014 + 2010 ], "_delete_elem": [ - 2015 + 2011 ], "_delete_key": [ - 2016 + 2012 ], "_prepend": [ - 2025 + 2021 ], "_set": [ - 2027 + 2023 ], "where": [ - 2012 + 2008 ], "__typename": [ - 83 + 84 ] }, "game_plugins_var_pop_fields": { "installed_node_count": [ - 40 + 41 ], "target_node_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_plugins_var_samp_fields": { "installed_node_count": [ - 40 + 41 ], "target_node_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_plugins_variance_fields": { "installed_node_count": [ - 40 + 41 ], "target_node_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins": { "channel": [ - 852 + 853 ], "created_at": [ - 4958 + 4954 ], "detected": [ - 5 + 6 ], "detected_version": [ - 83 + 84 ], "game_server_node": [ - 2067 + 2063 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "installed_at": [ - 4958 + 4954 ], "last_error": [ - 83 + 84 ], "plugin": [ - 2007 + 2003 ], "plugin_slug": [ - 83 + 84 ], "runtime": [ - 1262 + 1263 ], "source": [ - 83 + 84 ], "status": [ - 872 + 873 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_aggregate": { "aggregate": [ - 2045 + 2041 ], "nodes": [ - 2039 + 2035 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_aggregate_bool_exp": { "bool_and": [ - 2042 + 2038 ], "bool_or": [ - 2043 + 2039 ], "count": [ - 2044 + 2040 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_aggregate_bool_exp_bool_and": { "arguments": [ - 2060 + 2056 ], "distinct": [ - 5 + 6 ], "filter": [ - 2048 + 2044 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_aggregate_bool_exp_bool_or": { "arguments": [ - 2061 + 2057 ], "distinct": [ - 5 + 6 ], "filter": [ - 2048 + 2044 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_aggregate_bool_exp_count": { "arguments": [ - 2059 + 2055 ], "distinct": [ - 5 + 6 ], "filter": [ - 2048 + 2044 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2059, + 2055, "[game_server_node_plugins_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2051 + 2047 ], "min": [ - 2053 + 2049 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_aggregate_order_by": { "count": [ - 3377 + 3373 ], "max": [ - 2052 + 2048 ], "min": [ - 2054 + 2050 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_arr_rel_insert_input": { "data": [ - 2050 + 2046 ], "on_conflict": [ - 2056 + 2052 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_bool_exp": { "_and": [ - 2048 + 2044 ], "_not": [ - 2048 + 2044 ], "_or": [ - 2048 + 2044 ], "channel": [ - 853 + 854 ], "created_at": [ - 4959 + 4955 ], "detected": [ - 6 + 7 ], "detected_version": [ - 85 + 86 ], "game_server_node": [ - 2079 + 2075 ], "game_server_node_id": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "installed_at": [ - 4959 + 4955 ], "last_error": [ - 85 + 86 ], "plugin": [ - 2012 + 2008 ], "plugin_slug": [ - 85 + 86 ], "runtime": [ - 1263 + 1264 ], "source": [ - 85 + 86 ], "status": [ - 873 + 874 ], "updated_at": [ - 4959 + 4955 ], "version": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_constraint": {}, "game_server_node_plugins_insert_input": { "channel": [ - 852 + 853 ], "created_at": [ - 4958 + 4954 ], "detected": [ - 5 + 6 ], "detected_version": [ - 83 + 84 ], "game_server_node": [ - 2091 + 2087 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "installed_at": [ - 4958 + 4954 ], "last_error": [ - 83 + 84 ], "plugin": [ - 2021 + 2017 ], "plugin_slug": [ - 83 + 84 ], "runtime": [ - 1262 + 1263 ], "source": [ - 83 + 84 ], "status": [ - 872 + 873 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_max_fields": { "created_at": [ - 4958 + 4954 ], "detected_version": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "installed_at": [ - 4958 + 4954 ], "last_error": [ - 83 + 84 ], "plugin_slug": [ - 83 + 84 ], "source": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_max_order_by": { "created_at": [ - 3377 + 3373 ], "detected_version": [ - 3377 + 3373 ], "game_server_node_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "installed_at": [ - 3377 + 3373 ], "last_error": [ - 3377 + 3373 ], "plugin_slug": [ - 3377 + 3373 ], "source": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "version": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_min_fields": { "created_at": [ - 4958 + 4954 ], "detected_version": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "installed_at": [ - 4958 + 4954 ], "last_error": [ - 83 + 84 ], "plugin_slug": [ - 83 + 84 ], "source": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_min_order_by": { "created_at": [ - 3377 + 3373 ], "detected_version": [ - 3377 + 3373 ], "game_server_node_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "installed_at": [ - 3377 + 3373 ], "last_error": [ - 3377 + 3373 ], "plugin_slug": [ - 3377 + 3373 ], "source": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "version": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2039 + 2035 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_on_conflict": { "constraint": [ - 2049 + 2045 ], "update_columns": [ - 2065 + 2061 ], "where": [ - 2048 + 2044 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_order_by": { "channel": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "detected": [ - 3377 + 3373 ], "detected_version": [ - 3377 + 3373 ], "game_server_node": [ - 2093 + 2089 ], "game_server_node_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "installed_at": [ - 3377 + 3373 ], "last_error": [ - 3377 + 3373 ], "plugin": [ - 2023 + 2019 ], "plugin_slug": [ - 3377 + 3373 ], "runtime": [ - 3377 + 3373 ], "source": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "version": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_select_column": {}, @@ -32290,1658 +32253,1658 @@ export default { "game_server_node_plugins_select_column_game_server_node_plugins_aggregate_bool_exp_bool_or_arguments_columns": {}, "game_server_node_plugins_set_input": { "channel": [ - 852 + 853 ], "created_at": [ - 4958 + 4954 ], "detected": [ - 5 + 6 ], "detected_version": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "installed_at": [ - 4958 + 4954 ], "last_error": [ - 83 + 84 ], "plugin_slug": [ - 83 + 84 ], "runtime": [ - 1262 + 1263 ], "source": [ - 83 + 84 ], "status": [ - 872 + 873 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_stream_cursor_input": { "initial_value": [ - 2064 + 2060 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_stream_cursor_value_input": { "channel": [ - 852 + 853 ], "created_at": [ - 4958 + 4954 ], "detected": [ - 5 + 6 ], "detected_version": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "installed_at": [ - 4958 + 4954 ], "last_error": [ - 83 + 84 ], "plugin_slug": [ - 83 + 84 ], "runtime": [ - 1262 + 1263 ], "source": [ - 83 + 84 ], "status": [ - 872 + 873 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_server_node_plugins_update_column": {}, "game_server_node_plugins_updates": { "_set": [ - 2062 + 2058 ], "where": [ - 2048 + 2044 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes": { "available_server_count": [ - 40 + 41 ], "build_id": [ - 40 + 41 ], "cpu_cores_per_socket": [ - 40 + 41 ], "cpu_frequency_info": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "cpu_governor_info": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "cpu_sockets": [ - 40 + 41 ], "cpu_threads_per_core": [ - 40 + 41 ], "cpu_warnings": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "cs2_launch_options": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "cs2_video_settings": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "csgo_build_id": [ - 40 + 41 ], "demo_network_limiter": [ - 40 + 41 ], "disk_available_gb": [ - 40 + 41 ], "disk_used_percent": [ - 40 + 41 ], "e_region": [ - 4449 + 4445 ], "e_status": [ - 907 + 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": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "gpu_rendering_enabled": [ - 5 + 6 ], "gpu_streaming_enabled": [ - 5 + 6 ], "id": [ - 83 + 84 ], "label": [ - 83 + 84 ], "lan_ip": [ - 2187 + 2183 ], "node_ip": [ - 2187 + 2183 ], "offline_at": [ - 4958 + 4954 ], "pin_build_id": [ - 40 + 41 ], "pin_plugin_runtime": [ - 83 + 84 ], "pin_plugin_version": [ - 83 + 84 ], "pinned_version": [ - 2118 + 2114 ], "plugin_supported": [ - 5 + 6 ], "plugins": [ - 2039, + 2035, { "distinct_on": [ - 2059, + 2055, "[game_server_node_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2057, + 2053, "[game_server_node_plugins_order_by!]" ], "where": [ - 2048 + 2044 ] } ], "plugins_aggregate": [ - 2040, + 2036, { "distinct_on": [ - 2059, + 2055, "[game_server_node_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2057, + 2053, "[game_server_node_plugins_order_by!]" ], "where": [ - 2048 + 2044 ] } ], "plugins_synced_at": [ - 4958 + 4954 ], "public_ip": [ - 2187 + 2183 ], "region": [ - 83 + 84 ], "servers": [ - 4476, + 4472, { "distinct_on": [ - 4505, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4502, + 4498, "[servers_order_by!]" ], "where": [ - 4488 + 4484 ] } ], "servers_aggregate": [ - 4477, + 4473, { "distinct_on": [ - 4505, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4502, + 4498, "[servers_order_by!]" ], "where": [ - 4488 + 4484 ] } ], "shader_bake_progress": [ - 3375 + 3371 ], "shader_bake_progress_stage": [ - 83 + 84 ], "shader_bake_status": [ - 83 + 84 ], "shader_bake_status_history": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "start_port_range": [ - 40 + 41 ], "status": [ - 912 + 913 ], "supports_cpu_pinning": [ - 5 + 6 ], "supports_low_latency": [ - 5 + 6 ], "token": [ - 83 + 84 ], "total_server_count": [ - 40 + 41 ], "update_status": [ - 83 + 84 ], "version": [ - 2118 + 2114 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_aggregate": { "aggregate": [ - 2073 + 2069 ], "nodes": [ - 2067 + 2063 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 2070 + 2066 ], "bool_or": [ - 2071 + 2067 ], "count": [ - 2072 + 2068 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 2097 + 2093 ], "distinct": [ - 5 + 6 ], "filter": [ - 2079 + 2075 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 2098 + 2094 ], "distinct": [ - 5 + 6 ], "filter": [ - 2079 + 2075 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 2096 + 2092 ], "distinct": [ - 5 + 6 ], "filter": [ - 2079 + 2075 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_aggregate_fields": { "avg": [ - 2077 + 2073 ], "count": [ - 40, + 41, { "columns": [ - 2096, + 2092, "[game_server_nodes_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2086 + 2082 ], "min": [ - 2088 + 2084 ], "stddev": [ - 2100 + 2096 ], "stddev_pop": [ - 2102 + 2098 ], "stddev_samp": [ - 2104 + 2100 ], "sum": [ - 2108 + 2104 ], "var_pop": [ - 2112 + 2108 ], "var_samp": [ - 2114 + 2110 ], "variance": [ - 2116 + 2112 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_aggregate_order_by": { "avg": [ - 2078 + 2074 ], "count": [ - 3377 + 3373 ], "max": [ - 2087 + 2083 ], "min": [ - 2089 + 2085 ], "stddev": [ - 2101 + 2097 ], "stddev_pop": [ - 2103 + 2099 ], "stddev_samp": [ - 2105 + 2101 ], "sum": [ - 2109 + 2105 ], "var_pop": [ - 2113 + 2109 ], "var_samp": [ - 2115 + 2111 ], "variance": [ - 2117 + 2113 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 2191 + 2187 ], "cpu_governor_info": [ - 2191 + 2187 ], "cpu_warnings": [ - 2191 + 2187 ], "cs2_launch_options": [ - 2191 + 2187 ], "cs2_video_settings": [ - 2191 + 2187 ], "gpu_info": [ - 2191 + 2187 ], "shader_bake_status_history": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 2085 + 2081 ], "on_conflict": [ - 2092 + 2088 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "game_server_nodes_avg_order_by": { "build_id": [ - 3377 + 3373 ], "cpu_cores_per_socket": [ - 3377 + 3373 ], "cpu_sockets": [ - 3377 + 3373 ], "cpu_threads_per_core": [ - 3377 + 3373 ], "csgo_build_id": [ - 3377 + 3373 ], "demo_network_limiter": [ - 3377 + 3373 ], "disk_available_gb": [ - 3377 + 3373 ], "disk_used_percent": [ - 3377 + 3373 ], "end_port_range": [ - 3377 + 3373 ], "pin_build_id": [ - 3377 + 3373 ], "shader_bake_progress": [ - 3377 + 3373 ], "start_port_range": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_bool_exp": { "_and": [ - 2079 + 2075 ], "_not": [ - 2079 + 2075 ], "_or": [ - 2079 + 2075 ], "available_server_count": [ - 41 + 42 ], "build_id": [ - 41 + 42 ], "cpu_cores_per_socket": [ - 41 + 42 ], "cpu_frequency_info": [ - 2193 + 2189 ], "cpu_governor_info": [ - 2193 + 2189 ], "cpu_sockets": [ - 41 + 42 ], "cpu_threads_per_core": [ - 41 + 42 ], "cpu_warnings": [ - 2193 + 2189 ], "cs2_launch_options": [ - 2193 + 2189 ], "cs2_video_settings": [ - 2193 + 2189 ], "csgo_build_id": [ - 41 + 42 ], "demo_network_limiter": [ - 41 + 42 ], "disk_available_gb": [ - 41 + 42 ], "disk_used_percent": [ - 41 + 42 ], "e_region": [ - 4453 + 4449 ], "e_status": [ - 910 + 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": [ - 2193 + 2189 ], "gpu_rendering_enabled": [ - 6 + 7 ], "gpu_streaming_enabled": [ - 6 + 7 ], "id": [ - 85 + 86 ], "label": [ - 85 + 86 ], "lan_ip": [ - 2188 + 2184 ], "node_ip": [ - 2188 + 2184 ], "offline_at": [ - 4959 + 4955 ], "pin_build_id": [ - 41 + 42 ], "pin_plugin_runtime": [ - 85 + 86 ], "pin_plugin_version": [ - 85 + 86 ], "pinned_version": [ - 2123 + 2119 ], "plugin_supported": [ - 6 + 7 ], "plugins": [ - 2048 + 2044 ], "plugins_aggregate": [ - 2041 + 2037 ], "plugins_synced_at": [ - 4959 + 4955 ], "public_ip": [ - 2188 + 2184 ], "region": [ - 85 + 86 ], "servers": [ - 4488 + 4484 ], "servers_aggregate": [ - 4478 + 4474 ], "shader_bake_progress": [ - 3376 + 3372 ], "shader_bake_progress_stage": [ - 85 + 86 ], "shader_bake_status": [ - 85 + 86 ], "shader_bake_status_history": [ - 2193 + 2189 ], "start_port_range": [ - 41 + 42 ], "status": [ - 913 + 914 ], "supports_cpu_pinning": [ - 6 + 7 ], "supports_low_latency": [ - 6 + 7 ], "token": [ - 85 + 86 ], "total_server_count": [ - 41 + 42 ], "update_status": [ - 85 + 86 ], "version": [ - 2123 + 2119 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_constraint": {}, "game_server_nodes_delete_at_path_input": { "cpu_frequency_info": [ - 83 + 84 ], "cpu_governor_info": [ - 83 + 84 ], "cpu_warnings": [ - 83 + 84 ], "cs2_launch_options": [ - 83 + 84 ], "cs2_video_settings": [ - 83 + 84 ], "gpu_info": [ - 83 + 84 ], "shader_bake_status_history": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "game_server_nodes_delete_key_input": { "cpu_frequency_info": [ - 83 + 84 ], "cpu_governor_info": [ - 83 + 84 ], "cpu_warnings": [ - 83 + 84 ], "cs2_launch_options": [ - 83 + 84 ], "cs2_video_settings": [ - 83 + 84 ], "gpu_info": [ - 83 + 84 ], "shader_bake_status_history": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 3375 + 3371 ], "start_port_range": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_insert_input": { "build_id": [ - 40 + 41 ], "cpu_cores_per_socket": [ - 40 + 41 ], "cpu_frequency_info": [ - 2191 + 2187 ], "cpu_governor_info": [ - 2191 + 2187 ], "cpu_sockets": [ - 40 + 41 ], "cpu_threads_per_core": [ - 40 + 41 ], "cpu_warnings": [ - 2191 + 2187 ], "cs2_launch_options": [ - 2191 + 2187 ], "cs2_video_settings": [ - 2191 + 2187 ], "csgo_build_id": [ - 40 + 41 ], "demo_network_limiter": [ - 40 + 41 ], "disk_available_gb": [ - 40 + 41 ], "disk_used_percent": [ - 40 + 41 ], "e_region": [ - 4459 + 4455 ], "e_status": [ - 918 + 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": [ - 2191 + 2187 ], "gpu_rendering_enabled": [ - 5 + 6 ], "gpu_streaming_enabled": [ - 5 + 6 ], "id": [ - 83 + 84 ], "label": [ - 83 + 84 ], "lan_ip": [ - 2187 + 2183 ], "node_ip": [ - 2187 + 2183 ], "offline_at": [ - 4958 + 4954 ], "pin_build_id": [ - 40 + 41 ], "pin_plugin_runtime": [ - 83 + 84 ], "pin_plugin_version": [ - 83 + 84 ], "pinned_version": [ - 2133 + 2129 ], "plugins": [ - 2047 + 2043 ], "plugins_synced_at": [ - 4958 + 4954 ], "public_ip": [ - 2187 + 2183 ], "region": [ - 83 + 84 ], "servers": [ - 4485 + 4481 ], "shader_bake_progress": [ - 3375 + 3371 ], "shader_bake_progress_stage": [ - 83 + 84 ], "shader_bake_status": [ - 83 + 84 ], "shader_bake_status_history": [ - 2191 + 2187 ], "start_port_range": [ - 40 + 41 ], "status": [ - 912 + 913 ], "supports_cpu_pinning": [ - 5 + 6 ], "supports_low_latency": [ - 5 + 6 ], "token": [ - 83 + 84 ], "update_status": [ - 83 + 84 ], "version": [ - 2133 + 2129 ], "__typename": [ - 83 + 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": [ - 83 + 84 ], "label": [ - 83 + 84 ], "offline_at": [ - 4958 + 4954 ], "pin_build_id": [ - 40 + 41 ], "pin_plugin_runtime": [ - 83 + 84 ], "pin_plugin_version": [ - 83 + 84 ], "plugins_synced_at": [ - 4958 + 4954 ], "region": [ - 83 + 84 ], "shader_bake_progress": [ - 3375 + 3371 ], "shader_bake_progress_stage": [ - 83 + 84 ], "shader_bake_status": [ - 83 + 84 ], "start_port_range": [ - 40 + 41 ], "token": [ - 83 + 84 ], "total_server_count": [ - 40 + 41 ], "update_status": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_max_order_by": { "build_id": [ - 3377 + 3373 ], "cpu_cores_per_socket": [ - 3377 + 3373 ], "cpu_sockets": [ - 3377 + 3373 ], "cpu_threads_per_core": [ - 3377 + 3373 ], "csgo_build_id": [ - 3377 + 3373 ], "demo_network_limiter": [ - 3377 + 3373 ], "disk_available_gb": [ - 3377 + 3373 ], "disk_used_percent": [ - 3377 + 3373 ], "end_port_range": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "offline_at": [ - 3377 + 3373 ], "pin_build_id": [ - 3377 + 3373 ], "pin_plugin_runtime": [ - 3377 + 3373 ], "pin_plugin_version": [ - 3377 + 3373 ], "plugins_synced_at": [ - 3377 + 3373 ], "region": [ - 3377 + 3373 ], "shader_bake_progress": [ - 3377 + 3373 ], "shader_bake_progress_stage": [ - 3377 + 3373 ], "shader_bake_status": [ - 3377 + 3373 ], "start_port_range": [ - 3377 + 3373 ], "token": [ - 3377 + 3373 ], "update_status": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ], "label": [ - 83 + 84 ], "offline_at": [ - 4958 + 4954 ], "pin_build_id": [ - 40 + 41 ], "pin_plugin_runtime": [ - 83 + 84 ], "pin_plugin_version": [ - 83 + 84 ], "plugins_synced_at": [ - 4958 + 4954 ], "region": [ - 83 + 84 ], "shader_bake_progress": [ - 3375 + 3371 ], "shader_bake_progress_stage": [ - 83 + 84 ], "shader_bake_status": [ - 83 + 84 ], "start_port_range": [ - 40 + 41 ], "token": [ - 83 + 84 ], "total_server_count": [ - 40 + 41 ], "update_status": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_min_order_by": { "build_id": [ - 3377 + 3373 ], "cpu_cores_per_socket": [ - 3377 + 3373 ], "cpu_sockets": [ - 3377 + 3373 ], "cpu_threads_per_core": [ - 3377 + 3373 ], "csgo_build_id": [ - 3377 + 3373 ], "demo_network_limiter": [ - 3377 + 3373 ], "disk_available_gb": [ - 3377 + 3373 ], "disk_used_percent": [ - 3377 + 3373 ], "end_port_range": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "offline_at": [ - 3377 + 3373 ], "pin_build_id": [ - 3377 + 3373 ], "pin_plugin_runtime": [ - 3377 + 3373 ], "pin_plugin_version": [ - 3377 + 3373 ], "plugins_synced_at": [ - 3377 + 3373 ], "region": [ - 3377 + 3373 ], "shader_bake_progress": [ - 3377 + 3373 ], "shader_bake_progress_stage": [ - 3377 + 3373 ], "shader_bake_status": [ - 3377 + 3373 ], "start_port_range": [ - 3377 + 3373 ], "token": [ - 3377 + 3373 ], "update_status": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2067 + 2063 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 2085 + 2081 ], "on_conflict": [ - 2092 + 2088 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_on_conflict": { "constraint": [ - 2080 + 2076 ], "update_columns": [ - 2110 + 2106 ], "where": [ - 2079 + 2075 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_order_by": { "available_server_count": [ - 3377 + 3373 ], "build_id": [ - 3377 + 3373 ], "cpu_cores_per_socket": [ - 3377 + 3373 ], "cpu_frequency_info": [ - 3377 + 3373 ], "cpu_governor_info": [ - 3377 + 3373 ], "cpu_sockets": [ - 3377 + 3373 ], "cpu_threads_per_core": [ - 3377 + 3373 ], "cpu_warnings": [ - 3377 + 3373 ], "cs2_launch_options": [ - 3377 + 3373 ], "cs2_video_settings": [ - 3377 + 3373 ], "csgo_build_id": [ - 3377 + 3373 ], "demo_network_limiter": [ - 3377 + 3373 ], "disk_available_gb": [ - 3377 + 3373 ], "disk_used_percent": [ - 3377 + 3373 ], "e_region": [ - 4461 + 4457 ], "e_status": [ - 920 + 921 ], "enabled": [ - 3377 + 3373 ], "enabled_for_match_making": [ - 3377 + 3373 ], "end_port_range": [ - 3377 + 3373 ], "gpu": [ - 3377 + 3373 ], "gpu_demos_enabled": [ - 3377 + 3373 ], "gpu_info": [ - 3377 + 3373 ], "gpu_rendering_enabled": [ - 3377 + 3373 ], "gpu_streaming_enabled": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "lan_ip": [ - 3377 + 3373 ], "node_ip": [ - 3377 + 3373 ], "offline_at": [ - 3377 + 3373 ], "pin_build_id": [ - 3377 + 3373 ], "pin_plugin_runtime": [ - 3377 + 3373 ], "pin_plugin_version": [ - 3377 + 3373 ], "pinned_version": [ - 2135 + 2131 ], "plugin_supported": [ - 3377 + 3373 ], "plugins_aggregate": [ - 2046 + 2042 ], "plugins_synced_at": [ - 3377 + 3373 ], "public_ip": [ - 3377 + 3373 ], "region": [ - 3377 + 3373 ], "servers_aggregate": [ - 4483 + 4479 ], "shader_bake_progress": [ - 3377 + 3373 ], "shader_bake_progress_stage": [ - 3377 + 3373 ], "shader_bake_status": [ - 3377 + 3373 ], "shader_bake_status_history": [ - 3377 + 3373 ], "start_port_range": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "supports_cpu_pinning": [ - 3377 + 3373 ], "supports_low_latency": [ - 3377 + 3373 ], "token": [ - 3377 + 3373 ], "total_server_count": [ - 3377 + 3373 ], "update_status": [ - 3377 + 3373 ], "version": [ - 2135 + 2131 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_pk_columns_input": { "id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 2191 + 2187 ], "cpu_governor_info": [ - 2191 + 2187 ], "cpu_warnings": [ - 2191 + 2187 ], "cs2_launch_options": [ - 2191 + 2187 ], "cs2_video_settings": [ - 2191 + 2187 ], "gpu_info": [ - 2191 + 2187 ], "shader_bake_status_history": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_select_column": {}, @@ -33949,10848 +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": [ - 2191 + 2187 ], "cpu_governor_info": [ - 2191 + 2187 ], "cpu_sockets": [ - 40 + 41 ], "cpu_threads_per_core": [ - 40 + 41 ], "cpu_warnings": [ - 2191 + 2187 ], "cs2_launch_options": [ - 2191 + 2187 ], "cs2_video_settings": [ - 2191 + 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": [ - 2191 + 2187 ], "gpu_rendering_enabled": [ - 5 + 6 ], "gpu_streaming_enabled": [ - 5 + 6 ], "id": [ - 83 + 84 ], "label": [ - 83 + 84 ], "lan_ip": [ - 2187 + 2183 ], "node_ip": [ - 2187 + 2183 ], "offline_at": [ - 4958 + 4954 ], "pin_build_id": [ - 40 + 41 ], "pin_plugin_runtime": [ - 83 + 84 ], "pin_plugin_version": [ - 83 + 84 ], "plugins_synced_at": [ - 4958 + 4954 ], "public_ip": [ - 2187 + 2183 ], "region": [ - 83 + 84 ], "shader_bake_progress": [ - 3375 + 3371 ], "shader_bake_progress_stage": [ - 83 + 84 ], "shader_bake_status": [ - 83 + 84 ], "shader_bake_status_history": [ - 2191 + 2187 ], "start_port_range": [ - 40 + 41 ], "status": [ - 912 + 913 ], "supports_cpu_pinning": [ - 5 + 6 ], "supports_low_latency": [ - 5 + 6 ], "token": [ - 83 + 84 ], "update_status": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "game_server_nodes_stddev_order_by": { "build_id": [ - 3377 + 3373 ], "cpu_cores_per_socket": [ - 3377 + 3373 ], "cpu_sockets": [ - 3377 + 3373 ], "cpu_threads_per_core": [ - 3377 + 3373 ], "csgo_build_id": [ - 3377 + 3373 ], "demo_network_limiter": [ - 3377 + 3373 ], "disk_available_gb": [ - 3377 + 3373 ], "disk_used_percent": [ - 3377 + 3373 ], "end_port_range": [ - 3377 + 3373 ], "pin_build_id": [ - 3377 + 3373 ], "shader_bake_progress": [ - 3377 + 3373 ], "start_port_range": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 3377 + 3373 ], "cpu_cores_per_socket": [ - 3377 + 3373 ], "cpu_sockets": [ - 3377 + 3373 ], "cpu_threads_per_core": [ - 3377 + 3373 ], "csgo_build_id": [ - 3377 + 3373 ], "demo_network_limiter": [ - 3377 + 3373 ], "disk_available_gb": [ - 3377 + 3373 ], "disk_used_percent": [ - 3377 + 3373 ], "end_port_range": [ - 3377 + 3373 ], "pin_build_id": [ - 3377 + 3373 ], "shader_bake_progress": [ - 3377 + 3373 ], "start_port_range": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 3377 + 3373 ], "cpu_cores_per_socket": [ - 3377 + 3373 ], "cpu_sockets": [ - 3377 + 3373 ], "cpu_threads_per_core": [ - 3377 + 3373 ], "csgo_build_id": [ - 3377 + 3373 ], "demo_network_limiter": [ - 3377 + 3373 ], "disk_available_gb": [ - 3377 + 3373 ], "disk_used_percent": [ - 3377 + 3373 ], "end_port_range": [ - 3377 + 3373 ], "pin_build_id": [ - 3377 + 3373 ], "shader_bake_progress": [ - 3377 + 3373 ], "start_port_range": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 2107 + 2103 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_stream_cursor_value_input": { "build_id": [ - 40 + 41 ], "cpu_cores_per_socket": [ - 40 + 41 ], "cpu_frequency_info": [ - 2191 + 2187 ], "cpu_governor_info": [ - 2191 + 2187 ], "cpu_sockets": [ - 40 + 41 ], "cpu_threads_per_core": [ - 40 + 41 ], "cpu_warnings": [ - 2191 + 2187 ], "cs2_launch_options": [ - 2191 + 2187 ], "cs2_video_settings": [ - 2191 + 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": [ - 2191 + 2187 ], "gpu_rendering_enabled": [ - 5 + 6 ], "gpu_streaming_enabled": [ - 5 + 6 ], "id": [ - 83 + 84 ], "label": [ - 83 + 84 ], "lan_ip": [ - 2187 + 2183 ], "node_ip": [ - 2187 + 2183 ], "offline_at": [ - 4958 + 4954 ], "pin_build_id": [ - 40 + 41 ], "pin_plugin_runtime": [ - 83 + 84 ], "pin_plugin_version": [ - 83 + 84 ], "plugins_synced_at": [ - 4958 + 4954 ], "public_ip": [ - 2187 + 2183 ], "region": [ - 83 + 84 ], "shader_bake_progress": [ - 3375 + 3371 ], "shader_bake_progress_stage": [ - 83 + 84 ], "shader_bake_status": [ - 83 + 84 ], "shader_bake_status_history": [ - 2191 + 2187 ], "start_port_range": [ - 40 + 41 ], "status": [ - 912 + 913 ], "supports_cpu_pinning": [ - 5 + 6 ], "supports_low_latency": [ - 5 + 6 ], "token": [ - 83 + 84 ], "update_status": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 3375 + 3371 ], "start_port_range": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_sum_order_by": { "build_id": [ - 3377 + 3373 ], "cpu_cores_per_socket": [ - 3377 + 3373 ], "cpu_sockets": [ - 3377 + 3373 ], "cpu_threads_per_core": [ - 3377 + 3373 ], "csgo_build_id": [ - 3377 + 3373 ], "demo_network_limiter": [ - 3377 + 3373 ], "disk_available_gb": [ - 3377 + 3373 ], "disk_used_percent": [ - 3377 + 3373 ], "end_port_range": [ - 3377 + 3373 ], "pin_build_id": [ - 3377 + 3373 ], "shader_bake_progress": [ - 3377 + 3373 ], "start_port_range": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 2075 + 2071 ], "_delete_at_path": [ - 2081 + 2077 ], "_delete_elem": [ - 2082 + 2078 ], "_delete_key": [ - 2083 + 2079 ], "_inc": [ - 2084 + 2080 ], "_prepend": [ - 2095 + 2091 ], "_set": [ - 2099 + 2095 ], "where": [ - 2079 + 2075 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 3377 + 3373 ], "cpu_cores_per_socket": [ - 3377 + 3373 ], "cpu_sockets": [ - 3377 + 3373 ], "cpu_threads_per_core": [ - 3377 + 3373 ], "csgo_build_id": [ - 3377 + 3373 ], "demo_network_limiter": [ - 3377 + 3373 ], "disk_available_gb": [ - 3377 + 3373 ], "disk_used_percent": [ - 3377 + 3373 ], "end_port_range": [ - 3377 + 3373 ], "pin_build_id": [ - 3377 + 3373 ], "shader_bake_progress": [ - 3377 + 3373 ], "start_port_range": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 3377 + 3373 ], "cpu_cores_per_socket": [ - 3377 + 3373 ], "cpu_sockets": [ - 3377 + 3373 ], "cpu_threads_per_core": [ - 3377 + 3373 ], "csgo_build_id": [ - 3377 + 3373 ], "demo_network_limiter": [ - 3377 + 3373 ], "disk_available_gb": [ - 3377 + 3373 ], "disk_used_percent": [ - 3377 + 3373 ], "end_port_range": [ - 3377 + 3373 ], "pin_build_id": [ - 3377 + 3373 ], "shader_bake_progress": [ - 3377 + 3373 ], "start_port_range": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "game_server_nodes_variance_order_by": { "build_id": [ - 3377 + 3373 ], "cpu_cores_per_socket": [ - 3377 + 3373 ], "cpu_sockets": [ - 3377 + 3373 ], "cpu_threads_per_core": [ - 3377 + 3373 ], "csgo_build_id": [ - 3377 + 3373 ], "demo_network_limiter": [ - 3377 + 3373 ], "disk_available_gb": [ - 3377 + 3373 ], "disk_used_percent": [ - 3377 + 3373 ], "end_port_range": [ - 3377 + 3373 ], "pin_build_id": [ - 3377 + 3373 ], "shader_bake_progress": [ - 3377 + 3373 ], "start_port_range": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_versions": { "build_id": [ - 40 + 41 ], "current": [ - 5 + 6 ], "cvars": [ - 5 + 6 ], "description": [ - 83 + 84 ], "downloads": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_versions_aggregate": { "aggregate": [ - 2120 + 2116 ], "nodes": [ - 2118 + 2114 ], "__typename": [ - 83 + 84 ] }, "game_versions_aggregate_fields": { "avg": [ - 2122 + 2118 ], "count": [ - 40, + 41, { "columns": [ - 2138, + 2134, "[game_versions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2130 + 2126 ], "min": [ - 2131 + 2127 ], "stddev": [ - 2140 + 2136 ], "stddev_pop": [ - 2141 + 2137 ], "stddev_samp": [ - 2142 + 2138 ], "sum": [ - 2145 + 2141 ], "var_pop": [ - 2148 + 2144 ], "var_samp": [ - 2149 + 2145 ], "variance": [ - 2150 + 2146 ], "__typename": [ - 83 + 84 ] }, "game_versions_append_input": { "downloads": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "game_versions_avg_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_versions_bool_exp": { "_and": [ - 2123 + 2119 ], "_not": [ - 2123 + 2119 ], "_or": [ - 2123 + 2119 ], "build_id": [ - 41 + 42 ], "current": [ - 6 + 7 ], "cvars": [ - 6 + 7 ], "description": [ - 85 + 86 ], "downloads": [ - 2193 + 2189 ], "updated_at": [ - 4959 + 4955 ], "version": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "game_versions_constraint": {}, "game_versions_delete_at_path_input": { "downloads": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_versions_delete_elem_input": { "downloads": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_versions_delete_key_input": { "downloads": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_versions_inc_input": { "build_id": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_versions_insert_input": { "build_id": [ - 40 + 41 ], "current": [ - 5 + 6 ], "cvars": [ - 5 + 6 ], "description": [ - 83 + 84 ], "downloads": [ - 2191 + 2187 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_versions_max_fields": { "build_id": [ - 40 + 41 ], "description": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_versions_min_fields": { "build_id": [ - 40 + 41 ], "description": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_versions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2118 + 2114 ], "__typename": [ - 83 + 84 ] }, "game_versions_obj_rel_insert_input": { "data": [ - 2129 + 2125 ], "on_conflict": [ - 2134 + 2130 ], "__typename": [ - 83 + 84 ] }, "game_versions_on_conflict": { "constraint": [ - 2124 + 2120 ], "update_columns": [ - 2146 + 2142 ], "where": [ - 2123 + 2119 ], "__typename": [ - 83 + 84 ] }, "game_versions_order_by": { "build_id": [ - 3377 + 3373 ], "current": [ - 3377 + 3373 ], "cvars": [ - 3377 + 3373 ], "description": [ - 3377 + 3373 ], "downloads": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "version": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "game_versions_pk_columns_input": { "build_id": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_versions_prepend_input": { "downloads": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "game_versions_select_column": {}, "game_versions_set_input": { "build_id": [ - 40 + 41 ], "current": [ - 5 + 6 ], "cvars": [ - 5 + 6 ], "description": [ - 83 + 84 ], "downloads": [ - 2191 + 2187 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_versions_stddev_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_versions_stddev_pop_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_versions_stddev_samp_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_versions_stream_cursor_input": { "initial_value": [ - 2144 + 2140 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "game_versions_stream_cursor_value_input": { "build_id": [ - 40 + 41 ], "current": [ - 5 + 6 ], "cvars": [ - 5 + 6 ], "description": [ - 83 + 84 ], "downloads": [ - 2191 + 2187 ], "updated_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "game_versions_sum_fields": { "build_id": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 2121 + 2117 ], "_delete_at_path": [ - 2125 + 2121 ], "_delete_elem": [ - 2126 + 2122 ], "_delete_key": [ - 2127 + 2123 ], "_inc": [ - 2128 + 2124 ], "_prepend": [ - 2137 + 2133 ], "_set": [ - 2139 + 2135 ], "where": [ - 2123 + 2119 ], "__typename": [ - 83 + 84 ] }, "game_versions_var_pop_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_versions_var_samp_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "game_versions_variance_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations": { "branch": [ - 83 + 84 ], "build_id": [ - 40 + 41 ], "game_version": [ - 2118 + 2114 ], "id": [ - 5458 + 5454 ], "results": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "status": [ - 83 + 84 ], "validated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 2153 + 2149 ], "nodes": [ - 2151 + 2147 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 2155 + 2151 ], "count": [ - 40, + 41, { "columns": [ - 2170, + 2166, "[gamedata_signature_validations_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2163 + 2159 ], "min": [ - 2164 + 2160 ], "stddev": [ - 2172 + 2168 ], "stddev_pop": [ - 2173 + 2169 ], "stddev_samp": [ - 2174 + 2170 ], "sum": [ - 2177 + 2173 ], "var_pop": [ - 2180 + 2176 ], "var_samp": [ - 2181 + 2177 ], "variance": [ - 2182 + 2178 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_append_input": { "results": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_avg_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_bool_exp": { "_and": [ - 2156 + 2152 ], "_not": [ - 2156 + 2152 ], "_or": [ - 2156 + 2152 ], "branch": [ - 85 + 86 ], "build_id": [ - 41 + 42 ], "game_version": [ - 2123 + 2119 ], "id": [ - 5460 + 5456 ], "results": [ - 2193 + 2189 ], "status": [ - 85 + 86 ], "validated_at": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_constraint": {}, "gamedata_signature_validations_delete_at_path_input": { "results": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_delete_elem_input": { "results": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_delete_key_input": { "results": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_inc_input": { "build_id": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_insert_input": { "branch": [ - 83 + 84 ], "build_id": [ - 40 + 41 ], "game_version": [ - 2133 + 2129 ], "id": [ - 5458 + 5454 ], "results": [ - 2191 + 2187 ], "status": [ - 83 + 84 ], "validated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_max_fields": { "branch": [ - 83 + 84 ], "build_id": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "status": [ - 83 + 84 ], "validated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_min_fields": { "branch": [ - 83 + 84 ], "build_id": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "status": [ - 83 + 84 ], "validated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2151 + 2147 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 2157 + 2153 ], "update_columns": [ - 2178 + 2174 ], "where": [ - 2156 + 2152 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_order_by": { "branch": [ - 3377 + 3373 ], "build_id": [ - 3377 + 3373 ], "game_version": [ - 2135 + 2131 ], "id": [ - 3377 + 3373 ], "results": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "validated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_prepend_input": { "results": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_select_column": {}, "gamedata_signature_validations_set_input": { "branch": [ - 83 + 84 ], "build_id": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "results": [ - 2191 + 2187 ], "status": [ - 83 + 84 ], "validated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_stddev_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_stddev_pop_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_stddev_samp_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 2176 + 2172 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_stream_cursor_value_input": { "branch": [ - 83 + 84 ], "build_id": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "results": [ - 2191 + 2187 ], "status": [ - 83 + 84 ], "validated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_sum_fields": { "build_id": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 2154 + 2150 ], "_delete_at_path": [ - 2158 + 2154 ], "_delete_elem": [ - 2159 + 2155 ], "_delete_key": [ - 2160 + 2156 ], "_inc": [ - 2161 + 2157 ], "_prepend": [ - 2169 + 2165 ], "_set": [ - 2171 + 2167 ], "where": [ - 2156 + 2152 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_var_pop_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_var_samp_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "gamedata_signature_validations_variance_fields": { "build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "get_event_leaderboard_args": { "_category": [ - 83 + 84 ], "_event_id": [ - 5458 + 5454 ], "_match_type": [ - 83 + 84 ], "_min_rounds": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "get_leaderboard_args": { "_category": [ - 83 + 84 ], "_exclude_tournaments": [ - 5 + 6 ], "_match_type": [ - 83 + 84 ], "_role": [ - 83 + 84 ], "_season_id": [ - 5458 + 5454 ], "_source": [ - 83 + 84 ], "_window_days": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "get_league_season_leaderboard_args": { "_category": [ - 83 + 84 ], "_league_season_id": [ - 5458 + 5454 ], "_role": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "get_player_leaderboard_rank_args": { "_category": [ - 83 + 84 ], "_exclude_tournaments": [ - 5 + 6 ], "_match_type": [ - 83 + 84 ], "_player_steam_id": [ - 83 + 84 ], "_season_id": [ - 5458 + 5454 ], "_source": [ - 83 + 84 ], "_window_days": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "inet": {}, "inet_comparison_exp": { "_eq": [ - 2187 + 2183 ], "_gt": [ - 2187 + 2183 ], "_gte": [ - 2187 + 2183 ], "_in": [ - 2187 + 2183 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 2187 + 2183 ], "_lte": [ - 2187 + 2183 ], "_neq": [ - 2187 + 2183 ], "_nin": [ - 2187 + 2183 ], "__typename": [ - 83 + 84 ] }, "json": {}, "json_comparison_exp": { "_eq": [ - 2189 + 2185 ], "_gt": [ - 2189 + 2185 ], "_gte": [ - 2189 + 2185 ], "_in": [ - 2189 + 2185 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 2189 + 2185 ], "_lte": [ - 2189 + 2185 ], "_neq": [ - 2189 + 2185 ], "_nin": [ - 2189 + 2185 ], "__typename": [ - 83 + 84 ] }, "jsonb": {}, "jsonb_cast_exp": { "String": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "jsonb_comparison_exp": { "_cast": [ - 2192 + 2188 ], "_contained_in": [ - 2191 + 2187 ], "_contains": [ - 2191 + 2187 ], "_eq": [ - 2191 + 2187 ], "_gt": [ - 2191 + 2187 ], "_gte": [ - 2191 + 2187 ], "_has_key": [ - 83 + 84 ], "_has_keys_all": [ - 83 + 84 ], "_has_keys_any": [ - 83 + 84 ], "_in": [ - 2191 + 2187 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 2191 + 2187 ], "_lte": [ - 2191 + 2187 ], "_neq": [ - 2191 + 2187 ], "_nin": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries": { "matches_played": [ - 40 + 41 ], "player_avatar_url": [ - 83 + 84 ], "player_country": [ - 83 + 84 ], "player_custom_avatar_url": [ - 83 + 84 ], "player_name": [ - 83 + 84 ], "player_steam_id": [ - 83 + 84 ], "secondary_value": [ - 1841 + 1842 ], "tertiary_value": [ - 1841 + 1842 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_aggregate": { "aggregate": [ - 2196 + 2192 ], "nodes": [ - 2194 + 2190 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_aggregate_fields": { "avg": [ - 2197 + 2193 ], "count": [ - 40, + 41, { "columns": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2201 + 2197 ], "min": [ - 2202 + 2198 ], "stddev": [ - 2207 + 2203 ], "stddev_pop": [ - 2208 + 2204 ], "stddev_samp": [ - 2209 + 2205 ], "sum": [ - 2212 + 2208 ], "var_pop": [ - 2214 + 2210 ], "var_samp": [ - 2215 + 2211 ], "variance": [ - 2216 + 2212 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_avg_fields": { "matches_played": [ - 31 + 32 ], "secondary_value": [ - 31 + 32 ], "tertiary_value": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_bool_exp": { "_and": [ - 2198 + 2194 ], "_not": [ - 2198 + 2194 ], "_or": [ - 2198 + 2194 ], "matches_played": [ - 41 + 42 ], "player_avatar_url": [ - 85 + 86 ], "player_country": [ - 85 + 86 ], "player_custom_avatar_url": [ - 85 + 86 ], "player_name": [ - 85 + 86 ], "player_steam_id": [ - 85 + 86 ], "secondary_value": [ - 1842 + 1843 ], "tertiary_value": [ - 1842 + 1843 ], "value": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_inc_input": { "matches_played": [ - 40 + 41 ], "secondary_value": [ - 1841 + 1842 ], "tertiary_value": [ - 1841 + 1842 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_insert_input": { "matches_played": [ - 40 + 41 ], "player_avatar_url": [ - 83 + 84 ], "player_country": [ - 83 + 84 ], "player_custom_avatar_url": [ - 83 + 84 ], "player_name": [ - 83 + 84 ], "player_steam_id": [ - 83 + 84 ], "secondary_value": [ - 1841 + 1842 ], "tertiary_value": [ - 1841 + 1842 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_max_fields": { "matches_played": [ - 40 + 41 ], "player_avatar_url": [ - 83 + 84 ], "player_country": [ - 83 + 84 ], "player_custom_avatar_url": [ - 83 + 84 ], "player_name": [ - 83 + 84 ], "player_steam_id": [ - 83 + 84 ], "secondary_value": [ - 1841 + 1842 ], "tertiary_value": [ - 1841 + 1842 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_min_fields": { "matches_played": [ - 40 + 41 ], "player_avatar_url": [ - 83 + 84 ], "player_country": [ - 83 + 84 ], "player_custom_avatar_url": [ - 83 + 84 ], "player_name": [ - 83 + 84 ], "player_steam_id": [ - 83 + 84 ], "secondary_value": [ - 1841 + 1842 ], "tertiary_value": [ - 1841 + 1842 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2194 + 2190 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_order_by": { "matches_played": [ - 3377 + 3373 ], "player_avatar_url": [ - 3377 + 3373 ], "player_country": [ - 3377 + 3373 ], "player_custom_avatar_url": [ - 3377 + 3373 ], "player_name": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "secondary_value": [ - 3377 + 3373 ], "tertiary_value": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_select_column": {}, "leaderboard_entries_set_input": { "matches_played": [ - 40 + 41 ], "player_avatar_url": [ - 83 + 84 ], "player_country": [ - 83 + 84 ], "player_custom_avatar_url": [ - 83 + 84 ], "player_name": [ - 83 + 84 ], "player_steam_id": [ - 83 + 84 ], "secondary_value": [ - 1841 + 1842 ], "tertiary_value": [ - 1841 + 1842 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_stddev_fields": { "matches_played": [ - 31 + 32 ], "secondary_value": [ - 31 + 32 ], "tertiary_value": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_stddev_pop_fields": { "matches_played": [ - 31 + 32 ], "secondary_value": [ - 31 + 32 ], "tertiary_value": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_stddev_samp_fields": { "matches_played": [ - 31 + 32 ], "secondary_value": [ - 31 + 32 ], "tertiary_value": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 2211 + 2207 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_stream_cursor_value_input": { "matches_played": [ - 40 + 41 ], "player_avatar_url": [ - 83 + 84 ], "player_country": [ - 83 + 84 ], "player_custom_avatar_url": [ - 83 + 84 ], "player_name": [ - 83 + 84 ], "player_steam_id": [ - 83 + 84 ], "secondary_value": [ - 1841 + 1842 ], "tertiary_value": [ - 1841 + 1842 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_sum_fields": { "matches_played": [ - 40 + 41 ], "secondary_value": [ - 1841 + 1842 ], "tertiary_value": [ - 1841 + 1842 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_updates": { "_inc": [ - 2199 + 2195 ], "_set": [ - 2206 + 2202 ], "where": [ - 2198 + 2194 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_var_pop_fields": { "matches_played": [ - 31 + 32 ], "secondary_value": [ - 31 + 32 ], "tertiary_value": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_var_samp_fields": { "matches_played": [ - 31 + 32 ], "secondary_value": [ - 31 + 32 ], "tertiary_value": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "leaderboard_entries_variance_fields": { "matches_played": [ - 31 + 32 ], "secondary_value": [ - 31 + 32 ], "tertiary_value": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 5458 + 5454 ], "_winning_tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_divisions": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "season_divisions": [ - 2369, + 2365, { "distinct_on": [ - 2388, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2386, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2376 + 2372 ] } ], "season_divisions_aggregate": [ - 2370, + 2366, { "distinct_on": [ - 2388, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2386, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2376 + 2372 ] } ], "tier": [ - 4545 + 4541 ], "__typename": [ - 83 + 84 ] }, "league_divisions_aggregate": { "aggregate": [ - 2220 + 2216 ], "nodes": [ - 2218 + 2214 ], "__typename": [ - 83 + 84 ] }, "league_divisions_aggregate_fields": { "avg": [ - 2221 + 2217 ], "count": [ - 40, + 41, { "columns": [ - 2233, + 2229, "[league_divisions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2226 + 2222 ], "min": [ - 2227 + 2223 ], "stddev": [ - 2235 + 2231 ], "stddev_pop": [ - 2236 + 2232 ], "stddev_samp": [ - 2237 + 2233 ], "sum": [ - 2240 + 2236 ], "var_pop": [ - 2243 + 2239 ], "var_samp": [ - 2244 + 2240 ], "variance": [ - 2245 + 2241 ], "__typename": [ - 83 + 84 ] }, "league_divisions_avg_fields": { "tier": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_divisions_bool_exp": { "_and": [ - 2222 + 2218 ], "_not": [ - 2222 + 2218 ], "_or": [ - 2222 + 2218 ], "created_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "name": [ - 85 + 86 ], "season_divisions": [ - 2376 + 2372 ], "season_divisions_aggregate": [ - 2371 + 2367 ], "tier": [ - 4546 + 4542 ], "__typename": [ - 83 + 84 ] }, "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 4545 + 4541 ], "__typename": [ - 83 + 84 ] }, "league_divisions_insert_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "season_divisions": [ - 2375 + 2371 ], "tier": [ - 4545 + 4541 ], "__typename": [ - 83 + 84 ] }, "league_divisions_max_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "tier": [ - 4545 + 4541 ], "__typename": [ - 83 + 84 ] }, "league_divisions_min_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "tier": [ - 4545 + 4541 ], "__typename": [ - 83 + 84 ] }, "league_divisions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2218 + 2214 ], "__typename": [ - 83 + 84 ] }, "league_divisions_obj_rel_insert_input": { "data": [ - 2225 + 2221 ], "on_conflict": [ - 2230 + 2226 ], "__typename": [ - 83 + 84 ] }, "league_divisions_on_conflict": { "constraint": [ - 2223 + 2219 ], "update_columns": [ - 2241 + 2237 ], "where": [ - 2222 + 2218 ], "__typename": [ - 83 + 84 ] }, "league_divisions_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "season_divisions_aggregate": [ - 2374 + 2370 ], "tier": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_divisions_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "tier": [ - 4545 + 4541 ], "__typename": [ - 83 + 84 ] }, "league_divisions_stddev_fields": { "tier": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_divisions_stddev_pop_fields": { "tier": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_divisions_stddev_samp_fields": { "tier": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_divisions_stream_cursor_input": { "initial_value": [ - 2239 + 2235 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "tier": [ - 4545 + 4541 ], "__typename": [ - 83 + 84 ] }, "league_divisions_sum_fields": { "tier": [ - 4545 + 4541 ], "__typename": [ - 83 + 84 ] }, "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 2224 + 2220 ], "_set": [ - 2234 + 2230 ], "where": [ - 2222 + 2218 ], "__typename": [ - 83 + 84 ] }, "league_divisions_var_pop_fields": { "tier": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_divisions_var_samp_fields": { "tier": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_divisions_variance_fields": { "tier": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks": { "closes_at": [ - 4958 + 4954 ], "created_at": [ - 4958 + 4954 ], "default_match_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "opens_at": [ - 4958 + 4954 ], "season": [ - 2394 + 2390 ], "week_number": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_aggregate": { "aggregate": [ - 2250 + 2246 ], "nodes": [ - 2246 + 2242 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 2249 + 2245 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 2267 + 2263 ], "distinct": [ - 5 + 6 ], "filter": [ - 2255 + 2251 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_aggregate_fields": { "avg": [ - 2253 + 2249 ], "count": [ - 40, + 41, { "columns": [ - 2267, + 2263, "[league_match_weeks_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2259 + 2255 ], "min": [ - 2261 + 2257 ], "stddev": [ - 2269 + 2265 ], "stddev_pop": [ - 2271 + 2267 ], "stddev_samp": [ - 2273 + 2269 ], "sum": [ - 2277 + 2273 ], "var_pop": [ - 2281 + 2277 ], "var_samp": [ - 2283 + 2279 ], "variance": [ - 2285 + 2281 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_aggregate_order_by": { "avg": [ - 2254 + 2250 ], "count": [ - 3377 + 3373 ], "max": [ - 2260 + 2256 ], "min": [ - 2262 + 2258 ], "stddev": [ - 2270 + 2266 ], "stddev_pop": [ - 2272 + 2268 ], "stddev_samp": [ - 2274 + 2270 ], "sum": [ - 2278 + 2274 ], "var_pop": [ - 2282 + 2278 ], "var_samp": [ - 2284 + 2280 ], "variance": [ - 2286 + 2282 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 2258 + 2254 ], "on_conflict": [ - 2264 + 2260 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_avg_fields": { "week_number": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_avg_order_by": { "week_number": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_bool_exp": { "_and": [ - 2255 + 2251 ], "_not": [ - 2255 + 2251 ], "_or": [ - 2255 + 2251 ], "closes_at": [ - 4959 + 4955 ], "created_at": [ - 4959 + 4955 ], "default_match_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "league_season_id": [ - 5460 + 5456 ], "opens_at": [ - 4959 + 4955 ], "season": [ - 2399 + 2395 ], "week_number": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_constraint": {}, "league_match_weeks_inc_input": { "week_number": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_insert_input": { "closes_at": [ - 4958 + 4954 ], "created_at": [ - 4958 + 4954 ], "default_match_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "opens_at": [ - 4958 + 4954 ], "season": [ - 2409 + 2405 ], "week_number": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_max_fields": { "closes_at": [ - 4958 + 4954 ], "created_at": [ - 4958 + 4954 ], "default_match_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "opens_at": [ - 4958 + 4954 ], "week_number": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_max_order_by": { "closes_at": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "default_match_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "opens_at": [ - 3377 + 3373 ], "week_number": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_min_fields": { "closes_at": [ - 4958 + 4954 ], "created_at": [ - 4958 + 4954 ], "default_match_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "opens_at": [ - 4958 + 4954 ], "week_number": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_min_order_by": { "closes_at": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "default_match_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "opens_at": [ - 3377 + 3373 ], "week_number": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2246 + 2242 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_on_conflict": { "constraint": [ - 2256 + 2252 ], "update_columns": [ - 2279 + 2275 ], "where": [ - 2255 + 2251 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_order_by": { "closes_at": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "default_match_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "opens_at": [ - 3377 + 3373 ], "season": [ - 2411 + 2407 ], "week_number": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4958 + 4954 ], "created_at": [ - 4958 + 4954 ], "default_match_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "opens_at": [ - 4958 + 4954 ], "week_number": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_stddev_fields": { "week_number": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_stddev_order_by": { "week_number": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_stddev_pop_fields": { "week_number": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_stddev_samp_fields": { "week_number": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 2276 + 2272 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4958 + 4954 ], "created_at": [ - 4958 + 4954 ], "default_match_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "opens_at": [ - 4958 + 4954 ], "week_number": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_sum_fields": { "week_number": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_sum_order_by": { "week_number": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 2257 + 2253 ], "_set": [ - 2268 + 2264 ], "where": [ - 2255 + 2251 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_var_pop_fields": { "week_number": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_var_samp_fields": { "week_number": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_variance_fields": { "week_number": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_match_weeks_variance_order_by": { "week_number": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs": { "created_at": [ - 4958 + 4954 ], "higher_division": [ - 2218 + 2214 ], "higher_division_id": [ - 5458 + 5454 ], "higher_slots": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "lower_division": [ - 2218 + 2214 ], "lower_division_id": [ - 5458 + 5454 ], "resolved_at": [ - 4958 + 4954 ], "season": [ - 2394 + 2390 ], "tournament": [ - 5394 + 5390 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 2291 + 2287 ], "nodes": [ - 2287 + 2283 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 2290 + 2286 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 2308 + 2304 ], "distinct": [ - 5 + 6 ], "filter": [ - 2296 + 2292 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 2294 + 2290 ], "count": [ - 40, + 41, { "columns": [ - 2308, + 2304, "[league_relegation_playoffs_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2300 + 2296 ], "min": [ - 2302 + 2298 ], "stddev": [ - 2310 + 2306 ], "stddev_pop": [ - 2312 + 2308 ], "stddev_samp": [ - 2314 + 2310 ], "sum": [ - 2318 + 2314 ], "var_pop": [ - 2322 + 2318 ], "var_samp": [ - 2324 + 2320 ], "variance": [ - 2326 + 2322 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_aggregate_order_by": { "avg": [ - 2295 + 2291 ], "count": [ - 3377 + 3373 ], "max": [ - 2301 + 2297 ], "min": [ - 2303 + 2299 ], "stddev": [ - 2311 + 2307 ], "stddev_pop": [ - 2313 + 2309 ], "stddev_samp": [ - 2315 + 2311 ], "sum": [ - 2319 + 2315 ], "var_pop": [ - 2323 + 2319 ], "var_samp": [ - 2325 + 2321 ], "variance": [ - 2327 + 2323 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 2299 + 2295 ], "on_conflict": [ - 2305 + 2301 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_avg_fields": { "higher_slots": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_bool_exp": { "_and": [ - 2296 + 2292 ], "_not": [ - 2296 + 2292 ], "_or": [ - 2296 + 2292 ], "created_at": [ - 4959 + 4955 ], "higher_division": [ - 2222 + 2218 ], "higher_division_id": [ - 5460 + 5456 ], "higher_slots": [ - 41 + 42 ], "id": [ - 5460 + 5456 ], "league_season_id": [ - 5460 + 5456 ], "lower_division": [ - 2222 + 2218 ], "lower_division_id": [ - 5460 + 5456 ], "resolved_at": [ - 4959 + 4955 ], "season": [ - 2399 + 2395 ], "tournament": [ - 5415 + 5411 ], "tournament_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_constraint": {}, "league_relegation_playoffs_inc_input": { "higher_slots": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4958 + 4954 ], "higher_division": [ - 2229 + 2225 ], "higher_division_id": [ - 5458 + 5454 ], "higher_slots": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "lower_division": [ - 2229 + 2225 ], "lower_division_id": [ - 5458 + 5454 ], "resolved_at": [ - 4958 + 4954 ], "season": [ - 2409 + 2405 ], "tournament": [ - 5424 + 5420 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4958 + 4954 ], "higher_division_id": [ - 5458 + 5454 ], "higher_slots": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "lower_division_id": [ - 5458 + 5454 ], "resolved_at": [ - 4958 + 4954 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 3377 + 3373 ], "higher_division_id": [ - 3377 + 3373 ], "higher_slots": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "lower_division_id": [ - 3377 + 3373 ], "resolved_at": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4958 + 4954 ], "higher_division_id": [ - 5458 + 5454 ], "higher_slots": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "lower_division_id": [ - 5458 + 5454 ], "resolved_at": [ - 4958 + 4954 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 3377 + 3373 ], "higher_division_id": [ - 3377 + 3373 ], "higher_slots": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "lower_division_id": [ - 3377 + 3373 ], "resolved_at": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2287 + 2283 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 2297 + 2293 ], "update_columns": [ - 2320 + 2316 ], "where": [ - 2296 + 2292 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_order_by": { "created_at": [ - 3377 + 3373 ], "higher_division": [ - 2231 + 2227 ], "higher_division_id": [ - 3377 + 3373 ], "higher_slots": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "lower_division": [ - 2231 + 2227 ], "lower_division_id": [ - 3377 + 3373 ], "resolved_at": [ - 3377 + 3373 ], "season": [ - 2411 + 2407 ], "tournament": [ - 5426 + 5422 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4958 + 4954 ], "higher_division_id": [ - 5458 + 5454 ], "higher_slots": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "lower_division_id": [ - 5458 + 5454 ], "resolved_at": [ - 4958 + 4954 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_stddev_fields": { "higher_slots": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_stddev_pop_fields": { "higher_slots": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_stddev_samp_fields": { "higher_slots": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 2317 + 2313 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "higher_division_id": [ - 5458 + 5454 ], "higher_slots": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "lower_division_id": [ - 5458 + 5454 ], "resolved_at": [ - 4958 + 4954 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_sum_fields": { "higher_slots": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 2298 + 2294 ], "_set": [ - 2309 + 2305 ], "where": [ - 2296 + 2292 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_var_pop_fields": { "higher_slots": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_var_samp_fields": { "higher_slots": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_variance_fields": { "higher_slots": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals": { "bracket": [ - 5002 + 4998 ], "created_at": [ - 4958 + 4954 ], "e_proposal_status": [ - 949 + 950 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "proposed_by": [ - 4335 + 4331 ], "proposed_by_league_team_season_id": [ - 5458 + 5454 ], "proposed_by_steam_id": [ - 268 + 269 ], "proposed_time": [ - 4958 + 4954 ], "responded_by": [ - 4335 + 4331 ], "responded_by_steam_id": [ - 268 + 269 ], "status": [ - 954 + 955 ], "team_season": [ - 2509 + 2505 ], "tournament_bracket_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 2332 + 2328 ], "nodes": [ - 2328 + 2324 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 2331 + 2327 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 2349 + 2345 ], "distinct": [ - 5 + 6 ], "filter": [ - 2337 + 2333 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 2335 + 2331 ], "count": [ - 40, + 41, { "columns": [ - 2349, + 2345, "[league_scheduling_proposals_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2341 + 2337 ], "min": [ - 2343 + 2339 ], "stddev": [ - 2351 + 2347 ], "stddev_pop": [ - 2353 + 2349 ], "stddev_samp": [ - 2355 + 2351 ], "sum": [ - 2359 + 2355 ], "var_pop": [ - 2363 + 2359 ], "var_samp": [ - 2365 + 2361 ], "variance": [ - 2367 + 2363 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_aggregate_order_by": { "avg": [ - 2336 + 2332 ], "count": [ - 3377 + 3373 ], "max": [ - 2342 + 2338 ], "min": [ - 2344 + 2340 ], "stddev": [ - 2352 + 2348 ], "stddev_pop": [ - 2354 + 2350 ], "stddev_samp": [ - 2356 + 2352 ], "sum": [ - 2360 + 2356 ], "var_pop": [ - 2364 + 2360 ], "var_samp": [ - 2366 + 2362 ], "variance": [ - 2368 + 2364 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 2340 + 2336 ], "on_conflict": [ - 2346 + 2342 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_avg_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "responded_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "responded_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_bool_exp": { "_and": [ - 2337 + 2333 ], "_not": [ - 2337 + 2333 ], "_or": [ - 2337 + 2333 ], "bracket": [ - 5013 + 5009 ], "created_at": [ - 4959 + 4955 ], "e_proposal_status": [ - 952 + 953 ], "id": [ - 5460 + 5456 ], "message": [ - 85 + 86 ], "proposed_by": [ - 4339 + 4335 ], "proposed_by_league_team_season_id": [ - 5460 + 5456 ], "proposed_by_steam_id": [ - 270 + 271 ], "proposed_time": [ - 4959 + 4955 ], "responded_by": [ - 4339 + 4335 ], "responded_by_steam_id": [ - 270 + 271 ], "status": [ - 955 + 956 ], "team_season": [ - 2518 + 2514 ], "tournament_bracket_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_constraint": {}, "league_scheduling_proposals_inc_input": { "proposed_by_steam_id": [ - 268 + 269 ], "responded_by_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_insert_input": { "bracket": [ - 5022 + 5018 ], "created_at": [ - 4958 + 4954 ], "e_proposal_status": [ - 960 + 961 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "proposed_by": [ - 4346 + 4342 ], "proposed_by_league_team_season_id": [ - 5458 + 5454 ], "proposed_by_steam_id": [ - 268 + 269 ], "proposed_time": [ - 4958 + 4954 ], "responded_by": [ - 4346 + 4342 ], "responded_by_steam_id": [ - 268 + 269 ], "status": [ - 954 + 955 ], "team_season": [ - 2527 + 2523 ], "tournament_bracket_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "proposed_by_league_team_season_id": [ - 5458 + 5454 ], "proposed_by_steam_id": [ - 268 + 269 ], "proposed_time": [ - 4958 + 4954 ], "responded_by_steam_id": [ - 268 + 269 ], "tournament_bracket_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "message": [ - 3377 + 3373 ], "proposed_by_league_team_season_id": [ - 3377 + 3373 ], "proposed_by_steam_id": [ - 3377 + 3373 ], "proposed_time": [ - 3377 + 3373 ], "responded_by_steam_id": [ - 3377 + 3373 ], "tournament_bracket_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "proposed_by_league_team_season_id": [ - 5458 + 5454 ], "proposed_by_steam_id": [ - 268 + 269 ], "proposed_time": [ - 4958 + 4954 ], "responded_by_steam_id": [ - 268 + 269 ], "tournament_bracket_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "message": [ - 3377 + 3373 ], "proposed_by_league_team_season_id": [ - 3377 + 3373 ], "proposed_by_steam_id": [ - 3377 + 3373 ], "proposed_time": [ - 3377 + 3373 ], "responded_by_steam_id": [ - 3377 + 3373 ], "tournament_bracket_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2328 + 2324 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 2338 + 2334 ], "update_columns": [ - 2361 + 2357 ], "where": [ - 2337 + 2333 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_order_by": { "bracket": [ - 5024 + 5020 ], "created_at": [ - 3377 + 3373 ], "e_proposal_status": [ - 962 + 963 ], "id": [ - 3377 + 3373 ], "message": [ - 3377 + 3373 ], "proposed_by": [ - 4348 + 4344 ], "proposed_by_league_team_season_id": [ - 3377 + 3373 ], "proposed_by_steam_id": [ - 3377 + 3373 ], "proposed_time": [ - 3377 + 3373 ], "responded_by": [ - 4348 + 4344 ], "responded_by_steam_id": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "team_season": [ - 2529 + 2525 ], "tournament_bracket_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "proposed_by_league_team_season_id": [ - 5458 + 5454 ], "proposed_by_steam_id": [ - 268 + 269 ], "proposed_time": [ - 4958 + 4954 ], "responded_by_steam_id": [ - 268 + 269 ], "status": [ - 954 + 955 ], "tournament_bracket_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_stddev_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "responded_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "responded_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_stddev_pop_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "responded_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "responded_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_stddev_samp_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "responded_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "responded_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 2358 + 2354 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "proposed_by_league_team_season_id": [ - 5458 + 5454 ], "proposed_by_steam_id": [ - 268 + 269 ], "proposed_time": [ - 4958 + 4954 ], "responded_by_steam_id": [ - 268 + 269 ], "status": [ - 954 + 955 ], "tournament_bracket_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_sum_fields": { "proposed_by_steam_id": [ - 268 + 269 ], "responded_by_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "responded_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 2339 + 2335 ], "_set": [ - 2350 + 2346 ], "where": [ - 2337 + 2333 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_var_pop_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "responded_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "responded_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_var_samp_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "responded_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "responded_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_variance_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "responded_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "responded_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions": { "created_at": [ - 4958 + 4954 ], "division": [ - 2218 + 2214 ], "id": [ - 5458 + 5454 ], "league_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "season": [ - 2394 + 2390 ], "standings": [ - 5530, + 5526, { "distinct_on": [ - 5546, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5545, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5539 + 5535 ] } ], "standings_aggregate": [ - 5531, + 5527, { "distinct_on": [ - 5546, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5545, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5539 + 5535 ] } ], "tournament": [ - 5394 + 5390 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_aggregate": { "aggregate": [ - 2373 + 2369 ], "nodes": [ - 2369 + 2365 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 2372 + 2368 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 2388 + 2384 ], "distinct": [ - 5 + 6 ], "filter": [ - 2376 + 2372 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2388, + 2384, "[league_season_divisions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2379 + 2375 ], "min": [ - 2381 + 2377 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_aggregate_order_by": { "count": [ - 3377 + 3373 ], "max": [ - 2380 + 2376 ], "min": [ - 2382 + 2378 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 2378 + 2374 ], "on_conflict": [ - 2385 + 2381 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_bool_exp": { "_and": [ - 2376 + 2372 ], "_not": [ - 2376 + 2372 ], "_or": [ - 2376 + 2372 ], "created_at": [ - 4959 + 4955 ], "division": [ - 2222 + 2218 ], "id": [ - 5460 + 5456 ], "league_division_id": [ - 5460 + 5456 ], "league_season_id": [ - 5460 + 5456 ], "season": [ - 2399 + 2395 ], "standings": [ - 5539 + 5535 ], "standings_aggregate": [ - 5532 + 5528 ], "tournament": [ - 5415 + 5411 ], "tournament_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4958 + 4954 ], "division": [ - 2229 + 2225 ], "id": [ - 5458 + 5454 ], "league_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "season": [ - 2409 + 2405 ], "standings": [ - 5536 + 5532 ], "tournament": [ - 5424 + 5420 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_max_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "league_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_max_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_division_id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_min_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "league_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_min_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_division_id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2369 + 2365 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 2378 + 2374 ], "on_conflict": [ - 2385 + 2381 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_on_conflict": { "constraint": [ - 2377 + 2373 ], "update_columns": [ - 2392 + 2388 ], "where": [ - 2376 + 2372 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_order_by": { "created_at": [ - 3377 + 3373 ], "division": [ - 2231 + 2227 ], "id": [ - 3377 + 3373 ], "league_division_id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "season": [ - 2411 + 2407 ], "standings_aggregate": [ - 5535 + 5531 ], "tournament": [ - 5426 + 5422 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "league_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 2391 + 2387 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "league_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 2389 + 2385 ], "where": [ - 2376 + 2372 ], "__typename": [ - 83 + 84 ] }, "league_seasons": { "auto_regular_season_format": [ - 5 + 6 ], "awards": [ - 199, + 200, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "awards_aggregate": [ - 200, + 201, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "can_register": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "created_by_steam_id": [ - 268 + 269 ], "default_best_of": [ - 40 + 41 ], "direct_promote_count": [ - 40 + 41 ], "direct_relegate_count": [ - 40 + 41 ], "e_league_season_status": [ - 991 + 992 ], "games_per_week": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "is_league_admin": [ - 5 + 6 ], "is_roster_locked": [ - 5 + 6 ], "match_options_id": [ - 5458 + 5454 ], "match_weeks": [ - 2246, + 2242, { "distinct_on": [ - 2267, + 2263, "[league_match_weeks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2265, + 2261, "[league_match_weeks_order_by!]" ], "where": [ - 2255 + 2251 ] } ], "match_weeks_aggregate": [ - 2247, + 2243, { "distinct_on": [ - 2267, + 2263, "[league_match_weeks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2265, + 2261, "[league_match_weeks_order_by!]" ], "where": [ - 2255 + 2251 ] } ], "match_weeks_count": [ - 40 + 41 ], "max_roster_size": [ - 40 + 41 ], "min_roster_size": [ - 40 + 41 ], "movements": [ - 2427, + 2423, { "distinct_on": [ - 2448, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2446, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2436 + 2432 ] } ], "movements_aggregate": [ - 2428, + 2424, { "distinct_on": [ - 2448, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2446, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2436 + 2432 ] } ], "my_registration": [ - 2509, + 2505, { "distinct_on": [ - 2531, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2529, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2518 + 2514 ] } ], "name": [ - 83 + 84 ], "options": [ - 3019 + 3015 ], "player_stats": [ - 5563, + 5559, { "distinct_on": [ - 5589, + 5585, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5588, + 5584, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5582 + 5578 ] } ], "player_stats_aggregate": [ - 5564, + 5560, { "distinct_on": [ - 5589, + 5585, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5588, + 5584, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5582 + 5578 ] } ], "playoff_best_of": [ - 40 + 41 ], "playoff_round_best_of": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "playoff_seats": [ - 40 + 41 ], "playoff_stage_type": [ - 1485 + 1486 ], "playoff_third_place_match": [ - 5 + 6 ], "promote_count": [ - 40 + 41 ], "regular_season_stage_type": [ - 1485 + 1486 ], "relegate_count": [ - 40 + 41 ], "relegation_down_count": [ - 40 + 41 ], "relegation_playoffs": [ - 2287, + 2283, { "distinct_on": [ - 2308, + 2304, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2306, + 2302, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2296 + 2292 ] } ], "relegation_playoffs_aggregate": [ - 2288, + 2284, { "distinct_on": [ - 2308, + 2304, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2306, + 2302, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2296 + 2292 ] } ], "relegation_up_count": [ - 40 + 41 ], "roster_lock_at": [ - 4958 + 4954 ], "season_divisions": [ - 2369, + 2365, { "distinct_on": [ - 2388, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2386, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2376 + 2372 ] } ], "season_divisions_aggregate": [ - 2370, + 2366, { "distinct_on": [ - 2388, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2386, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2376 + 2372 ] } ], "season_number": [ - 40 + 41 ], "signup_closes_at": [ - 4958 + 4954 ], "signup_opens_at": [ - 4958 + 4954 ], "standings": [ - 5530, + 5526, { "distinct_on": [ - 5546, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5545, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5539 + 5535 ] } ], "standings_aggregate": [ - 5531, + 5527, { "distinct_on": [ - 5546, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5545, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5539 + 5535 ] } ], "starts_at": [ - 4958 + 4954 ], "status": [ - 996 + 997 ], "team_seasons": [ - 2509, + 2505, { "distinct_on": [ - 2531, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2529, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2518 + 2514 ] } ], "team_seasons_aggregate": [ - 2510, + 2506, { "distinct_on": [ - 2531, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2529, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2518 + 2514 ] } ], "week_best_of": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "__typename": [ - 83 + 84 ] }, "league_seasons_aggregate": { "aggregate": [ - 2396 + 2392 ], "nodes": [ - 2394 + 2390 ], "__typename": [ - 83 + 84 ] }, "league_seasons_aggregate_fields": { "avg": [ - 2398 + 2394 ], "count": [ - 40, + 41, { "columns": [ - 2414, + 2410, "[league_seasons_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2406 + 2402 ], "min": [ - 2407 + 2403 ], "stddev": [ - 2416 + 2412 ], "stddev_pop": [ - 2417 + 2413 ], "stddev_samp": [ - 2418 + 2414 ], "sum": [ - 2421 + 2417 ], "var_pop": [ - 2424 + 2420 ], "var_samp": [ - 2425 + 2421 ], "variance": [ - 2426 + 2422 ], "__typename": [ - 83 + 84 ] }, "league_seasons_append_input": { "playoff_round_best_of": [ - 2191 + 2187 ], "week_best_of": [ - 2191 + 2187 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "league_seasons_bool_exp": { "_and": [ - 2399 + 2395 ], "_not": [ - 2399 + 2395 ], "_or": [ - 2399 + 2395 ], "auto_regular_season_format": [ - 6 + 7 ], "awards": [ - 208 + 209 ], "awards_aggregate": [ - 201 + 202 ], "can_register": [ - 6 + 7 ], "created_at": [ - 4959 + 4955 ], "created_by_steam_id": [ - 270 + 271 ], "default_best_of": [ - 41 + 42 ], "direct_promote_count": [ - 41 + 42 ], "direct_relegate_count": [ - 41 + 42 ], "e_league_season_status": [ - 994 + 995 ], "games_per_week": [ - 41 + 42 ], "id": [ - 5460 + 5456 ], "is_league_admin": [ - 6 + 7 ], "is_roster_locked": [ - 6 + 7 ], "match_options_id": [ - 5460 + 5456 ], "match_weeks": [ - 2255 + 2251 ], "match_weeks_aggregate": [ - 2248 + 2244 ], "match_weeks_count": [ - 41 + 42 ], "max_roster_size": [ - 41 + 42 ], "min_roster_size": [ - 41 + 42 ], "movements": [ - 2436 + 2432 ], "movements_aggregate": [ - 2429 + 2425 ], "my_registration": [ - 2518 + 2514 ], "name": [ - 85 + 86 ], "options": [ - 3030 + 3026 ], "player_stats": [ - 5582 + 5578 ], "player_stats_aggregate": [ - 5565 + 5561 ], "playoff_best_of": [ - 41 + 42 ], "playoff_round_best_of": [ - 2193 + 2189 ], "playoff_seats": [ - 41 + 42 ], "playoff_stage_type": [ - 1486 + 1487 ], "playoff_third_place_match": [ - 6 + 7 ], "promote_count": [ - 41 + 42 ], "regular_season_stage_type": [ - 1486 + 1487 ], "relegate_count": [ - 41 + 42 ], "relegation_down_count": [ - 41 + 42 ], "relegation_playoffs": [ - 2296 + 2292 ], "relegation_playoffs_aggregate": [ - 2289 + 2285 ], "relegation_up_count": [ - 41 + 42 ], "roster_lock_at": [ - 4959 + 4955 ], "season_divisions": [ - 2376 + 2372 ], "season_divisions_aggregate": [ - 2371 + 2367 ], "season_number": [ - 41 + 42 ], "signup_closes_at": [ - 4959 + 4955 ], "signup_opens_at": [ - 4959 + 4955 ], "standings": [ - 5539 + 5535 ], "standings_aggregate": [ - 5532 + 5528 ], "starts_at": [ - 4959 + 4955 ], "status": [ - 997 + 998 ], "team_seasons": [ - 2518 + 2514 ], "team_seasons_aggregate": [ - 2511 + 2507 ], "week_best_of": [ - 2193 + 2189 ], "__typename": [ - 83 + 84 ] }, "league_seasons_constraint": {}, "league_seasons_delete_at_path_input": { "playoff_round_best_of": [ - 83 + 84 ], "week_best_of": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "league_seasons_delete_elem_input": { "playoff_round_best_of": [ - 40 + 41 ], "week_best_of": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_seasons_delete_key_input": { "playoff_round_best_of": [ - 83 + 84 ], "week_best_of": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "league_seasons_inc_input": { "created_by_steam_id": [ - 268 + 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": [ - 83 + 84 ] }, "league_seasons_insert_input": { "auto_regular_season_format": [ - 5 + 6 ], "awards": [ - 205 + 206 ], "created_at": [ - 4958 + 4954 ], "created_by_steam_id": [ - 268 + 269 ], "default_best_of": [ - 40 + 41 ], "direct_promote_count": [ - 40 + 41 ], "direct_relegate_count": [ - 40 + 41 ], "e_league_season_status": [ - 1002 + 1003 ], "games_per_week": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "match_weeks": [ - 2252 + 2248 ], "match_weeks_count": [ - 40 + 41 ], "max_roster_size": [ - 40 + 41 ], "min_roster_size": [ - 40 + 41 ], "movements": [ - 2433 + 2429 ], "name": [ - 83 + 84 ], "options": [ - 3039 + 3035 ], "player_stats": [ - 5579 + 5575 ], "playoff_best_of": [ - 40 + 41 ], "playoff_round_best_of": [ - 2191 + 2187 ], "playoff_seats": [ - 40 + 41 ], "playoff_stage_type": [ - 1485 + 1486 ], "playoff_third_place_match": [ - 5 + 6 ], "promote_count": [ - 40 + 41 ], "regular_season_stage_type": [ - 1485 + 1486 ], "relegate_count": [ - 40 + 41 ], "relegation_down_count": [ - 40 + 41 ], "relegation_playoffs": [ - 2293 + 2289 ], "relegation_up_count": [ - 40 + 41 ], "roster_lock_at": [ - 4958 + 4954 ], "season_divisions": [ - 2375 + 2371 ], "season_number": [ - 40 + 41 ], "signup_closes_at": [ - 4958 + 4954 ], "signup_opens_at": [ - 4958 + 4954 ], "standings": [ - 5536 + 5532 ], "starts_at": [ - 4958 + 4954 ], "status": [ - 996 + 997 ], "team_seasons": [ - 2515 + 2511 ], "week_best_of": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "league_seasons_max_fields": { "created_at": [ - 4958 + 4954 ], "created_by_steam_id": [ - 268 + 269 ], "default_best_of": [ - 40 + 41 ], "direct_promote_count": [ - 40 + 41 ], "direct_relegate_count": [ - 40 + 41 ], "games_per_week": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "match_weeks_count": [ - 40 + 41 ], "max_roster_size": [ - 40 + 41 ], "min_roster_size": [ - 40 + 41 ], "name": [ - 83 + 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": [ - 4958 + 4954 ], "season_number": [ - 40 + 41 ], "signup_closes_at": [ - 4958 + 4954 ], "signup_opens_at": [ - 4958 + 4954 ], "starts_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "league_seasons_min_fields": { "created_at": [ - 4958 + 4954 ], "created_by_steam_id": [ - 268 + 269 ], "default_best_of": [ - 40 + 41 ], "direct_promote_count": [ - 40 + 41 ], "direct_relegate_count": [ - 40 + 41 ], "games_per_week": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "match_weeks_count": [ - 40 + 41 ], "max_roster_size": [ - 40 + 41 ], "min_roster_size": [ - 40 + 41 ], "name": [ - 83 + 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": [ - 4958 + 4954 ], "season_number": [ - 40 + 41 ], "signup_closes_at": [ - 4958 + 4954 ], "signup_opens_at": [ - 4958 + 4954 ], "starts_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "league_seasons_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2394 + 2390 ], "__typename": [ - 83 + 84 ] }, "league_seasons_obj_rel_insert_input": { "data": [ - 2405 + 2401 ], "on_conflict": [ - 2410 + 2406 ], "__typename": [ - 83 + 84 ] }, "league_seasons_on_conflict": { "constraint": [ - 2400 + 2396 ], "update_columns": [ - 2422 + 2418 ], "where": [ - 2399 + 2395 ], "__typename": [ - 83 + 84 ] }, "league_seasons_order_by": { "auto_regular_season_format": [ - 3377 + 3373 ], "awards_aggregate": [ - 204 + 205 ], "can_register": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "created_by_steam_id": [ - 3377 + 3373 ], "default_best_of": [ - 3377 + 3373 ], "direct_promote_count": [ - 3377 + 3373 ], "direct_relegate_count": [ - 3377 + 3373 ], "e_league_season_status": [ - 1004 + 1005 ], "games_per_week": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "is_league_admin": [ - 3377 + 3373 ], "is_roster_locked": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "match_weeks_aggregate": [ - 2251 + 2247 ], "match_weeks_count": [ - 3377 + 3373 ], "max_roster_size": [ - 3377 + 3373 ], "min_roster_size": [ - 3377 + 3373 ], "movements_aggregate": [ - 2432 + 2428 ], "my_registration_aggregate": [ - 2514 + 2510 ], "name": [ - 3377 + 3373 ], "options": [ - 3041 + 3037 ], "player_stats_aggregate": [ - 5578 + 5574 ], "playoff_best_of": [ - 3377 + 3373 ], "playoff_round_best_of": [ - 3377 + 3373 ], "playoff_seats": [ - 3377 + 3373 ], "playoff_stage_type": [ - 3377 + 3373 ], "playoff_third_place_match": [ - 3377 + 3373 ], "promote_count": [ - 3377 + 3373 ], "regular_season_stage_type": [ - 3377 + 3373 ], "relegate_count": [ - 3377 + 3373 ], "relegation_down_count": [ - 3377 + 3373 ], "relegation_playoffs_aggregate": [ - 2292 + 2288 ], "relegation_up_count": [ - 3377 + 3373 ], "roster_lock_at": [ - 3377 + 3373 ], "season_divisions_aggregate": [ - 2374 + 2370 ], "season_number": [ - 3377 + 3373 ], "signup_closes_at": [ - 3377 + 3373 ], "signup_opens_at": [ - 3377 + 3373 ], "standings_aggregate": [ - 5535 + 5531 ], "starts_at": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "team_seasons_aggregate": [ - 2514 + 2510 ], "week_best_of": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_seasons_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 2191 + 2187 ], "week_best_of": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "league_seasons_select_column": {}, "league_seasons_set_input": { "auto_regular_season_format": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "created_by_steam_id": [ - 268 + 269 ], "default_best_of": [ - 40 + 41 ], "direct_promote_count": [ - 40 + 41 ], "direct_relegate_count": [ - 40 + 41 ], "games_per_week": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "match_weeks_count": [ - 40 + 41 ], "max_roster_size": [ - 40 + 41 ], "min_roster_size": [ - 40 + 41 ], "name": [ - 83 + 84 ], "playoff_best_of": [ - 40 + 41 ], "playoff_round_best_of": [ - 2191 + 2187 ], "playoff_seats": [ - 40 + 41 ], "playoff_stage_type": [ - 1485 + 1486 ], "playoff_third_place_match": [ - 5 + 6 ], "promote_count": [ - 40 + 41 ], "regular_season_stage_type": [ - 1485 + 1486 ], "relegate_count": [ - 40 + 41 ], "relegation_down_count": [ - 40 + 41 ], "relegation_up_count": [ - 40 + 41 ], "roster_lock_at": [ - 4958 + 4954 ], "season_number": [ - 40 + 41 ], "signup_closes_at": [ - 4958 + 4954 ], "signup_opens_at": [ - 4958 + 4954 ], "starts_at": [ - 4958 + 4954 ], "status": [ - 996 + 997 ], "week_best_of": [ - 2191 + 2187 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "league_seasons_stream_cursor_input": { "initial_value": [ - 2420 + 2416 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "league_seasons_stream_cursor_value_input": { "auto_regular_season_format": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "created_by_steam_id": [ - 268 + 269 ], "default_best_of": [ - 40 + 41 ], "direct_promote_count": [ - 40 + 41 ], "direct_relegate_count": [ - 40 + 41 ], "games_per_week": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "match_weeks_count": [ - 40 + 41 ], "max_roster_size": [ - 40 + 41 ], "min_roster_size": [ - 40 + 41 ], "name": [ - 83 + 84 ], "playoff_best_of": [ - 40 + 41 ], "playoff_round_best_of": [ - 2191 + 2187 ], "playoff_seats": [ - 40 + 41 ], "playoff_stage_type": [ - 1485 + 1486 ], "playoff_third_place_match": [ - 5 + 6 ], "promote_count": [ - 40 + 41 ], "regular_season_stage_type": [ - 1485 + 1486 ], "relegate_count": [ - 40 + 41 ], "relegation_down_count": [ - 40 + 41 ], "relegation_up_count": [ - 40 + 41 ], "roster_lock_at": [ - 4958 + 4954 ], "season_number": [ - 40 + 41 ], "signup_closes_at": [ - 4958 + 4954 ], "signup_opens_at": [ - 4958 + 4954 ], "starts_at": [ - 4958 + 4954 ], "status": [ - 996 + 997 ], "week_best_of": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "league_seasons_sum_fields": { "created_by_steam_id": [ - 268 + 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": [ - 83 + 84 ] }, "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 2397 + 2393 ], "_delete_at_path": [ - 2401 + 2397 ], "_delete_elem": [ - 2402 + 2398 ], "_delete_key": [ - 2403 + 2399 ], "_inc": [ - 2404 + 2400 ], "_prepend": [ - 2413 + 2409 ], "_set": [ - 2415 + 2411 ], "where": [ - 2399 + 2395 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "league_team_movements": { "approved_at": [ - 4958 + 4954 ], "approved_by": [ - 4335 + 4331 ], "approved_by_steam_id": [ - 268 + 269 ], "computed_to_division": [ - 2218 + 2214 ], "computed_to_division_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "e_movement_type": [ - 928 + 929 ], "final_rank": [ - 40 + 41 ], "final_to_division": [ - 2218 + 2214 ], "final_to_division_id": [ - 5458 + 5454 ], "from_division": [ - 2218 + 2214 ], "from_division_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team": [ - 2551 + 2547 ], "league_team_id": [ - 5458 + 5454 ], "season": [ - 2394 + 2390 ], "type": [ - 933 + 934 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_aggregate": { "aggregate": [ - 2431 + 2427 ], "nodes": [ - 2427 + 2423 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_aggregate_bool_exp": { "count": [ - 2430 + 2426 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 2448 + 2444 ], "distinct": [ - 5 + 6 ], "filter": [ - 2436 + 2432 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_aggregate_fields": { "avg": [ - 2434 + 2430 ], "count": [ - 40, + 41, { "columns": [ - 2448, + 2444, "[league_team_movements_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2440 + 2436 ], "min": [ - 2442 + 2438 ], "stddev": [ - 2450 + 2446 ], "stddev_pop": [ - 2452 + 2448 ], "stddev_samp": [ - 2454 + 2450 ], "sum": [ - 2458 + 2454 ], "var_pop": [ - 2462 + 2458 ], "var_samp": [ - 2464 + 2460 ], "variance": [ - 2466 + 2462 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_aggregate_order_by": { "avg": [ - 2435 + 2431 ], "count": [ - 3377 + 3373 ], "max": [ - 2441 + 2437 ], "min": [ - 2443 + 2439 ], "stddev": [ - 2451 + 2447 ], "stddev_pop": [ - 2453 + 2449 ], "stddev_samp": [ - 2455 + 2451 ], "sum": [ - 2459 + 2455 ], "var_pop": [ - 2463 + 2459 ], "var_samp": [ - 2465 + 2461 ], "variance": [ - 2467 + 2463 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_arr_rel_insert_input": { "data": [ - 2439 + 2435 ], "on_conflict": [ - 2445 + 2441 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_avg_fields": { "approved_by_steam_id": [ - 31 + 32 ], "final_rank": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 3377 + 3373 ], "final_rank": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_bool_exp": { "_and": [ - 2436 + 2432 ], "_not": [ - 2436 + 2432 ], "_or": [ - 2436 + 2432 ], "approved_at": [ - 4959 + 4955 ], "approved_by": [ - 4339 + 4335 ], "approved_by_steam_id": [ - 270 + 271 ], "computed_to_division": [ - 2222 + 2218 ], "computed_to_division_id": [ - 5460 + 5456 ], "created_at": [ - 4959 + 4955 ], "e_movement_type": [ - 931 + 932 ], "final_rank": [ - 41 + 42 ], "final_to_division": [ - 2222 + 2218 ], "final_to_division_id": [ - 5460 + 5456 ], "from_division": [ - 2222 + 2218 ], "from_division_id": [ - 5460 + 5456 ], "id": [ - 5460 + 5456 ], "league_season_id": [ - 5460 + 5456 ], "league_team": [ - 2554 + 2550 ], "league_team_id": [ - 5460 + 5456 ], "season": [ - 2399 + 2395 ], "type": [ - 934 + 935 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_constraint": {}, "league_team_movements_inc_input": { "approved_by_steam_id": [ - 268 + 269 ], "final_rank": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_insert_input": { "approved_at": [ - 4958 + 4954 ], "approved_by": [ - 4346 + 4342 ], "approved_by_steam_id": [ - 268 + 269 ], "computed_to_division": [ - 2229 + 2225 ], "computed_to_division_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "e_movement_type": [ - 939 + 940 ], "final_rank": [ - 40 + 41 ], "final_to_division": [ - 2229 + 2225 ], "final_to_division_id": [ - 5458 + 5454 ], "from_division": [ - 2229 + 2225 ], "from_division_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team": [ - 2560 + 2556 ], "league_team_id": [ - 5458 + 5454 ], "season": [ - 2409 + 2405 ], "type": [ - 933 + 934 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_max_fields": { "approved_at": [ - 4958 + 4954 ], "approved_by_steam_id": [ - 268 + 269 ], "computed_to_division_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "final_rank": [ - 40 + 41 ], "final_to_division_id": [ - 5458 + 5454 ], "from_division_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_max_order_by": { "approved_at": [ - 3377 + 3373 ], "approved_by_steam_id": [ - 3377 + 3373 ], "computed_to_division_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "final_rank": [ - 3377 + 3373 ], "final_to_division_id": [ - 3377 + 3373 ], "from_division_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "league_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_min_fields": { "approved_at": [ - 4958 + 4954 ], "approved_by_steam_id": [ - 268 + 269 ], "computed_to_division_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "final_rank": [ - 40 + 41 ], "final_to_division_id": [ - 5458 + 5454 ], "from_division_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_min_order_by": { "approved_at": [ - 3377 + 3373 ], "approved_by_steam_id": [ - 3377 + 3373 ], "computed_to_division_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "final_rank": [ - 3377 + 3373 ], "final_to_division_id": [ - 3377 + 3373 ], "from_division_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "league_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2427 + 2423 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_on_conflict": { "constraint": [ - 2437 + 2433 ], "update_columns": [ - 2460 + 2456 ], "where": [ - 2436 + 2432 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_order_by": { "approved_at": [ - 3377 + 3373 ], "approved_by": [ - 4348 + 4344 ], "approved_by_steam_id": [ - 3377 + 3373 ], "computed_to_division": [ - 2231 + 2227 ], "computed_to_division_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "e_movement_type": [ - 941 + 942 ], "final_rank": [ - 3377 + 3373 ], "final_to_division": [ - 2231 + 2227 ], "final_to_division_id": [ - 3377 + 3373 ], "from_division": [ - 2231 + 2227 ], "from_division_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "league_team": [ - 2562 + 2558 ], "league_team_id": [ - 3377 + 3373 ], "season": [ - 2411 + 2407 ], "type": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4958 + 4954 ], "approved_by_steam_id": [ - 268 + 269 ], "computed_to_division_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "final_rank": [ - 40 + 41 ], "final_to_division_id": [ - 5458 + 5454 ], "from_division_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team_id": [ - 5458 + 5454 ], "type": [ - 933 + 934 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_stddev_fields": { "approved_by_steam_id": [ - 31 + 32 ], "final_rank": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 3377 + 3373 ], "final_rank": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_stddev_pop_fields": { "approved_by_steam_id": [ - 31 + 32 ], "final_rank": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 3377 + 3373 ], "final_rank": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_stddev_samp_fields": { "approved_by_steam_id": [ - 31 + 32 ], "final_rank": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 3377 + 3373 ], "final_rank": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 2457 + 2453 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4958 + 4954 ], "approved_by_steam_id": [ - 268 + 269 ], "computed_to_division_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "final_rank": [ - 40 + 41 ], "final_to_division_id": [ - 5458 + 5454 ], "from_division_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team_id": [ - 5458 + 5454 ], "type": [ - 933 + 934 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_sum_fields": { "approved_by_steam_id": [ - 268 + 269 ], "final_rank": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 3377 + 3373 ], "final_rank": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 2438 + 2434 ], "_set": [ - 2449 + 2445 ], "where": [ - 2436 + 2432 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_var_pop_fields": { "approved_by_steam_id": [ - 31 + 32 ], "final_rank": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 3377 + 3373 ], "final_rank": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_var_samp_fields": { "approved_by_steam_id": [ - 31 + 32 ], "final_rank": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 3377 + 3373 ], "final_rank": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_variance_fields": { "approved_by_steam_id": [ - 31 + 32 ], "final_rank": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 3377 + 3373 ], "final_rank": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters": { "added_at": [ - 4958 + 4954 ], "league_team_season_id": [ - 5458 + 5454 ], "player": [ - 4335 + 4331 ], "player_steam_id": [ - 268 + 269 ], "removed_at": [ - 4958 + 4954 ], "removed_reason": [ - 83 + 84 ], "status": [ - 1424 + 1425 ], "team_season": [ - 2509 + 2505 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_aggregate": { "aggregate": [ - 2472 + 2468 ], "nodes": [ - 2468 + 2464 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 2471 + 2467 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 2489 + 2485 ], "distinct": [ - 5 + 6 ], "filter": [ - 2477 + 2473 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_aggregate_fields": { "avg": [ - 2475 + 2471 ], "count": [ - 40, + 41, { "columns": [ - 2489, + 2485, "[league_team_rosters_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2481 + 2477 ], "min": [ - 2483 + 2479 ], "stddev": [ - 2491 + 2487 ], "stddev_pop": [ - 2493 + 2489 ], "stddev_samp": [ - 2495 + 2491 ], "sum": [ - 2499 + 2495 ], "var_pop": [ - 2503 + 2499 ], "var_samp": [ - 2505 + 2501 ], "variance": [ - 2507 + 2503 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_aggregate_order_by": { "avg": [ - 2476 + 2472 ], "count": [ - 3377 + 3373 ], "max": [ - 2482 + 2478 ], "min": [ - 2484 + 2480 ], "stddev": [ - 2492 + 2488 ], "stddev_pop": [ - 2494 + 2490 ], "stddev_samp": [ - 2496 + 2492 ], "sum": [ - 2500 + 2496 ], "var_pop": [ - 2504 + 2500 ], "var_samp": [ - 2506 + 2502 ], "variance": [ - 2508 + 2504 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 2480 + 2476 ], "on_conflict": [ - 2486 + 2482 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_avg_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_bool_exp": { "_and": [ - 2477 + 2473 ], "_not": [ - 2477 + 2473 ], "_or": [ - 2477 + 2473 ], "added_at": [ - 4959 + 4955 ], "league_team_season_id": [ - 5460 + 5456 ], "player": [ - 4339 + 4335 ], "player_steam_id": [ - 270 + 271 ], "removed_at": [ - 4959 + 4955 ], "removed_reason": [ - 85 + 86 ], "status": [ - 1425 + 1426 ], "team_season": [ - 2518 + 2514 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_constraint": {}, "league_team_rosters_inc_input": { "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_insert_input": { "added_at": [ - 4958 + 4954 ], "league_team_season_id": [ - 5458 + 5454 ], "player": [ - 4346 + 4342 ], "player_steam_id": [ - 268 + 269 ], "removed_at": [ - 4958 + 4954 ], "removed_reason": [ - 83 + 84 ], "status": [ - 1424 + 1425 ], "team_season": [ - 2527 + 2523 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_max_fields": { "added_at": [ - 4958 + 4954 ], "league_team_season_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "removed_at": [ - 4958 + 4954 ], "removed_reason": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_max_order_by": { "added_at": [ - 3377 + 3373 ], "league_team_season_id": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "removed_at": [ - 3377 + 3373 ], "removed_reason": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_min_fields": { "added_at": [ - 4958 + 4954 ], "league_team_season_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "removed_at": [ - 4958 + 4954 ], "removed_reason": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_min_order_by": { "added_at": [ - 3377 + 3373 ], "league_team_season_id": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "removed_at": [ - 3377 + 3373 ], "removed_reason": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2468 + 2464 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_on_conflict": { "constraint": [ - 2478 + 2474 ], "update_columns": [ - 2501 + 2497 ], "where": [ - 2477 + 2473 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_order_by": { "added_at": [ - 3377 + 3373 ], "league_team_season_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "player_steam_id": [ - 3377 + 3373 ], "removed_at": [ - 3377 + 3373 ], "removed_reason": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "team_season": [ - 2529 + 2525 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4958 + 4954 ], "league_team_season_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "removed_at": [ - 4958 + 4954 ], "removed_reason": [ - 83 + 84 ], "status": [ - 1424 + 1425 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_stddev_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_stddev_pop_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_stddev_samp_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 2498 + 2494 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4958 + 4954 ], "league_team_season_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "removed_at": [ - 4958 + 4954 ], "removed_reason": [ - 83 + 84 ], "status": [ - 1424 + 1425 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_sum_fields": { "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 2479 + 2475 ], "_set": [ - 2490 + 2486 ], "where": [ - 2477 + 2473 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_var_pop_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_var_samp_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_variance_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons": { "assigned_division": [ - 2218 + 2214 ], "assigned_division_id": [ - 5458 + 5454 ], "captain": [ - 4335 + 4331 ], "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "decline_reason": [ - 83 + 84 ], "e_registration_status": [ - 970 + 971 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team": [ - 2551 + 2547 ], "league_team_id": [ - 5458 + 5454 ], "registered_by": [ - 4335 + 4331 ], "registered_by_steam_id": [ - 268 + 269 ], "requested_division": [ - 2218 + 2214 ], "requested_division_id": [ - 5458 + 5454 ], "roster": [ - 2468, + 2464, { "distinct_on": [ - 2489, + 2485, "[league_team_rosters_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2487, + 2483, "[league_team_rosters_order_by!]" ], "where": [ - 2477 + 2473 ] } ], "roster_aggregate": [ - 2469, + 2465, { "distinct_on": [ - 2489, + 2485, "[league_team_rosters_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2487, + 2483, "[league_team_rosters_order_by!]" ], "where": [ - 2477 + 2473 ] } ], "season": [ - 2394 + 2390 ], "seed": [ - 40 + 41 ], "status": [ - 975 + 976 ], "tournament_team": [ - 5352 + 5348 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_aggregate": { "aggregate": [ - 2513 + 2509 ], "nodes": [ - 2509 + 2505 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 2512 + 2508 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 2531 + 2527 ], "distinct": [ - 5 + 6 ], "filter": [ - 2518 + 2514 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_aggregate_fields": { "avg": [ - 2516 + 2512 ], "count": [ - 40, + 41, { "columns": [ - 2531, + 2527, "[league_team_seasons_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2522 + 2518 ], "min": [ - 2524 + 2520 ], "stddev": [ - 2533 + 2529 ], "stddev_pop": [ - 2535 + 2531 ], "stddev_samp": [ - 2537 + 2533 ], "sum": [ - 2541 + 2537 ], "var_pop": [ - 2545 + 2541 ], "var_samp": [ - 2547 + 2543 ], "variance": [ - 2549 + 2545 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_aggregate_order_by": { "avg": [ - 2517 + 2513 ], "count": [ - 3377 + 3373 ], "max": [ - 2523 + 2519 ], "min": [ - 2525 + 2521 ], "stddev": [ - 2534 + 2530 ], "stddev_pop": [ - 2536 + 2532 ], "stddev_samp": [ - 2538 + 2534 ], "sum": [ - 2542 + 2538 ], "var_pop": [ - 2546 + 2542 ], "var_samp": [ - 2548 + 2544 ], "variance": [ - 2550 + 2546 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 2521 + 2517 ], "on_conflict": [ - 2528 + 2524 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_avg_fields": { "captain_steam_id": [ - 31 + 32 ], "registered_by_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "registered_by_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_bool_exp": { "_and": [ - 2518 + 2514 ], "_not": [ - 2518 + 2514 ], "_or": [ - 2518 + 2514 ], "assigned_division": [ - 2222 + 2218 ], "assigned_division_id": [ - 5460 + 5456 ], "captain": [ - 4339 + 4335 ], "captain_steam_id": [ - 270 + 271 ], "created_at": [ - 4959 + 4955 ], "decline_reason": [ - 85 + 86 ], "e_registration_status": [ - 973 + 974 ], "id": [ - 5460 + 5456 ], "league_season_id": [ - 5460 + 5456 ], "league_team": [ - 2554 + 2550 ], "league_team_id": [ - 5460 + 5456 ], "registered_by": [ - 4339 + 4335 ], "registered_by_steam_id": [ - 270 + 271 ], "requested_division": [ - 2222 + 2218 ], "requested_division_id": [ - 5460 + 5456 ], "roster": [ - 2477 + 2473 ], "roster_aggregate": [ - 2470 + 2466 ], "season": [ - 2399 + 2395 ], "seed": [ - 41 + 42 ], "status": [ - 976 + 977 ], "tournament_team": [ - 5361 + 5357 ], "tournament_team_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_constraint": {}, "league_team_seasons_inc_input": { "captain_steam_id": [ - 268 + 269 ], "registered_by_steam_id": [ - 268 + 269 ], "seed": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_insert_input": { "assigned_division": [ - 2229 + 2225 ], "assigned_division_id": [ - 5458 + 5454 ], "captain": [ - 4346 + 4342 ], "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "decline_reason": [ - 83 + 84 ], "e_registration_status": [ - 981 + 982 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team": [ - 2560 + 2556 ], "league_team_id": [ - 5458 + 5454 ], "registered_by": [ - 4346 + 4342 ], "registered_by_steam_id": [ - 268 + 269 ], "requested_division": [ - 2229 + 2225 ], "requested_division_id": [ - 5458 + 5454 ], "roster": [ - 2474 + 2470 ], "season": [ - 2409 + 2405 ], "seed": [ - 40 + 41 ], "status": [ - 975 + 976 ], "tournament_team": [ - 5370 + 5366 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 5458 + 5454 ], "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "decline_reason": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team_id": [ - 5458 + 5454 ], "registered_by_steam_id": [ - 268 + 269 ], "requested_division_id": [ - 5458 + 5454 ], "seed": [ - 40 + 41 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 3377 + 3373 ], "captain_steam_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "decline_reason": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "league_team_id": [ - 3377 + 3373 ], "registered_by_steam_id": [ - 3377 + 3373 ], "requested_division_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 5458 + 5454 ], "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "decline_reason": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team_id": [ - 5458 + 5454 ], "registered_by_steam_id": [ - 268 + 269 ], "requested_division_id": [ - 5458 + 5454 ], "seed": [ - 40 + 41 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 3377 + 3373 ], "captain_steam_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "decline_reason": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "league_team_id": [ - 3377 + 3373 ], "registered_by_steam_id": [ - 3377 + 3373 ], "requested_division_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2509 + 2505 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 2521 + 2517 ], "on_conflict": [ - 2528 + 2524 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_on_conflict": { "constraint": [ - 2519 + 2515 ], "update_columns": [ - 2543 + 2539 ], "where": [ - 2518 + 2514 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_order_by": { "assigned_division": [ - 2231 + 2227 ], "assigned_division_id": [ - 3377 + 3373 ], "captain": [ - 4348 + 4344 ], "captain_steam_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "decline_reason": [ - 3377 + 3373 ], "e_registration_status": [ - 983 + 984 ], "id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "league_team": [ - 2562 + 2558 ], "league_team_id": [ - 3377 + 3373 ], "registered_by": [ - 4348 + 4344 ], "registered_by_steam_id": [ - 3377 + 3373 ], "requested_division": [ - 2231 + 2227 ], "requested_division_id": [ - 3377 + 3373 ], "roster_aggregate": [ - 2473 + 2469 ], "season": [ - 2411 + 2407 ], "seed": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "tournament_team": [ - 5372 + 5368 ], "tournament_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 5458 + 5454 ], "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "decline_reason": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team_id": [ - 5458 + 5454 ], "registered_by_steam_id": [ - 268 + 269 ], "requested_division_id": [ - 5458 + 5454 ], "seed": [ - 40 + 41 ], "status": [ - 975 + 976 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_stddev_fields": { "captain_steam_id": [ - 31 + 32 ], "registered_by_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "registered_by_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_stddev_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "registered_by_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "registered_by_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_stddev_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "registered_by_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "registered_by_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 2540 + 2536 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 5458 + 5454 ], "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "decline_reason": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team_id": [ - 5458 + 5454 ], "registered_by_steam_id": [ - 268 + 269 ], "requested_division_id": [ - 5458 + 5454 ], "seed": [ - 40 + 41 ], "status": [ - 975 + 976 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_sum_fields": { "captain_steam_id": [ - 268 + 269 ], "registered_by_steam_id": [ - 268 + 269 ], "seed": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "registered_by_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 2520 + 2516 ], "_set": [ - 2532 + 2528 ], "where": [ - 2518 + 2514 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_var_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "registered_by_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "registered_by_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_var_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "registered_by_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "registered_by_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_variance_fields": { "captain_steam_id": [ - 31 + 32 ], "registered_by_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "registered_by_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "league_teams": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "movements": [ - 2427, + 2423, { "distinct_on": [ - 2448, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2446, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2436 + 2432 ] } ], "movements_aggregate": [ - 2428, + 2424, { "distinct_on": [ - 2448, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2446, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2436 + 2432 ] } ], "team": [ - 4909 + 4905 ], "team_id": [ - 5458 + 5454 ], "team_seasons": [ - 2509, + 2505, { "distinct_on": [ - 2531, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2529, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2518 + 2514 ] } ], "team_seasons_aggregate": [ - 2510, + 2506, { "distinct_on": [ - 2531, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2529, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2518 + 2514 ] } ], "__typename": [ - 83 + 84 ] }, "league_teams_aggregate": { "aggregate": [ - 2553 + 2549 ], "nodes": [ - 2551 + 2547 ], "__typename": [ - 83 + 84 ] }, "league_teams_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2564, + 2560, "[league_teams_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2557 + 2553 ], "min": [ - 2558 + 2554 ], "__typename": [ - 83 + 84 ] }, "league_teams_bool_exp": { "_and": [ - 2554 + 2550 ], "_not": [ - 2554 + 2550 ], "_or": [ - 2554 + 2550 ], "created_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "movements": [ - 2436 + 2432 ], "movements_aggregate": [ - 2429 + 2425 ], "team": [ - 4920 + 4916 ], "team_id": [ - 5460 + 5456 ], "team_seasons": [ - 2518 + 2514 ], "team_seasons_aggregate": [ - 2511 + 2507 ], "__typename": [ - 83 + 84 ] }, "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "movements": [ - 2433 + 2429 ], "team": [ - 4929 + 4925 ], "team_id": [ - 5458 + 5454 ], "team_seasons": [ - 2515 + 2511 ], "__typename": [ - 83 + 84 ] }, "league_teams_max_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_teams_min_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_teams_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2551 + 2547 ], "__typename": [ - 83 + 84 ] }, "league_teams_obj_rel_insert_input": { "data": [ - 2556 + 2552 ], "on_conflict": [ - 2561 + 2557 ], "__typename": [ - 83 + 84 ] }, "league_teams_on_conflict": { "constraint": [ - 2555 + 2551 ], "update_columns": [ - 2568 + 2564 ], "where": [ - 2554 + 2550 ], "__typename": [ - 83 + 84 ] }, "league_teams_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "movements_aggregate": [ - 2432 + 2428 ], "team": [ - 4931 + 4927 ], "team_id": [ - 3377 + 3373 ], "team_seasons_aggregate": [ - 2514 + 2510 ], "__typename": [ - 83 + 84 ] }, "league_teams_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_teams_stream_cursor_input": { "initial_value": [ - 2567 + 2563 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 2565 + 2561 ], "where": [ - 2554 + 2550 ], "__typename": [ - 83 + 84 ] }, "lobbies": { "access": [ - 1017 + 1018 ], "created_at": [ - 4958 + 4954 ], "e_lobby_access": [ - 1012 + 1013 ], "id": [ - 5458 + 5454 ], "players": [ - 2589, + 2585, { "distinct_on": [ - 2612, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2610, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2600 + 2596 ] } ], "players_aggregate": [ - 2590, + 2586, { "distinct_on": [ - 2612, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2610, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2600 + 2596 ] } ], "__typename": [ - 83 + 84 ] }, "lobbies_aggregate": { "aggregate": [ - 2572 + 2568 ], "nodes": [ - 2570 + 2566 ], "__typename": [ - 83 + 84 ] }, "lobbies_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2583, + 2579, "[lobbies_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2576 + 2572 ], "min": [ - 2577 + 2573 ], "__typename": [ - 83 + 84 ] }, "lobbies_bool_exp": { "_and": [ - 2573 + 2569 ], "_not": [ - 2573 + 2569 ], "_or": [ - 2573 + 2569 ], "access": [ - 1018 + 1019 ], "created_at": [ - 4959 + 4955 ], "e_lobby_access": [ - 1015 + 1016 ], "id": [ - 5460 + 5456 ], "players": [ - 2600 + 2596 ], "players_aggregate": [ - 2591 + 2587 ], "__typename": [ - 83 + 84 ] }, "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 1017 + 1018 ], "created_at": [ - 4958 + 4954 ], "e_lobby_access": [ - 1023 + 1024 ], "id": [ - 5458 + 5454 ], "players": [ - 2597 + 2593 ], "__typename": [ - 83 + 84 ] }, "lobbies_max_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "lobbies_min_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "lobbies_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2570 + 2566 ], "__typename": [ - 83 + 84 ] }, "lobbies_obj_rel_insert_input": { "data": [ - 2575 + 2571 ], "on_conflict": [ - 2580 + 2576 ], "__typename": [ - 83 + 84 ] }, "lobbies_on_conflict": { "constraint": [ - 2574 + 2570 ], "update_columns": [ - 2587 + 2583 ], "where": [ - 2573 + 2569 ], "__typename": [ - 83 + 84 ] }, "lobbies_order_by": { "access": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "e_lobby_access": [ - 1025 + 1026 ], "id": [ - 3377 + 3373 ], "players_aggregate": [ - 2596 + 2592 ], "__typename": [ - 83 + 84 ] }, "lobbies_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 1017 + 1018 ], "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "lobbies_stream_cursor_input": { "initial_value": [ - 2586 + 2582 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "lobbies_stream_cursor_value_input": { "access": [ - 1017 + 1018 ], "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 2584 + 2580 ], "where": [ - 2573 + 2569 ], "__typename": [ - 83 + 84 ] }, "lobby_players": { "captain": [ - 5 + 6 ], "invited_by_steam_id": [ - 268 + 269 ], "lobby": [ - 2570 + 2566 ], "lobby_id": [ - 5458 + 5454 ], "player": [ - 4335 + 4331 ], "status": [ - 1038 + 1039 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "lobby_players_aggregate": { "aggregate": [ - 2595 + 2591 ], "nodes": [ - 2589 + 2585 ], "__typename": [ - 83 + 84 ] }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 2592 + 2588 ], "bool_or": [ - 2593 + 2589 ], "count": [ - 2594 + 2590 ], "__typename": [ - 83 + 84 ] }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2613 + 2609 ], "distinct": [ - 5 + 6 ], "filter": [ - 2600 + 2596 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2614 + 2610 ], "distinct": [ - 5 + 6 ], "filter": [ - 2600 + 2596 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 2612 + 2608 ], "distinct": [ - 5 + 6 ], "filter": [ - 2600 + 2596 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "lobby_players_aggregate_fields": { "avg": [ - 2598 + 2594 ], "count": [ - 40, + 41, { "columns": [ - 2612, + 2608, "[lobby_players_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2604 + 2600 ], "min": [ - 2606 + 2602 ], "stddev": [ - 2616 + 2612 ], "stddev_pop": [ - 2618 + 2614 ], "stddev_samp": [ - 2620 + 2616 ], "sum": [ - 2624 + 2620 ], "var_pop": [ - 2628 + 2624 ], "var_samp": [ - 2630 + 2626 ], "variance": [ - 2632 + 2628 ], "__typename": [ - 83 + 84 ] }, "lobby_players_aggregate_order_by": { "avg": [ - 2599 + 2595 ], "count": [ - 3377 + 3373 ], "max": [ - 2605 + 2601 ], "min": [ - 2607 + 2603 ], "stddev": [ - 2617 + 2613 ], "stddev_pop": [ - 2619 + 2615 ], "stddev_samp": [ - 2621 + 2617 ], "sum": [ - 2625 + 2621 ], "var_pop": [ - 2629 + 2625 ], "var_samp": [ - 2631 + 2627 ], "variance": [ - 2633 + 2629 ], "__typename": [ - 83 + 84 ] }, "lobby_players_arr_rel_insert_input": { "data": [ - 2603 + 2599 ], "on_conflict": [ - 2609 + 2605 ], "__typename": [ - 83 + 84 ] }, "lobby_players_avg_fields": { "invited_by_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "lobby_players_bool_exp": { "_and": [ - 2600 + 2596 ], "_not": [ - 2600 + 2596 ], "_or": [ - 2600 + 2596 ], "captain": [ - 6 + 7 ], "invited_by_steam_id": [ - 270 + 271 ], "lobby": [ - 2573 + 2569 ], "lobby_id": [ - 5460 + 5456 ], "player": [ - 4339 + 4335 ], "status": [ - 1039 + 1040 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "lobby_players_constraint": {}, "lobby_players_inc_input": { "invited_by_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "lobby_players_insert_input": { "captain": [ - 5 + 6 ], "invited_by_steam_id": [ - 268 + 269 ], "lobby": [ - 2579 + 2575 ], "lobby_id": [ - 5458 + 5454 ], "player": [ - 4346 + 4342 ], "status": [ - 1038 + 1039 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "lobby_players_max_fields": { "invited_by_steam_id": [ - 268 + 269 ], "lobby_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 3377 + 3373 ], "lobby_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "lobby_players_min_fields": { "invited_by_steam_id": [ - 268 + 269 ], "lobby_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 3377 + 3373 ], "lobby_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "lobby_players_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2589 + 2585 ], "__typename": [ - 83 + 84 ] }, "lobby_players_on_conflict": { "constraint": [ - 2601 + 2597 ], "update_columns": [ - 2626 + 2622 ], "where": [ - 2600 + 2596 ], "__typename": [ - 83 + 84 ] }, "lobby_players_order_by": { "captain": [ - 3377 + 3373 ], "invited_by_steam_id": [ - 3377 + 3373 ], "lobby": [ - 2581 + 2577 ], "lobby_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "status": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "lobby_players_pk_columns_input": { "lobby_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "lobby_players_select_column": {}, @@ -44798,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": [ - 268 + 269 ], "lobby_id": [ - 5458 + 5454 ], "status": [ - 1038 + 1039 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "lobby_players_stddev_fields": { "invited_by_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "lobby_players_stddev_pop_fields": { "invited_by_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "lobby_players_stddev_samp_fields": { "invited_by_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "lobby_players_stream_cursor_input": { "initial_value": [ - 2623 + 2619 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "lobby_players_stream_cursor_value_input": { "captain": [ - 5 + 6 ], "invited_by_steam_id": [ - 268 + 269 ], "lobby_id": [ - 5458 + 5454 ], "status": [ - 1038 + 1039 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "lobby_players_sum_fields": { "invited_by_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 2602 + 2598 ], "_set": [ - 2615 + 2611 ], "where": [ - 2600 + 2596 ], "__typename": [ - 83 + 84 ] }, "lobby_players_var_pop_fields": { "invited_by_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "lobby_players_var_samp_fields": { "invited_by_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "lobby_players_variance_fields": { "invited_by_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "map_pools": { "e_type": [ - 1053 + 1054 ], "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "maps": [ - 6118, + 6114, { "distinct_on": [ - 6135, + 6131, "[v_pool_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6134, + 6130, "[v_pool_maps_order_by!]" ], "where": [ - 6127 + 6123 ] } ], "maps_aggregate": [ - 6119, + 6115, { "distinct_on": [ - 6135, + 6131, "[v_pool_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6134, + 6130, "[v_pool_maps_order_by!]" ], "where": [ - 6127 + 6123 ] } ], "seed": [ - 5 + 6 ], "type": [ - 1058 + 1059 ], "__typename": [ - 83 + 84 ] }, "map_pools_aggregate": { "aggregate": [ - 2636 + 2632 ], "nodes": [ - 2634 + 2630 ], "__typename": [ - 83 + 84 ] }, "map_pools_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2647, + 2643, "[map_pools_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2640 + 2636 ], "min": [ - 2641 + 2637 ], "__typename": [ - 83 + 84 ] }, "map_pools_bool_exp": { "_and": [ - 2637 + 2633 ], "_not": [ - 2637 + 2633 ], "_or": [ - 2637 + 2633 ], "e_type": [ - 1056 + 1057 ], "enabled": [ - 6 + 7 ], "id": [ - 5460 + 5456 ], "maps": [ - 6127 + 6123 ], "maps_aggregate": [ - 6120 + 6116 ], "seed": [ - 6 + 7 ], "type": [ - 1059 + 1060 ], "__typename": [ - 83 + 84 ] }, "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 1064 + 1065 ], "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "maps": [ - 6126 + 6122 ], "seed": [ - 5 + 6 ], "type": [ - 1058 + 1059 ], "__typename": [ - 83 + 84 ] }, "map_pools_max_fields": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "map_pools_min_fields": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "map_pools_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2634 + 2630 ], "__typename": [ - 83 + 84 ] }, "map_pools_obj_rel_insert_input": { "data": [ - 2639 + 2635 ], "on_conflict": [ - 2644 + 2640 ], "__typename": [ - 83 + 84 ] }, "map_pools_on_conflict": { "constraint": [ - 2638 + 2634 ], "update_columns": [ - 2651 + 2647 ], "where": [ - 2637 + 2633 ], "__typename": [ - 83 + 84 ] }, "map_pools_order_by": { "e_type": [ - 1066 + 1067 ], "enabled": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "maps_aggregate": [ - 6125 + 6121 ], "seed": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "map_pools_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "map_pools_select_column": {}, "map_pools_set_input": { "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "seed": [ - 5 + 6 ], "type": [ - 1058 + 1059 ], "__typename": [ - 83 + 84 ] }, "map_pools_stream_cursor_input": { "initial_value": [ - 2650 + 2646 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "map_pools_stream_cursor_value_input": { "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "seed": [ - 5 + 6 ], "type": [ - 1058 + 1059 ], "__typename": [ - 83 + 84 ] }, "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 2648 + 2644 ], "where": [ - 2637 + 2633 ], "__typename": [ - 83 + 84 ] }, "maps": { "active_pool": [ - 5 + 6 ], "e_match_type": [ - 1176 + 1177 ], "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "match_maps": [ - 2977, + 2973, { "distinct_on": [ - 2999, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2997, + 2993, "[match_maps_order_by!]" ], "where": [ - 2986 + 2982 ] } ], "match_maps_aggregate": [ - 2978, + 2974, { "distinct_on": [ - 2999, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2997, + 2993, "[match_maps_order_by!]" ], "where": [ - 2986 + 2982 ] } ], "match_veto_picks": [ - 2949, + 2945, { "distinct_on": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2967, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2958 + 2954 ] } ], "match_veto_picks_aggregate": [ - 2950, + 2946, { "distinct_on": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2967, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2958 + 2954 ] } ], "name": [ - 83 + 84 ], "patch": [ - 83 + 84 ], "poster": [ - 83 + 84 ], "type": [ - 1181 + 1182 ], "workshop_map_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "maps_aggregate": { "aggregate": [ - 2659 + 2655 ], "nodes": [ - 2653 + 2649 ], "__typename": [ - 83 + 84 ] }, "maps_aggregate_bool_exp": { "bool_and": [ - 2656 + 2652 ], "bool_or": [ - 2657 + 2653 ], "count": [ - 2658 + 2654 ], "__typename": [ - 83 + 84 ] }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 2675 + 2671 ], "distinct": [ - 5 + 6 ], "filter": [ - 2662 + 2658 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 2676 + 2672 ], "distinct": [ - 5 + 6 ], "filter": [ - 2662 + 2658 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "maps_aggregate_bool_exp_count": { "arguments": [ - 2674 + 2670 ], "distinct": [ - 5 + 6 ], "filter": [ - 2662 + 2658 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "maps_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2674, + 2670, "[maps_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2665 + 2661 ], "min": [ - 2667 + 2663 ], "__typename": [ - 83 + 84 ] }, "maps_aggregate_order_by": { "count": [ - 3377 + 3373 ], "max": [ - 2666 + 2662 ], "min": [ - 2668 + 2664 ], "__typename": [ - 83 + 84 ] }, "maps_arr_rel_insert_input": { "data": [ - 2664 + 2660 ], "on_conflict": [ - 2671 + 2667 ], "__typename": [ - 83 + 84 ] }, "maps_bool_exp": { "_and": [ - 2662 + 2658 ], "_not": [ - 2662 + 2658 ], "_or": [ - 2662 + 2658 ], "active_pool": [ - 6 + 7 ], "e_match_type": [ - 1179 + 1180 ], "enabled": [ - 6 + 7 ], "id": [ - 5460 + 5456 ], "label": [ - 85 + 86 ], "match_maps": [ - 2986 + 2982 ], "match_maps_aggregate": [ - 2979 + 2975 ], "match_veto_picks": [ - 2958 + 2954 ], "match_veto_picks_aggregate": [ - 2951 + 2947 ], "name": [ - 85 + 86 ], "patch": [ - 85 + 86 ], "poster": [ - 85 + 86 ], "type": [ - 1182 + 1183 ], "workshop_map_id": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "maps_constraint": {}, "maps_insert_input": { "active_pool": [ - 5 + 6 ], "e_match_type": [ - 1187 + 1188 ], "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "match_maps": [ - 2983 + 2979 ], "match_veto_picks": [ - 2957 + 2953 ], "name": [ - 83 + 84 ], "patch": [ - 83 + 84 ], "poster": [ - 83 + 84 ], "type": [ - 1181 + 1182 ], "workshop_map_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "maps_max_fields": { "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "name": [ - 83 + 84 ], "patch": [ - 83 + 84 ], "poster": [ - 83 + 84 ], "workshop_map_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "maps_max_order_by": { "id": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "patch": [ - 3377 + 3373 ], "poster": [ - 3377 + 3373 ], "workshop_map_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "maps_min_fields": { "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "name": [ - 83 + 84 ], "patch": [ - 83 + 84 ], "poster": [ - 83 + 84 ], "workshop_map_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "maps_min_order_by": { "id": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "patch": [ - 3377 + 3373 ], "poster": [ - 3377 + 3373 ], "workshop_map_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "maps_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2653 + 2649 ], "__typename": [ - 83 + 84 ] }, "maps_obj_rel_insert_input": { "data": [ - 2664 + 2660 ], "on_conflict": [ - 2671 + 2667 ], "__typename": [ - 83 + 84 ] }, "maps_on_conflict": { "constraint": [ - 2663 + 2659 ], "update_columns": [ - 2680 + 2676 ], "where": [ - 2662 + 2658 ], "__typename": [ - 83 + 84 ] }, "maps_order_by": { "active_pool": [ - 3377 + 3373 ], "e_match_type": [ - 1189 + 1190 ], "enabled": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "match_maps_aggregate": [ - 2982 + 2978 ], "match_veto_picks_aggregate": [ - 2956 + 2952 ], "name": [ - 3377 + 3373 ], "patch": [ - 3377 + 3373 ], "poster": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "workshop_map_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "maps_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "maps_select_column": {}, @@ -45841,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": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "name": [ - 83 + 84 ], "patch": [ - 83 + 84 ], "poster": [ - 83 + 84 ], "type": [ - 1181 + 1182 ], "workshop_map_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "maps_stream_cursor_input": { "initial_value": [ - 2679 + 2675 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "maps_stream_cursor_value_input": { "active_pool": [ - 5 + 6 ], "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "name": [ - 83 + 84 ], "patch": [ - 83 + 84 ], "poster": [ - 83 + 84 ], "type": [ - 1181 + 1182 ], "workshop_map_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "maps_update_column": {}, "maps_updates": { "_set": [ - 2677 + 2673 ], "where": [ - 2662 + 2658 ], "__typename": [ - 83 + 84 ] }, "match_clips": { "created_at": [ - 4958 + 4954 ], "download_url": [ - 83 + 84 ], "duration_ms": [ - 40 + 41 ], "file": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "kills_count": [ - 40 + 41 ], "match_map": [ - 2977 + 2973 ], "match_map_demo": [ - 2857 + 2853 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "render_jobs": [ - 300, + 301, { "distinct_on": [ - 328, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 325, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 312 + 313 ] } ], "render_jobs_aggregate": [ - 301, + 302, { "distinct_on": [ - 328, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 325, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 312 + 313 ] } ], "round": [ - 40 + 41 ], "size": [ - 268 + 269 ], "target": [ - 4335 + 4331 ], "target_steam_id": [ - 268 + 269 ], "thumbnail_download_url": [ - 83 + 84 ], "thumbnail_url": [ - 83 + 84 ], "title": [ - 83 + 84 ], "user": [ - 4335 + 4331 ], "user_steam_id": [ - 268 + 269 ], "views_count": [ - 40 + 41 ], "visibility": [ - 1079 + 1080 ], "__typename": [ - 83 + 84 ] }, "match_clips_aggregate": { "aggregate": [ - 2686 + 2682 ], "nodes": [ - 2682 + 2678 ], "__typename": [ - 83 + 84 ] }, "match_clips_aggregate_bool_exp": { "count": [ - 2685 + 2681 ], "__typename": [ - 83 + 84 ] }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 2704 + 2700 ], "distinct": [ - 5 + 6 ], "filter": [ - 2691 + 2687 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "match_clips_aggregate_fields": { "avg": [ - 2689 + 2685 ], "count": [ - 40, + 41, { "columns": [ - 2704, + 2700, "[match_clips_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2695 + 2691 ], "min": [ - 2697 + 2693 ], "stddev": [ - 2706 + 2702 ], "stddev_pop": [ - 2708 + 2704 ], "stddev_samp": [ - 2710 + 2706 ], "sum": [ - 2714 + 2710 ], "var_pop": [ - 2718 + 2714 ], "var_samp": [ - 2720 + 2716 ], "variance": [ - 2722 + 2718 ], "__typename": [ - 83 + 84 ] }, "match_clips_aggregate_order_by": { "avg": [ - 2690 + 2686 ], "count": [ - 3377 + 3373 ], "max": [ - 2696 + 2692 ], "min": [ - 2698 + 2694 ], "stddev": [ - 2707 + 2703 ], "stddev_pop": [ - 2709 + 2705 ], "stddev_samp": [ - 2711 + 2707 ], "sum": [ - 2715 + 2711 ], "var_pop": [ - 2719 + 2715 ], "var_samp": [ - 2721 + 2717 ], "variance": [ - 2723 + 2719 ], "__typename": [ - 83 + 84 ] }, "match_clips_arr_rel_insert_input": { "data": [ - 2694 + 2690 ], "on_conflict": [ - 2701 + 2697 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_clips_avg_order_by": { "duration_ms": [ - 3377 + 3373 ], "kills_count": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "target_steam_id": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "views_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_clips_bool_exp": { "_and": [ - 2691 + 2687 ], "_not": [ - 2691 + 2687 ], "_or": [ - 2691 + 2687 ], "created_at": [ - 4959 + 4955 ], "download_url": [ - 85 + 86 ], "duration_ms": [ - 41 + 42 ], "file": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "kills_count": [ - 41 + 42 ], "match_map": [ - 2986 + 2982 ], "match_map_demo": [ - 2869 + 2865 ], "match_map_demo_id": [ - 5460 + 5456 ], "match_map_id": [ - 5460 + 5456 ], "render_jobs": [ - 312 + 313 ], "render_jobs_aggregate": [ - 302 + 303 ], "round": [ - 41 + 42 ], "size": [ - 270 + 271 ], "target": [ - 4339 + 4335 ], "target_steam_id": [ - 270 + 271 ], "thumbnail_download_url": [ - 85 + 86 ], "thumbnail_url": [ - 85 + 86 ], "title": [ - 85 + 86 ], "user": [ - 4339 + 4335 ], "user_steam_id": [ - 270 + 271 ], "views_count": [ - 41 + 42 ], "visibility": [ - 1080 + 1081 ], "__typename": [ - 83 + 84 ] }, "match_clips_constraint": {}, "match_clips_inc_input": { "duration_ms": [ - 40 + 41 ], "kills_count": [ - 40 + 41 ], "round": [ - 40 + 41 ], "size": [ - 268 + 269 ], "target_steam_id": [ - 268 + 269 ], "user_steam_id": [ - 268 + 269 ], "views_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_clips_insert_input": { "created_at": [ - 4958 + 4954 ], "duration_ms": [ - 40 + 41 ], "file": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "kills_count": [ - 40 + 41 ], "match_map": [ - 2995 + 2991 ], "match_map_demo": [ - 2881 + 2877 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "render_jobs": [ - 309 + 310 ], "round": [ - 40 + 41 ], "size": [ - 268 + 269 ], "target": [ - 4346 + 4342 ], "target_steam_id": [ - 268 + 269 ], "thumbnail_url": [ - 83 + 84 ], "title": [ - 83 + 84 ], "user": [ - 4346 + 4342 ], "user_steam_id": [ - 268 + 269 ], "views_count": [ - 40 + 41 ], "visibility": [ - 1079 + 1080 ], "__typename": [ - 83 + 84 ] }, "match_clips_max_fields": { "created_at": [ - 4958 + 4954 ], "download_url": [ - 83 + 84 ], "duration_ms": [ - 40 + 41 ], "file": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "kills_count": [ - 40 + 41 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "size": [ - 268 + 269 ], "target_steam_id": [ - 268 + 269 ], "thumbnail_download_url": [ - 83 + 84 ], "thumbnail_url": [ - 83 + 84 ], "title": [ - 83 + 84 ], "user_steam_id": [ - 268 + 269 ], "views_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_clips_max_order_by": { "created_at": [ - 3377 + 3373 ], "duration_ms": [ - 3377 + 3373 ], "file": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "kills_count": [ - 3377 + 3373 ], "match_map_demo_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "target_steam_id": [ - 3377 + 3373 ], "thumbnail_url": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "views_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_clips_min_fields": { "created_at": [ - 4958 + 4954 ], "download_url": [ - 83 + 84 ], "duration_ms": [ - 40 + 41 ], "file": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "kills_count": [ - 40 + 41 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "size": [ - 268 + 269 ], "target_steam_id": [ - 268 + 269 ], "thumbnail_download_url": [ - 83 + 84 ], "thumbnail_url": [ - 83 + 84 ], "title": [ - 83 + 84 ], "user_steam_id": [ - 268 + 269 ], "views_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_clips_min_order_by": { "created_at": [ - 3377 + 3373 ], "duration_ms": [ - 3377 + 3373 ], "file": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "kills_count": [ - 3377 + 3373 ], "match_map_demo_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "target_steam_id": [ - 3377 + 3373 ], "thumbnail_url": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "views_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_clips_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2682 + 2678 ], "__typename": [ - 83 + 84 ] }, "match_clips_obj_rel_insert_input": { "data": [ - 2694 + 2690 ], "on_conflict": [ - 2701 + 2697 ], "__typename": [ - 83 + 84 ] }, "match_clips_on_conflict": { "constraint": [ - 2692 + 2688 ], "update_columns": [ - 2716 + 2712 ], "where": [ - 2691 + 2687 ], "__typename": [ - 83 + 84 ] }, "match_clips_order_by": { "created_at": [ - 3377 + 3373 ], "download_url": [ - 3377 + 3373 ], "duration_ms": [ - 3377 + 3373 ], "file": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "kills_count": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_demo": [ - 2883 + 2879 ], "match_map_demo_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "render_jobs_aggregate": [ - 307 + 308 ], "round": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "target": [ - 4348 + 4344 ], "target_steam_id": [ - 3377 + 3373 ], "thumbnail_download_url": [ - 3377 + 3373 ], "thumbnail_url": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "user": [ - 4348 + 4344 ], "user_steam_id": [ - 3377 + 3373 ], "views_count": [ - 3377 + 3373 ], "visibility": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_clips_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4958 + 4954 ], "duration_ms": [ - 40 + 41 ], "file": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "kills_count": [ - 40 + 41 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "size": [ - 268 + 269 ], "target_steam_id": [ - 268 + 269 ], "thumbnail_url": [ - 83 + 84 ], "title": [ - 83 + 84 ], "user_steam_id": [ - 268 + 269 ], "views_count": [ - 40 + 41 ], "visibility": [ - 1079 + 1080 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_clips_stddev_order_by": { "duration_ms": [ - 3377 + 3373 ], "kills_count": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "target_steam_id": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "views_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 3377 + 3373 ], "kills_count": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "target_steam_id": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "views_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 3377 + 3373 ], "kills_count": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "target_steam_id": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "views_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_clips_stream_cursor_input": { "initial_value": [ - 2713 + 2709 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "duration_ms": [ - 40 + 41 ], "file": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "kills_count": [ - 40 + 41 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "size": [ - 268 + 269 ], "target_steam_id": [ - 268 + 269 ], "thumbnail_url": [ - 83 + 84 ], "title": [ - 83 + 84 ], "user_steam_id": [ - 268 + 269 ], "views_count": [ - 40 + 41 ], "visibility": [ - 1079 + 1080 ], "__typename": [ - 83 + 84 ] }, "match_clips_sum_fields": { "duration_ms": [ - 40 + 41 ], "kills_count": [ - 40 + 41 ], "round": [ - 40 + 41 ], "size": [ - 268 + 269 ], "target_steam_id": [ - 268 + 269 ], "user_steam_id": [ - 268 + 269 ], "views_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_clips_sum_order_by": { "duration_ms": [ - 3377 + 3373 ], "kills_count": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "target_steam_id": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "views_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 2693 + 2689 ], "_set": [ - 2705 + 2701 ], "where": [ - 2691 + 2687 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_clips_var_pop_order_by": { "duration_ms": [ - 3377 + 3373 ], "kills_count": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "target_steam_id": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "views_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_clips_var_samp_order_by": { "duration_ms": [ - 3377 + 3373 ], "kills_count": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "target_steam_id": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "views_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_clips_variance_order_by": { "duration_ms": [ - 3377 + 3373 ], "kills_count": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "target_steam_id": [ - 3377 + 3373 ], "user_steam_id": [ - 3377 + 3373 ], "views_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions": { "created_at": [ - 4958 + 4954 ], "error_message": [ - 83 + 84 ], "game_server_node": [ - 2067 + 2063 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "last_activity_at": [ - 4958 + 4954 ], "last_status_at": [ - 4958 + 4954 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_demo": [ - 2857 + 2853 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "status": [ - 83 + 84 ], "status_history": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "stream_url": [ - 83 + 84 ], "watcher": [ - 4335 + 4331 ], "watcher_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_aggregate": { "aggregate": [ - 2728 + 2724 ], "nodes": [ - 2724 + 2720 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 2727 + 2723 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 2750 + 2746 ], "distinct": [ - 5 + 6 ], "filter": [ - 2734 + 2730 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_aggregate_fields": { "avg": [ - 2732 + 2728 ], "count": [ - 40, + 41, { "columns": [ - 2750, + 2746, "[match_demo_sessions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2741 + 2737 ], "min": [ - 2743 + 2739 ], "stddev": [ - 2752 + 2748 ], "stddev_pop": [ - 2754 + 2750 ], "stddev_samp": [ - 2756 + 2752 ], "sum": [ - 2760 + 2756 ], "var_pop": [ - 2764 + 2760 ], "var_samp": [ - 2766 + 2762 ], "variance": [ - 2768 + 2764 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 2733 + 2729 ], "count": [ - 3377 + 3373 ], "max": [ - 2742 + 2738 ], "min": [ - 2744 + 2740 ], "stddev": [ - 2753 + 2749 ], "stddev_pop": [ - 2755 + 2751 ], "stddev_samp": [ - 2757 + 2753 ], "sum": [ - 2761 + 2757 ], "var_pop": [ - 2765 + 2761 ], "var_samp": [ - 2767 + 2763 ], "variance": [ - 2769 + 2765 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_append_input": { "status_history": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 2740 + 2736 ], "on_conflict": [ - 2746 + 2742 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_avg_fields": { "watcher_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_bool_exp": { "_and": [ - 2734 + 2730 ], "_not": [ - 2734 + 2730 ], "_or": [ - 2734 + 2730 ], "created_at": [ - 4959 + 4955 ], "error_message": [ - 85 + 86 ], "game_server_node": [ - 2079 + 2075 ], "game_server_node_id": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "k8s_job_name": [ - 85 + 86 ], "last_activity_at": [ - 4959 + 4955 ], "last_status_at": [ - 4959 + 4955 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_demo": [ - 2869 + 2865 ], "match_map_demo_id": [ - 5460 + 5456 ], "match_map_id": [ - 5460 + 5456 ], "status": [ - 85 + 86 ], "status_history": [ - 2193 + 2189 ], "stream_url": [ - 85 + 86 ], "watcher": [ - 4339 + 4335 ], "watcher_steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_constraint": {}, "match_demo_sessions_delete_at_path_input": { "status_history": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_delete_elem_input": { "status_history": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_delete_key_input": { "status_history": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_inc_input": { "watcher_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_insert_input": { "created_at": [ - 4958 + 4954 ], "error_message": [ - 83 + 84 ], "game_server_node": [ - 2091 + 2087 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "last_activity_at": [ - 4958 + 4954 ], "last_status_at": [ - 4958 + 4954 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_demo": [ - 2881 + 2877 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "status": [ - 83 + 84 ], "status_history": [ - 2191 + 2187 ], "stream_url": [ - 83 + 84 ], "watcher": [ - 4346 + 4342 ], "watcher_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_max_fields": { "created_at": [ - 4958 + 4954 ], "error_message": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "last_activity_at": [ - 4958 + 4954 ], "last_status_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "status": [ - 83 + 84 ], "stream_url": [ - 83 + 84 ], "watcher_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_max_order_by": { "created_at": [ - 3377 + 3373 ], "error_message": [ - 3377 + 3373 ], "game_server_node_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "k8s_job_name": [ - 3377 + 3373 ], "last_activity_at": [ - 3377 + 3373 ], "last_status_at": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_demo_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "stream_url": [ - 3377 + 3373 ], "watcher_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_min_fields": { "created_at": [ - 4958 + 4954 ], "error_message": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "last_activity_at": [ - 4958 + 4954 ], "last_status_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "status": [ - 83 + 84 ], "stream_url": [ - 83 + 84 ], "watcher_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_min_order_by": { "created_at": [ - 3377 + 3373 ], "error_message": [ - 3377 + 3373 ], "game_server_node_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "k8s_job_name": [ - 3377 + 3373 ], "last_activity_at": [ - 3377 + 3373 ], "last_status_at": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_demo_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "stream_url": [ - 3377 + 3373 ], "watcher_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2724 + 2720 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_on_conflict": { "constraint": [ - 2735 + 2731 ], "update_columns": [ - 2762 + 2758 ], "where": [ - 2734 + 2730 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_order_by": { "created_at": [ - 3377 + 3373 ], "error_message": [ - 3377 + 3373 ], "game_server_node": [ - 2093 + 2089 ], "game_server_node_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "k8s_job_name": [ - 3377 + 3373 ], "last_activity_at": [ - 3377 + 3373 ], "last_status_at": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_demo": [ - 2883 + 2879 ], "match_map_demo_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "status_history": [ - 3377 + 3373 ], "stream_url": [ - 3377 + 3373 ], "watcher": [ - 4348 + 4344 ], "watcher_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_prepend_input": { "status_history": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4958 + 4954 ], "error_message": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "last_activity_at": [ - 4958 + 4954 ], "last_status_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "status": [ - 83 + 84 ], "status_history": [ - 2191 + 2187 ], "stream_url": [ - 83 + 84 ], "watcher_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_stddev_fields": { "watcher_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_stddev_pop_fields": { "watcher_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_stddev_samp_fields": { "watcher_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 2759 + 2755 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "error_message": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "last_activity_at": [ - 4958 + 4954 ], "last_status_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "status": [ - 83 + 84 ], "status_history": [ - 2191 + 2187 ], "stream_url": [ - 83 + 84 ], "watcher_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_sum_fields": { "watcher_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 2730 + 2726 ], "_delete_at_path": [ - 2736 + 2732 ], "_delete_elem": [ - 2737 + 2733 ], "_delete_key": [ - 2738 + 2734 ], "_inc": [ - 2739 + 2735 ], "_prepend": [ - 2749 + 2745 ], "_set": [ - 2751 + 2747 ], "where": [ - 2734 + 2730 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_var_pop_fields": { "watcher_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_var_samp_fields": { "watcher_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_variance_fields": { "watcher_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players": { "captain": [ - 5 + 6 ], "checked_in": [ - 5 + 6 ], "discord_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_connected": [ - 5 + 6 ], "lineup": [ - 2815 + 2811 ], "match_lineup_id": [ - 5458 + 5454 ], "party_id": [ - 5458 + 5454 ], "party_source": [ - 1140 + 1141 ], "placeholder_name": [ - 83 + 84 ], "player": [ - 4335 + 4331 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_aggregate": { "aggregate": [ - 2776 + 2772 ], "nodes": [ - 2770 + 2766 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 2773 + 2769 ], "bool_or": [ - 2774 + 2770 ], "count": [ - 2775 + 2771 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2794 + 2790 ], "distinct": [ - 5 + 6 ], "filter": [ - 2781 + 2777 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2795 + 2791 ], "distinct": [ - 5 + 6 ], "filter": [ - 2781 + 2777 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 2793 + 2789 ], "distinct": [ - 5 + 6 ], "filter": [ - 2781 + 2777 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_aggregate_fields": { "avg": [ - 2779 + 2775 ], "count": [ - 40, + 41, { "columns": [ - 2793, + 2789, "[match_lineup_players_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2785 + 2781 ], "min": [ - 2787 + 2783 ], "stddev": [ - 2797 + 2793 ], "stddev_pop": [ - 2799 + 2795 ], "stddev_samp": [ - 2801 + 2797 ], "sum": [ - 2805 + 2801 ], "var_pop": [ - 2809 + 2805 ], "var_samp": [ - 2811 + 2807 ], "variance": [ - 2813 + 2809 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_aggregate_order_by": { "avg": [ - 2780 + 2776 ], "count": [ - 3377 + 3373 ], "max": [ - 2786 + 2782 ], "min": [ - 2788 + 2784 ], "stddev": [ - 2798 + 2794 ], "stddev_pop": [ - 2800 + 2796 ], "stddev_samp": [ - 2802 + 2798 ], "sum": [ - 2806 + 2802 ], "var_pop": [ - 2810 + 2806 ], "var_samp": [ - 2812 + 2808 ], "variance": [ - 2814 + 2810 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 2784 + 2780 ], "on_conflict": [ - 2790 + 2786 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_avg_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_bool_exp": { "_and": [ - 2781 + 2777 ], "_not": [ - 2781 + 2777 ], "_or": [ - 2781 + 2777 ], "captain": [ - 6 + 7 ], "checked_in": [ - 6 + 7 ], "discord_id": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "is_connected": [ - 6 + 7 ], "lineup": [ - 2824 + 2820 ], "match_lineup_id": [ - 5460 + 5456 ], "party_id": [ - 5460 + 5456 ], "party_source": [ - 1141 + 1142 ], "placeholder_name": [ - 85 + 86 ], "player": [ - 4339 + 4335 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_constraint": {}, "match_lineup_players_inc_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_insert_input": { "captain": [ - 5 + 6 ], "checked_in": [ - 5 + 6 ], "discord_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_connected": [ - 5 + 6 ], "lineup": [ - 2833 + 2829 ], "match_lineup_id": [ - 5458 + 5454 ], "party_id": [ - 5458 + 5454 ], "party_source": [ - 1140 + 1141 ], "placeholder_name": [ - 83 + 84 ], "player": [ - 4346 + 4342 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_max_fields": { "discord_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "party_id": [ - 5458 + 5454 ], "placeholder_name": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_max_order_by": { "discord_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_lineup_id": [ - 3377 + 3373 ], "party_id": [ - 3377 + 3373 ], "placeholder_name": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_min_fields": { "discord_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "party_id": [ - 5458 + 5454 ], "placeholder_name": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_min_order_by": { "discord_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_lineup_id": [ - 3377 + 3373 ], "party_id": [ - 3377 + 3373 ], "placeholder_name": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2770 + 2766 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_on_conflict": { "constraint": [ - 2782 + 2778 ], "update_columns": [ - 2807 + 2803 ], "where": [ - 2781 + 2777 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_order_by": { "captain": [ - 3377 + 3373 ], "checked_in": [ - 3377 + 3373 ], "discord_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "is_connected": [ - 3377 + 3373 ], "lineup": [ - 2835 + 2831 ], "match_lineup_id": [ - 3377 + 3373 ], "party_id": [ - 3377 + 3373 ], "party_source": [ - 3377 + 3373 ], "placeholder_name": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_select_column": {}, @@ -48619,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": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_connected": [ - 5 + 6 ], "match_lineup_id": [ - 5458 + 5454 ], "party_id": [ - 5458 + 5454 ], "party_source": [ - 1140 + 1141 ], "placeholder_name": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 2804 + 2800 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_stream_cursor_value_input": { "captain": [ - 5 + 6 ], "checked_in": [ - 5 + 6 ], "discord_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_connected": [ - 5 + 6 ], "match_lineup_id": [ - 5458 + 5454 ], "party_id": [ - 5458 + 5454 ], "party_source": [ - 1140 + 1141 ], "placeholder_name": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_sum_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 2783 + 2779 ], "_set": [ - 2796 + 2792 ], "where": [ - 2781 + 2777 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_lineup_players_variance_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineups": { "can_pick_map_veto": [ - 5 + 6 ], "can_pick_region_veto": [ - 5 + 6 ], "can_update_lineup": [ - 5 + 6 ], "captain": [ - 5614 + 5610 ], "coach": [ - 4335 + 4331 ], "coach_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "is_on_lineup": [ - 5 + 6 ], "is_picking_map_veto": [ - 5 + 6 ], "is_picking_region_veto": [ - 5 + 6 ], "is_ready": [ - 5 + 6 ], "lineup_players": [ - 2770, + 2766, { "distinct_on": [ - 2793, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2791, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2781 + 2777 ] } ], "lineup_players_aggregate": [ - 2771, + 2767, { "distinct_on": [ - 2793, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2791, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2781 + 2777 ] } ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_veto_picks": [ - 2949, + 2945, { "distinct_on": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2967, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2958 + 2954 ] } ], "match_veto_picks_aggregate": [ - 2950, + 2946, { "distinct_on": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2967, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2958 + 2954 ] } ], "name": [ - 83 + 84 ], "team": [ - 4909 + 4905 ], "team_id": [ - 5458 + 5454 ], "team_name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_lineups_aggregate": { "aggregate": [ - 2819 + 2815 ], "nodes": [ - 2815 + 2811 ], "__typename": [ - 83 + 84 ] }, "match_lineups_aggregate_bool_exp": { "count": [ - 2818 + 2814 ], "__typename": [ - 83 + 84 ] }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 2837 + 2833 ], "distinct": [ - 5 + 6 ], "filter": [ - 2824 + 2820 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "match_lineups_aggregate_fields": { "avg": [ - 2822 + 2818 ], "count": [ - 40, + 41, { "columns": [ - 2837, + 2833, "[match_lineups_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2828 + 2824 ], "min": [ - 2830 + 2826 ], "stddev": [ - 2839 + 2835 ], "stddev_pop": [ - 2841 + 2837 ], "stddev_samp": [ - 2843 + 2839 ], "sum": [ - 2847 + 2843 ], "var_pop": [ - 2851 + 2847 ], "var_samp": [ - 2853 + 2849 ], "variance": [ - 2855 + 2851 ], "__typename": [ - 83 + 84 ] }, "match_lineups_aggregate_order_by": { "avg": [ - 2823 + 2819 ], "count": [ - 3377 + 3373 ], "max": [ - 2829 + 2825 ], "min": [ - 2831 + 2827 ], "stddev": [ - 2840 + 2836 ], "stddev_pop": [ - 2842 + 2838 ], "stddev_samp": [ - 2844 + 2840 ], "sum": [ - 2848 + 2844 ], "var_pop": [ - 2852 + 2848 ], "var_samp": [ - 2854 + 2850 ], "variance": [ - 2856 + 2852 ], "__typename": [ - 83 + 84 ] }, "match_lineups_arr_rel_insert_input": { "data": [ - 2827 + 2823 ], "on_conflict": [ - 2834 + 2830 ], "__typename": [ - 83 + 84 ] }, "match_lineups_avg_fields": { "coach_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineups_bool_exp": { "_and": [ - 2824 + 2820 ], "_not": [ - 2824 + 2820 ], "_or": [ - 2824 + 2820 ], "can_pick_map_veto": [ - 6 + 7 ], "can_pick_region_veto": [ - 6 + 7 ], "can_update_lineup": [ - 6 + 7 ], "captain": [ - 5618 + 5614 ], "coach": [ - 4339 + 4335 ], "coach_steam_id": [ - 270 + 271 ], "id": [ - 5460 + 5456 ], "is_on_lineup": [ - 6 + 7 ], "is_picking_map_veto": [ - 6 + 7 ], "is_picking_region_veto": [ - 6 + 7 ], "is_ready": [ - 6 + 7 ], "lineup_players": [ - 2781 + 2777 ], "lineup_players_aggregate": [ - 2772 + 2768 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_veto_picks": [ - 2958 + 2954 ], "match_veto_picks_aggregate": [ - 2951 + 2947 ], "name": [ - 85 + 86 ], "team": [ - 4920 + 4916 ], "team_id": [ - 5460 + 5456 ], "team_name": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "match_lineups_constraint": {}, "match_lineups_inc_input": { "coach_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_lineups_insert_input": { "captain": [ - 5624 + 5620 ], "coach": [ - 4346 + 4342 ], "coach_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "lineup_players": [ - 2778 + 2774 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_veto_picks": [ - 2957 + 2953 ], "team": [ - 4929 + 4925 ], "team_id": [ - 5458 + 5454 ], "team_name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_lineups_max_fields": { "coach_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "team_name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_lineups_max_order_by": { "coach_steam_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "team_name": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineups_min_fields": { "coach_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "team_name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_lineups_min_order_by": { "coach_steam_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "team_name": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineups_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2815 + 2811 ], "__typename": [ - 83 + 84 ] }, "match_lineups_obj_rel_insert_input": { "data": [ - 2827 + 2823 ], "on_conflict": [ - 2834 + 2830 ], "__typename": [ - 83 + 84 ] }, "match_lineups_on_conflict": { "constraint": [ - 2825 + 2821 ], "update_columns": [ - 2849 + 2845 ], "where": [ - 2824 + 2820 ], "__typename": [ - 83 + 84 ] }, "match_lineups_order_by": { "can_pick_map_veto": [ - 3377 + 3373 ], "can_pick_region_veto": [ - 3377 + 3373 ], "can_update_lineup": [ - 3377 + 3373 ], "captain": [ - 5625 + 5621 ], "coach": [ - 4348 + 4344 ], "coach_steam_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "is_on_lineup": [ - 3377 + 3373 ], "is_picking_map_veto": [ - 3377 + 3373 ], "is_picking_region_veto": [ - 3377 + 3373 ], "is_ready": [ - 3377 + 3373 ], "lineup_players_aggregate": [ - 2777 + 2773 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_veto_picks_aggregate": [ - 2956 + 2952 ], "name": [ - 3377 + 3373 ], "team": [ - 4931 + 4927 ], "team_id": [ - 3377 + 3373 ], "team_name": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineups_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_lineups_select_column": {}, "match_lineups_set_input": { "coach_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "team_id": [ - 5458 + 5454 ], "team_name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_lineups_stddev_fields": { "coach_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineups_stddev_pop_fields": { "coach_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineups_stddev_samp_fields": { "coach_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2846 + 2842 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "match_lineups_stream_cursor_value_input": { "coach_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "team_id": [ - 5458 + 5454 ], "team_name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_lineups_sum_fields": { "coach_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 2826 + 2822 ], "_set": [ - 2838 + 2834 ], "where": [ - 2824 + 2820 ], "__typename": [ - 83 + 84 ] }, "match_lineups_var_pop_fields": { "coach_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineups_var_samp_fields": { "coach_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_lineups_variance_fields": { "coach_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_demos": { "bombs": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "clip_render_jobs": [ - 300, + 301, { "distinct_on": [ - 328, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 325, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 312 + 313 ] } ], "clip_render_jobs_aggregate": [ - 301, + 302, { "distinct_on": [ - 328, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 325, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 312 + 313 ] } ], "created_at": [ - 4958 + 4954 ], "cs2_build": [ - 83 + 84 ], "demo_sessions": [ - 2724, + 2720, { "distinct_on": [ - 2750, + 2746, "[match_demo_sessions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2747, + 2743, "[match_demo_sessions_order_by!]" ], "where": [ - 2734 + 2730 ] } ], "demo_sessions_aggregate": [ - 2725, + 2721, { "distinct_on": [ - 2750, + 2746, "[match_demo_sessions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2747, + 2743, "[match_demo_sessions_order_by!]" ], "where": [ - 2734 + 2730 ] } ], "download_url": [ - 83 + 84 ], "duration_seconds": [ - 31 + 32 ], "file": [ - 83 + 84 ], "geometry_validated": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "kills": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "map_name": [ - 83 + 84 ], "match": [ - 3161 + 3157 ], "match_clips": [ - 2682, + 2678, { "distinct_on": [ - 2704, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2702, + 2698, "[match_clips_order_by!]" ], "where": [ - 2691 + 2687 ] } ], "match_clips_aggregate": [ - 2683, + 2679, { "distinct_on": [ - 2704, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2702, + 2698, "[match_clips_order_by!]" ], "where": [ - 2691 + 2687 ] } ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "metadata_parsed_at": [ - 4958 + 4954 ], "playback_file": [ - 83 + 84 ], "playback_size": [ - 40 + 41 ], "playback_url": [ - 83 + 84 ], "players": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "round_ticks": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "workshop_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_aggregate": { "aggregate": [ - 2863 + 2859 ], "nodes": [ - 2857 + 2853 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2860 + 2856 ], "bool_or": [ - 2861 + 2857 ], "count": [ - 2862 + 2858 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2887 + 2883 ], "distinct": [ - 5 + 6 ], "filter": [ - 2869 + 2865 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2888 + 2884 ], "distinct": [ - 5 + 6 ], "filter": [ - 2869 + 2865 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2886 + 2882 ], "distinct": [ - 5 + 6 ], "filter": [ - 2869 + 2865 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_aggregate_fields": { "avg": [ - 2867 + 2863 ], "count": [ - 40, + 41, { "columns": [ - 2886, + 2882, "[match_map_demos_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2876 + 2872 ], "min": [ - 2878 + 2874 ], "stddev": [ - 2890 + 2886 ], "stddev_pop": [ - 2892 + 2888 ], "stddev_samp": [ - 2894 + 2890 ], "sum": [ - 2898 + 2894 ], "var_pop": [ - 2902 + 2898 ], "var_samp": [ - 2904 + 2900 ], "variance": [ - 2906 + 2902 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_aggregate_order_by": { "avg": [ - 2868 + 2864 ], "count": [ - 3377 + 3373 ], "max": [ - 2877 + 2873 ], "min": [ - 2879 + 2875 ], "stddev": [ - 2891 + 2887 ], "stddev_pop": [ - 2893 + 2889 ], "stddev_samp": [ - 2895 + 2891 ], "sum": [ - 2899 + 2895 ], "var_pop": [ - 2903 + 2899 ], "var_samp": [ - 2905 + 2901 ], "variance": [ - 2907 + 2903 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_append_input": { "bombs": [ - 2191 + 2187 ], "kills": [ - 2191 + 2187 ], "players": [ - 2191 + 2187 ], "round_ticks": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2875 + 2871 ], "on_conflict": [ - 2882 + 2878 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 3377 + 3373 ], "playback_size": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "tick_rate": [ - 3377 + 3373 ], "total_ticks": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_bool_exp": { "_and": [ - 2869 + 2865 ], "_not": [ - 2869 + 2865 ], "_or": [ - 2869 + 2865 ], "bombs": [ - 2193 + 2189 ], "clip_render_jobs": [ - 312 + 313 ], "clip_render_jobs_aggregate": [ - 302 + 303 ], "created_at": [ - 4959 + 4955 ], "cs2_build": [ - 85 + 86 ], "demo_sessions": [ - 2734 + 2730 ], "demo_sessions_aggregate": [ - 2726 + 2722 ], "download_url": [ - 85 + 86 ], "duration_seconds": [ - 32 + 33 ], "file": [ - 85 + 86 ], "geometry_validated": [ - 6 + 7 ], "id": [ - 5460 + 5456 ], "kills": [ - 2193 + 2189 ], "map_name": [ - 85 + 86 ], "match": [ - 3172 + 3168 ], "match_clips": [ - 2691 + 2687 ], "match_clips_aggregate": [ - 2684 + 2680 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "metadata_parsed_at": [ - 4959 + 4955 ], "playback_file": [ - 85 + 86 ], "playback_size": [ - 41 + 42 ], "playback_url": [ - 85 + 86 ], "players": [ - 2193 + 2189 ], "round_ticks": [ - 2193 + 2189 ], "size": [ - 41 + 42 ], "tick_rate": [ - 32 + 33 ], "total_ticks": [ - 41 + 42 ], "workshop_id": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_constraint": {}, "match_map_demos_delete_at_path_input": { "bombs": [ - 83 + 84 ], "kills": [ - 83 + 84 ], "players": [ - 83 + 84 ], "round_ticks": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_delete_elem_input": { "bombs": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "players": [ - 40 + 41 ], "round_ticks": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_delete_key_input": { "bombs": [ - 83 + 84 ], "kills": [ - 83 + 84 ], "players": [ - 83 + 84 ], "round_ticks": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_inc_input": { "playback_size": [ - 40 + 41 ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_insert_input": { "bombs": [ - 2191 + 2187 ], "clip_render_jobs": [ - 309 + 310 ], "created_at": [ - 4958 + 4954 ], "cs2_build": [ - 83 + 84 ], "demo_sessions": [ - 2731 + 2727 ], "file": [ - 83 + 84 ], "geometry_validated": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "kills": [ - 2191 + 2187 ], "map_name": [ - 83 + 84 ], "match": [ - 3181 + 3177 ], "match_clips": [ - 2688 + 2684 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 5454 ], "metadata_parsed_at": [ - 4958 + 4954 ], "playback_file": [ - 83 + 84 ], "playback_size": [ - 40 + 41 ], "players": [ - 2191 + 2187 ], "round_ticks": [ - 2191 + 2187 ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "workshop_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_max_fields": { "created_at": [ - 4958 + 4954 ], "cs2_build": [ - 83 + 84 ], "download_url": [ - 83 + 84 ], "duration_seconds": [ - 31 + 32 ], "file": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "map_name": [ - 83 + 84 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "metadata_parsed_at": [ - 4958 + 4954 ], "playback_file": [ - 83 + 84 ], "playback_size": [ - 40 + 41 ], "playback_url": [ - 83 + 84 ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "workshop_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_max_order_by": { "created_at": [ - 3377 + 3373 ], "cs2_build": [ - 3377 + 3373 ], "duration_seconds": [ - 3377 + 3373 ], "file": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "map_name": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "metadata_parsed_at": [ - 3377 + 3373 ], "playback_file": [ - 3377 + 3373 ], "playback_size": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "tick_rate": [ - 3377 + 3373 ], "total_ticks": [ - 3377 + 3373 ], "workshop_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_min_fields": { "created_at": [ - 4958 + 4954 ], "cs2_build": [ - 83 + 84 ], "download_url": [ - 83 + 84 ], "duration_seconds": [ - 31 + 32 ], "file": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "map_name": [ - 83 + 84 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "metadata_parsed_at": [ - 4958 + 4954 ], "playback_file": [ - 83 + 84 ], "playback_size": [ - 40 + 41 ], "playback_url": [ - 83 + 84 ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "workshop_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_min_order_by": { "created_at": [ - 3377 + 3373 ], "cs2_build": [ - 3377 + 3373 ], "duration_seconds": [ - 3377 + 3373 ], "file": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "map_name": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "metadata_parsed_at": [ - 3377 + 3373 ], "playback_file": [ - 3377 + 3373 ], "playback_size": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "tick_rate": [ - 3377 + 3373 ], "total_ticks": [ - 3377 + 3373 ], "workshop_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2857 + 2853 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2875 + 2871 ], "on_conflict": [ - 2882 + 2878 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_on_conflict": { "constraint": [ - 2870 + 2866 ], "update_columns": [ - 2900 + 2896 ], "where": [ - 2869 + 2865 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_order_by": { "bombs": [ - 3377 + 3373 ], "clip_render_jobs_aggregate": [ - 307 + 308 ], "created_at": [ - 3377 + 3373 ], "cs2_build": [ - 3377 + 3373 ], "demo_sessions_aggregate": [ - 2729 + 2725 ], "download_url": [ - 3377 + 3373 ], "duration_seconds": [ - 3377 + 3373 ], "file": [ - 3377 + 3373 ], "geometry_validated": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "map_name": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_clips_aggregate": [ - 2687 + 2683 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "metadata_parsed_at": [ - 3377 + 3373 ], "playback_file": [ - 3377 + 3373 ], "playback_size": [ - 3377 + 3373 ], "playback_url": [ - 3377 + 3373 ], "players": [ - 3377 + 3373 ], "round_ticks": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "tick_rate": [ - 3377 + 3373 ], "total_ticks": [ - 3377 + 3373 ], "workshop_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_prepend_input": { "bombs": [ - 2191 + 2187 ], "kills": [ - 2191 + 2187 ], "players": [ - 2191 + 2187 ], "round_ticks": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_select_column": {}, @@ -50684,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": [ - 2191 + 2187 ], "created_at": [ - 4958 + 4954 ], "cs2_build": [ - 83 + 84 ], "file": [ - 83 + 84 ], "geometry_validated": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "kills": [ - 2191 + 2187 ], "map_name": [ - 83 + 84 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "metadata_parsed_at": [ - 4958 + 4954 ], "playback_file": [ - 83 + 84 ], "playback_size": [ - 40 + 41 ], "players": [ - 2191 + 2187 ], "round_ticks": [ - 2191 + 2187 ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "workshop_id": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 3377 + 3373 ], "playback_size": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "tick_rate": [ - 3377 + 3373 ], "total_ticks": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 3377 + 3373 ], "playback_size": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "tick_rate": [ - 3377 + 3373 ], "total_ticks": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 3377 + 3373 ], "playback_size": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "tick_rate": [ - 3377 + 3373 ], "total_ticks": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2897 + 2893 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 2191 + 2187 ], "created_at": [ - 4958 + 4954 ], "cs2_build": [ - 83 + 84 ], "duration_seconds": [ - 31 + 32 ], "file": [ - 83 + 84 ], "geometry_validated": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "kills": [ - 2191 + 2187 ], "map_name": [ - 83 + 84 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "metadata_parsed_at": [ - 4958 + 4954 ], "playback_file": [ - 83 + 84 ], "playback_size": [ - 40 + 41 ], "players": [ - 2191 + 2187 ], "round_ticks": [ - 2191 + 2187 ], "size": [ - 40 + 41 ], "tick_rate": [ - 31 + 32 ], "total_ticks": [ - 40 + 41 ], "workshop_id": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 3377 + 3373 ], "playback_size": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "tick_rate": [ - 3377 + 3373 ], "total_ticks": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2865 + 2861 ], "_delete_at_path": [ - 2871 + 2867 ], "_delete_elem": [ - 2872 + 2868 ], "_delete_key": [ - 2873 + 2869 ], "_inc": [ - 2874 + 2870 ], "_prepend": [ - 2885 + 2881 ], "_set": [ - 2889 + 2885 ], "where": [ - 2869 + 2865 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 3377 + 3373 ], "playback_size": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "tick_rate": [ - 3377 + 3373 ], "total_ticks": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 3377 + 3373 ], "playback_size": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "tick_rate": [ - 3377 + 3373 ], "total_ticks": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 3377 + 3373 ], "playback_size": [ - 3377 + 3373 ], "size": [ - 3377 + 3373 ], "tick_rate": [ - 3377 + 3373 ], "total_ticks": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds": { "assists": [ - 3515, + 3511, { "distinct_on": [ - 3538, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3536, + 3532, "[player_assists_order_by!]" ], "where": [ - 3526 + 3522 ] } ], "assists_aggregate": [ - 3516, + 3512, { "distinct_on": [ - 3538, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3536, + 3532, "[player_assists_order_by!]" ], "where": [ - 3526 + 3522 ] } ], "backup_file": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "deleted_at": [ - 4958 + 4954 ], "has_backup_file": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "kills": [ - 3732, + 3728, { "distinct_on": [ - 3796, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3794, + 3790, "[player_kills_order_by!]" ], "where": [ - 3743 + 3739 ] } ], "kills_aggregate": [ - 3733, + 3729, { "distinct_on": [ - 3796, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3794, + 3790, "[player_kills_order_by!]" ], "where": [ - 3743 + 3739 ] } ], "lineup_1_money": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_side": [ - 1363 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_money": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_side": [ - 1363 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "winning_reason": [ - 1567 + 1568 ], "winning_side": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_aggregate": { "aggregate": [ - 2912 + 2908 ], "nodes": [ - 2908 + 2904 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2911 + 2907 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2929 + 2925 ], "distinct": [ - 5 + 6 ], "filter": [ - 2917 + 2913 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_aggregate_fields": { "avg": [ - 2915 + 2911 ], "count": [ - 40, + 41, { "columns": [ - 2929, + 2925, "[match_map_rounds_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2921 + 2917 ], "min": [ - 2923 + 2919 ], "stddev": [ - 2931 + 2927 ], "stddev_pop": [ - 2933 + 2929 ], "stddev_samp": [ - 2935 + 2931 ], "sum": [ - 2939 + 2935 ], "var_pop": [ - 2943 + 2939 ], "var_samp": [ - 2945 + 2941 ], "variance": [ - 2947 + 2943 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2916 + 2912 ], "count": [ - 3377 + 3373 ], "max": [ - 2922 + 2918 ], "min": [ - 2924 + 2920 ], "stddev": [ - 2932 + 2928 ], "stddev_pop": [ - 2934 + 2930 ], "stddev_samp": [ - 2936 + 2932 ], "sum": [ - 2940 + 2936 ], "var_pop": [ - 2944 + 2940 ], "var_samp": [ - 2946 + 2942 ], "variance": [ - 2948 + 2944 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2920 + 2916 ], "on_conflict": [ - 2926 + 2922 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 3377 + 3373 ], "lineup_1_score": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_money": [ - 3377 + 3373 ], "lineup_2_score": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_bool_exp": { "_and": [ - 2917 + 2913 ], "_not": [ - 2917 + 2913 ], "_or": [ - 2917 + 2913 ], "assists": [ - 3526 + 3522 ], "assists_aggregate": [ - 3517 + 3513 ], "backup_file": [ - 85 + 86 ], "created_at": [ - 4959 + 4955 ], "deleted_at": [ - 4959 + 4955 ], "has_backup_file": [ - 6 + 7 ], "id": [ - 5460 + 5456 ], "kills": [ - 3743 + 3739 ], "kills_aggregate": [ - 3734 + 3730 ], "lineup_1_money": [ - 41 + 42 ], "lineup_1_score": [ - 41 + 42 ], "lineup_1_side": [ - 1364 + 1365 ], "lineup_1_timeouts_available": [ - 41 + 42 ], "lineup_2_money": [ - 41 + 42 ], "lineup_2_score": [ - 41 + 42 ], "lineup_2_side": [ - 1364 + 1365 ], "lineup_2_timeouts_available": [ - 41 + 42 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "round": [ - 41 + 42 ], "time": [ - 4959 + 4955 ], "winning_reason": [ - 1568 + 1569 ], "winning_side": [ - 85 + 86 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_rounds_insert_input": { "assists": [ - 3523 + 3519 ], "backup_file": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "deleted_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "kills": [ - 3740 + 3736 ], "lineup_1_money": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_side": [ - 1363 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_money": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_side": [ - 1363 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "winning_reason": [ - 1567 + 1568 ], "winning_side": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_max_fields": { "backup_file": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "deleted_at": [ - 4958 + 4954 ], "id": [ - 5458 + 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": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "winning_side": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_max_order_by": { "backup_file": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "lineup_1_money": [ - 3377 + 3373 ], "lineup_1_score": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_money": [ - 3377 + 3373 ], "lineup_2_score": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "winning_side": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_min_fields": { "backup_file": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "deleted_at": [ - 4958 + 4954 ], "id": [ - 5458 + 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": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "winning_side": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_min_order_by": { "backup_file": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "lineup_1_money": [ - 3377 + 3373 ], "lineup_1_score": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_money": [ - 3377 + 3373 ], "lineup_2_score": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "winning_side": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2908 + 2904 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_on_conflict": { "constraint": [ - 2918 + 2914 ], "update_columns": [ - 2941 + 2937 ], "where": [ - 2917 + 2913 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_order_by": { "assists_aggregate": [ - 3522 + 3518 ], "backup_file": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "has_backup_file": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "kills_aggregate": [ - 3739 + 3735 ], "lineup_1_money": [ - 3377 + 3373 ], "lineup_1_score": [ - 3377 + 3373 ], "lineup_1_side": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_money": [ - 3377 + 3373 ], "lineup_2_score": [ - 3377 + 3373 ], "lineup_2_side": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "winning_reason": [ - 3377 + 3373 ], "winning_side": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_select_column": {}, "match_map_rounds_set_input": { "backup_file": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "deleted_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "lineup_1_money": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_side": [ - 1363 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_money": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_side": [ - 1363 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "winning_reason": [ - 1567 + 1568 ], "winning_side": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 3377 + 3373 ], "lineup_1_score": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_money": [ - 3377 + 3373 ], "lineup_2_score": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 3377 + 3373 ], "lineup_1_score": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_money": [ - 3377 + 3373 ], "lineup_2_score": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 3377 + 3373 ], "lineup_1_score": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_money": [ - 3377 + 3373 ], "lineup_2_score": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2938 + 2934 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_stream_cursor_value_input": { "backup_file": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "deleted_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "lineup_1_money": [ - 40 + 41 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_side": [ - 1363 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_money": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_side": [ - 1363 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "winning_reason": [ - 1567 + 1568 ], "winning_side": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 3377 + 3373 ], "lineup_1_score": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_money": [ - 3377 + 3373 ], "lineup_2_score": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2919 + 2915 ], "_set": [ - 2930 + 2926 ], "where": [ - 2917 + 2913 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 3377 + 3373 ], "lineup_1_score": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_money": [ - 3377 + 3373 ], "lineup_2_score": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 3377 + 3373 ], "lineup_1_score": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_money": [ - 3377 + 3373 ], "lineup_2_score": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 3377 + 3373 ], "lineup_1_score": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_money": [ - 3377 + 3373 ], "lineup_2_score": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks": { "auto_picked": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "map": [ - 2653 + 2649 ], "map_id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_lineup": [ - 2815 + 2811 ], "match_lineup_id": [ - 5458 + 5454 ], "side": [ - 83 + 84 ], "type": [ - 1547 + 1548 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2955 + 2951 ], "nodes": [ - 2949 + 2945 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_aggregate_bool_exp": { "bool_and": [ - 2952 + 2948 ], "bool_or": [ - 2953 + 2949 ], "count": [ - 2954 + 2950 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 2970 + 2966 ], "distinct": [ - 5 + 6 ], "filter": [ - 2958 + 2954 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 2971 + 2967 ], "distinct": [ - 5 + 6 ], "filter": [ - 2958 + 2954 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2969 + 2965 ], "distinct": [ - 5 + 6 ], "filter": [ - 2958 + 2954 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2961 + 2957 ], "min": [ - 2963 + 2959 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 3377 + 3373 ], "max": [ - 2962 + 2958 ], "min": [ - 2964 + 2960 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2960 + 2956 ], "on_conflict": [ - 2966 + 2962 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_bool_exp": { "_and": [ - 2958 + 2954 ], "_not": [ - 2958 + 2954 ], "_or": [ - 2958 + 2954 ], "auto_picked": [ - 6 + 7 ], "created_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "map": [ - 2662 + 2658 ], "map_id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_lineup": [ - 2824 + 2820 ], "match_lineup_id": [ - 5460 + 5456 ], "side": [ - 85 + 86 ], "type": [ - 1548 + 1549 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "auto_picked": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "map": [ - 2670 + 2666 ], "map_id": [ - 5458 + 5454 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_lineup": [ - 2833 + 2829 ], "match_lineup_id": [ - 5458 + 5454 ], "side": [ - 83 + 84 ], "type": [ - 1547 + 1548 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_max_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "side": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_max_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "map_id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_lineup_id": [ - 3377 + 3373 ], "side": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_min_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "side": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_min_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "map_id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_lineup_id": [ - 3377 + 3373 ], "side": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2949 + 2945 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2959 + 2955 ], "update_columns": [ - 2975 + 2971 ], "where": [ - 2958 + 2954 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_order_by": { "auto_picked": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "map": [ - 2672 + 2668 ], "map_id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_lineup": [ - 2835 + 2831 ], "match_lineup_id": [ - 3377 + 3373 ], "side": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_select_column": {}, @@ -52847,2977 +52810,2977 @@ 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": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "side": [ - 83 + 84 ], "type": [ - 1547 + 1548 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2974 + 2970 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_stream_cursor_value_input": { "auto_picked": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "side": [ - 83 + 84 ], "type": [ - 1547 + 1548 ], "__typename": [ - 83 + 84 ] }, "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2972 + 2968 ], "where": [ - 2958 + 2954 ], "__typename": [ - 83 + 84 ] }, "match_maps": { "clips_count": [ - 40 + 41 ], "created_at": [ - 4958 + 4954 ], "demo_processing_started_at": [ - 4958 + 4954 ], "demos": [ - 2857, + 2853, { "distinct_on": [ - 2886, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2883, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2869 + 2865 ] } ], "demos_aggregate": [ - 2858, + 2854, { "distinct_on": [ - 2886, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2883, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2869 + 2865 ] } ], "demos_download_url": [ - 83 + 84 ], "demos_total_size": [ - 40 + 41 ], "e_match_map_status": [ - 1094 + 1095 ], "ended_at": [ - 4958 + 4954 ], "flashes": [ - 3687, + 3683, { "distinct_on": [ - 3710, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3708, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3698 + 3694 ] } ], "flashes_aggregate": [ - 3688, + 3684, { "distinct_on": [ - 3710, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3708, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3698 + 3694 ] } ], "id": [ - 5458 + 5454 ], "is_current_map": [ - 5 + 6 ], "latest_clip_at": [ - 4958 + 4954 ], "lineup_1_score": [ - 40 + 41 ], "lineup_1_side": [ - 1363 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_score": [ - 40 + 41 ], "lineup_2_side": [ - 1363 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "map": [ - 2653 + 2649 ], "map_id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_clips": [ - 2682, + 2678, { "distinct_on": [ - 2704, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2702, + 2698, "[match_clips_order_by!]" ], "where": [ - 2691 + 2687 ] } ], "match_clips_aggregate": [ - 2683, + 2679, { "distinct_on": [ - 2704, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2702, + 2698, "[match_clips_order_by!]" ], "where": [ - 2691 + 2687 ] } ], "match_id": [ - 5458 + 5454 ], "objectives": [ - 3933, + 3929, { "distinct_on": [ - 3954, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3952, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3942 + 3938 ] } ], "objectives_aggregate": [ - 3934, + 3930, { "distinct_on": [ - 3954, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3952, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3942 + 3938 ] } ], "order": [ - 40 + 41 ], "player_assists": [ - 3515, + 3511, { "distinct_on": [ - 3538, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3536, + 3532, "[player_assists_order_by!]" ], "where": [ - 3526 + 3522 ] } ], "player_assists_aggregate": [ - 3516, + 3512, { "distinct_on": [ - 3538, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3536, + 3532, "[player_assists_order_by!]" ], "where": [ - 3526 + 3522 ] } ], "player_damages": [ - 3578, + 3574, { "distinct_on": [ - 3599, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3597, + 3593, "[player_damages_order_by!]" ], "where": [ - 3587 + 3583 ] } ], "player_damages_aggregate": [ - 3579, + 3575, { "distinct_on": [ - 3599, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3597, + 3593, "[player_damages_order_by!]" ], "where": [ - 3587 + 3583 ] } ], "player_kills": [ - 3732, + 3728, { "distinct_on": [ - 3796, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3794, + 3790, "[player_kills_order_by!]" ], "where": [ - 3743 + 3739 ] } ], "player_kills_aggregate": [ - 3733, + 3729, { "distinct_on": [ - 3796, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3794, + 3790, "[player_kills_order_by!]" ], "where": [ - 3743 + 3739 ] } ], "player_unused_utilities": [ - 4220, + 4216, { "distinct_on": [ - 4241, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4239, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 4229 + 4225 ] } ], "player_unused_utilities_aggregate": [ - 4221, + 4217, { "distinct_on": [ - 4241, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4239, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 4229 + 4225 ] } ], "public_clips_count": [ - 40 + 41 ], "public_latest_clip_at": [ - 4958 + 4954 ], "rounds": [ - 2908, + 2904, { "distinct_on": [ - 2929, + 2925, "[match_map_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2927, + 2923, "[match_map_rounds_order_by!]" ], "where": [ - 2917 + 2913 ] } ], "rounds_aggregate": [ - 2909, + 2905, { "distinct_on": [ - 2929, + 2925, "[match_map_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2927, + 2923, "[match_map_rounds_order_by!]" ], "where": [ - 2917 + 2913 ] } ], "started_at": [ - 4958 + 4954 ], "status": [ - 1099 + 1100 ], "utility": [ - 4261, + 4257, { "distinct_on": [ - 4282, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4280, + 4276, "[player_utility_order_by!]" ], "where": [ - 4270 + 4266 ] } ], "utility_aggregate": [ - 4262, + 4258, { "distinct_on": [ - 4282, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4280, + 4276, "[player_utility_order_by!]" ], "where": [ - 4270 + 4266 ] } ], "vetos": [ - 2949, + 2945, { "distinct_on": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2967, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2958 + 2954 ] } ], "vetos_aggregate": [ - 2950, + 2946, { "distinct_on": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2967, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2958 + 2954 ] } ], "winning_lineup_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_maps_aggregate": { "aggregate": [ - 2981 + 2977 ], "nodes": [ - 2977 + 2973 ], "__typename": [ - 83 + 84 ] }, "match_maps_aggregate_bool_exp": { "count": [ - 2980 + 2976 ], "__typename": [ - 83 + 84 ] }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2999 + 2995 ], "distinct": [ - 5 + 6 ], "filter": [ - 2986 + 2982 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "match_maps_aggregate_fields": { "avg": [ - 2984 + 2980 ], "count": [ - 40, + 41, { "columns": [ - 2999, + 2995, "[match_maps_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 2990 + 2986 ], "min": [ - 2992 + 2988 ], "stddev": [ - 3001 + 2997 ], "stddev_pop": [ - 3003 + 2999 ], "stddev_samp": [ - 3005 + 3001 ], "sum": [ - 3009 + 3005 ], "var_pop": [ - 3013 + 3009 ], "var_samp": [ - 3015 + 3011 ], "variance": [ - 3017 + 3013 ], "__typename": [ - 83 + 84 ] }, "match_maps_aggregate_order_by": { "avg": [ - 2985 + 2981 ], "count": [ - 3377 + 3373 ], "max": [ - 2991 + 2987 ], "min": [ - 2993 + 2989 ], "stddev": [ - 3002 + 2998 ], "stddev_pop": [ - 3004 + 3000 ], "stddev_samp": [ - 3006 + 3002 ], "sum": [ - 3010 + 3006 ], "var_pop": [ - 3014 + 3010 ], "var_samp": [ - 3016 + 3012 ], "variance": [ - 3018 + 3014 ], "__typename": [ - 83 + 84 ] }, "match_maps_arr_rel_insert_input": { "data": [ - 2989 + 2985 ], "on_conflict": [ - 2996 + 2992 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_maps_avg_order_by": { "clips_count": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "public_clips_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_maps_bool_exp": { "_and": [ - 2986 + 2982 ], "_not": [ - 2986 + 2982 ], "_or": [ - 2986 + 2982 ], "clips_count": [ - 41 + 42 ], "created_at": [ - 4959 + 4955 ], "demo_processing_started_at": [ - 4959 + 4955 ], "demos": [ - 2869 + 2865 ], "demos_aggregate": [ - 2859 + 2855 ], "demos_download_url": [ - 85 + 86 ], "demos_total_size": [ - 41 + 42 ], "e_match_map_status": [ - 1097 + 1098 ], "ended_at": [ - 4959 + 4955 ], "flashes": [ - 3698 + 3694 ], "flashes_aggregate": [ - 3689 + 3685 ], "id": [ - 5460 + 5456 ], "is_current_map": [ - 6 + 7 ], "latest_clip_at": [ - 4959 + 4955 ], "lineup_1_score": [ - 41 + 42 ], "lineup_1_side": [ - 1364 + 1365 ], "lineup_1_timeouts_available": [ - 41 + 42 ], "lineup_2_score": [ - 41 + 42 ], "lineup_2_side": [ - 1364 + 1365 ], "lineup_2_timeouts_available": [ - 41 + 42 ], "map": [ - 2662 + 2658 ], "map_id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_clips": [ - 2691 + 2687 ], "match_clips_aggregate": [ - 2684 + 2680 ], "match_id": [ - 5460 + 5456 ], "objectives": [ - 3942 + 3938 ], "objectives_aggregate": [ - 3935 + 3931 ], "order": [ - 41 + 42 ], "player_assists": [ - 3526 + 3522 ], "player_assists_aggregate": [ - 3517 + 3513 ], "player_damages": [ - 3587 + 3583 ], "player_damages_aggregate": [ - 3580 + 3576 ], "player_kills": [ - 3743 + 3739 ], "player_kills_aggregate": [ - 3734 + 3730 ], "player_unused_utilities": [ - 4229 + 4225 ], "player_unused_utilities_aggregate": [ - 4222 + 4218 ], "public_clips_count": [ - 41 + 42 ], "public_latest_clip_at": [ - 4959 + 4955 ], "rounds": [ - 2917 + 2913 ], "rounds_aggregate": [ - 2910 + 2906 ], "started_at": [ - 4959 + 4955 ], "status": [ - 1100 + 1101 ], "utility": [ - 4270 + 4266 ], "utility_aggregate": [ - 4263 + 4259 ], "vetos": [ - 2958 + 2954 ], "vetos_aggregate": [ - 2951 + 2947 ], "winning_lineup_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_maps_insert_input": { "clips_count": [ - 40 + 41 ], "created_at": [ - 4958 + 4954 ], "demo_processing_started_at": [ - 4958 + 4954 ], "demos": [ - 2866 + 2862 ], "e_match_map_status": [ - 1105 + 1106 ], "ended_at": [ - 4958 + 4954 ], "flashes": [ - 3695 + 3691 ], "id": [ - 5458 + 5454 ], "latest_clip_at": [ - 4958 + 4954 ], "lineup_1_side": [ - 1363 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_side": [ - 1363 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "map": [ - 2670 + 2666 ], "map_id": [ - 5458 + 5454 ], "match": [ - 3181 + 3177 ], "match_clips": [ - 2688 + 2684 ], "match_id": [ - 5458 + 5454 ], "objectives": [ - 3939 + 3935 ], "order": [ - 40 + 41 ], "player_assists": [ - 3523 + 3519 ], "player_damages": [ - 3584 + 3580 ], "player_kills": [ - 3740 + 3736 ], "player_unused_utilities": [ - 4226 + 4222 ], "public_clips_count": [ - 40 + 41 ], "public_latest_clip_at": [ - 4958 + 4954 ], "rounds": [ - 2914 + 2910 ], "started_at": [ - 4958 + 4954 ], "status": [ - 1099 + 1100 ], "utility": [ - 4267 + 4263 ], "vetos": [ - 2957 + 2953 ], "winning_lineup_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_maps_max_fields": { "clips_count": [ - 40 + 41 ], "created_at": [ - 4958 + 4954 ], "demo_processing_started_at": [ - 4958 + 4954 ], "demos_download_url": [ - 83 + 84 ], "demos_total_size": [ - 40 + 41 ], "ended_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "latest_clip_at": [ - 4958 + 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": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "order": [ - 40 + 41 ], "public_clips_count": [ - 40 + 41 ], "public_latest_clip_at": [ - 4958 + 4954 ], "started_at": [ - 4958 + 4954 ], "winning_lineup_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_maps_max_order_by": { "clips_count": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "demo_processing_started_at": [ - 3377 + 3373 ], "ended_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "latest_clip_at": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "map_id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "public_clips_count": [ - 3377 + 3373 ], "public_latest_clip_at": [ - 3377 + 3373 ], "started_at": [ - 3377 + 3373 ], "winning_lineup_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_maps_min_fields": { "clips_count": [ - 40 + 41 ], "created_at": [ - 4958 + 4954 ], "demo_processing_started_at": [ - 4958 + 4954 ], "demos_download_url": [ - 83 + 84 ], "demos_total_size": [ - 40 + 41 ], "ended_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "latest_clip_at": [ - 4958 + 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": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "order": [ - 40 + 41 ], "public_clips_count": [ - 40 + 41 ], "public_latest_clip_at": [ - 4958 + 4954 ], "started_at": [ - 4958 + 4954 ], "winning_lineup_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_maps_min_order_by": { "clips_count": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "demo_processing_started_at": [ - 3377 + 3373 ], "ended_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "latest_clip_at": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "map_id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "public_clips_count": [ - 3377 + 3373 ], "public_latest_clip_at": [ - 3377 + 3373 ], "started_at": [ - 3377 + 3373 ], "winning_lineup_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_maps_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 2977 + 2973 ], "__typename": [ - 83 + 84 ] }, "match_maps_obj_rel_insert_input": { "data": [ - 2989 + 2985 ], "on_conflict": [ - 2996 + 2992 ], "__typename": [ - 83 + 84 ] }, "match_maps_on_conflict": { "constraint": [ - 2987 + 2983 ], "update_columns": [ - 3011 + 3007 ], "where": [ - 2986 + 2982 ], "__typename": [ - 83 + 84 ] }, "match_maps_order_by": { "clips_count": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "demo_processing_started_at": [ - 3377 + 3373 ], "demos_aggregate": [ - 2864 + 2860 ], "demos_download_url": [ - 3377 + 3373 ], "demos_total_size": [ - 3377 + 3373 ], "e_match_map_status": [ - 1107 + 1108 ], "ended_at": [ - 3377 + 3373 ], "flashes_aggregate": [ - 3694 + 3690 ], "id": [ - 3377 + 3373 ], "is_current_map": [ - 3377 + 3373 ], "latest_clip_at": [ - 3377 + 3373 ], "lineup_1_score": [ - 3377 + 3373 ], "lineup_1_side": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_score": [ - 3377 + 3373 ], "lineup_2_side": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "map": [ - 2672 + 2668 ], "map_id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_clips_aggregate": [ - 2687 + 2683 ], "match_id": [ - 3377 + 3373 ], "objectives_aggregate": [ - 3938 + 3934 ], "order": [ - 3377 + 3373 ], "player_assists_aggregate": [ - 3522 + 3518 ], "player_damages_aggregate": [ - 3583 + 3579 ], "player_kills_aggregate": [ - 3739 + 3735 ], "player_unused_utilities_aggregate": [ - 4225 + 4221 ], "public_clips_count": [ - 3377 + 3373 ], "public_latest_clip_at": [ - 3377 + 3373 ], "rounds_aggregate": [ - 2913 + 2909 ], "started_at": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "utility_aggregate": [ - 4266 + 4262 ], "vetos_aggregate": [ - 2956 + 2952 ], "winning_lineup_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_maps_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_maps_select_column": {}, "match_maps_set_input": { "clips_count": [ - 40 + 41 ], "created_at": [ - 4958 + 4954 ], "demo_processing_started_at": [ - 4958 + 4954 ], "ended_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "latest_clip_at": [ - 4958 + 4954 ], "lineup_1_side": [ - 1363 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_side": [ - 1363 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "order": [ - 40 + 41 ], "public_clips_count": [ - 40 + 41 ], "public_latest_clip_at": [ - 4958 + 4954 ], "started_at": [ - 4958 + 4954 ], "status": [ - 1099 + 1100 ], "winning_lineup_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_maps_stddev_order_by": { "clips_count": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "public_clips_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "public_clips_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "public_clips_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_maps_stream_cursor_input": { "initial_value": [ - 3008 + 3004 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "match_maps_stream_cursor_value_input": { "clips_count": [ - 40 + 41 ], "created_at": [ - 4958 + 4954 ], "demo_processing_started_at": [ - 4958 + 4954 ], "ended_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "latest_clip_at": [ - 4958 + 4954 ], "lineup_1_side": [ - 1363 + 1364 ], "lineup_1_timeouts_available": [ - 40 + 41 ], "lineup_2_side": [ - 1363 + 1364 ], "lineup_2_timeouts_available": [ - 40 + 41 ], "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "order": [ - 40 + 41 ], "public_clips_count": [ - 40 + 41 ], "public_latest_clip_at": [ - 4958 + 4954 ], "started_at": [ - 4958 + 4954 ], "status": [ - 1099 + 1100 ], "winning_lineup_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_maps_sum_order_by": { "clips_count": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "public_clips_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2988 + 2984 ], "_set": [ - 3000 + 2996 ], "where": [ - 2986 + 2982 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_maps_var_pop_order_by": { "clips_count": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "public_clips_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_maps_var_samp_order_by": { "clips_count": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "public_clips_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_maps_variance_order_by": { "clips_count": [ - 3377 + 3373 ], "lineup_1_timeouts_available": [ - 3377 + 3373 ], "lineup_2_timeouts_available": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "public_clips_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 646 + 647 ], "coaches": [ - 5 + 6 ], "default_models": [ - 5 + 6 ], "game_mode": [ - 1920 + 1921 ], "game_mode_id": [ - 5458 + 5454 ], "halftime_pausematch": [ - 5 + 6 ], "has_active_matches": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "invite_code": [ - 83 + 84 ], "knife_round": [ - 5 + 6 ], "live_match_timeout": [ - 40 + 41 ], "map_pool": [ - 2634 + 2630 ], "map_pool_id": [ - 5458 + 5454 ], "map_veto": [ - 5 + 6 ], "match_mode": [ - 1120 + 1121 ], "matches": [ - 3161, + 3157, { "distinct_on": [ - 3185, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3183, + 3179, "[matches_order_by!]" ], "where": [ - 3172 + 3168 ] } ], "matches_aggregate": [ - 3162, + 3158, { "distinct_on": [ - 3185, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3183, + 3179, "[matches_order_by!]" ], "where": [ - 3172 + 3168 ] } ], "mr": [ - 40 + 41 ], "number_of_substitutes": [ - 40 + 41 ], "overtime": [ - 5 + 6 ], "prefer_dedicated_server": [ - 5 + 6 ], "ready_setting": [ - 1282 + 1283 ], "region_veto": [ - 5 + 6 ], "regions": [ - 83 + 84 ], "round_restart_delay": [ - 40 + 41 ], "tech_timeout_setting": [ - 1444 + 1445 ], "timeout_setting": [ - 1444 + 1445 ], "tournament": [ - 5394 + 5390 ], "tournament_bracket": [ - 5002 + 4998 ], "tournament_stage": [ - 5219 + 5215 ], "tv_delay": [ - 40 + 41 ], "type": [ - 1181 + 1182 ], "veto_pick_timeout": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_options_aggregate": { "aggregate": [ - 3025 + 3021 ], "nodes": [ - 3019 + 3015 ], "__typename": [ - 83 + 84 ] }, "match_options_aggregate_bool_exp": { "bool_and": [ - 3022 + 3018 ], "bool_or": [ - 3023 + 3019 ], "count": [ - 3024 + 3020 ], "__typename": [ - 83 + 84 ] }, "match_options_aggregate_bool_exp_bool_and": { "arguments": [ - 3044 + 3040 ], "distinct": [ - 5 + 6 ], "filter": [ - 3030 + 3026 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "match_options_aggregate_bool_exp_bool_or": { "arguments": [ - 3045 + 3041 ], "distinct": [ - 5 + 6 ], "filter": [ - 3030 + 3026 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "match_options_aggregate_bool_exp_count": { "arguments": [ - 3043 + 3039 ], "distinct": [ - 5 + 6 ], "filter": [ - 3030 + 3026 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "match_options_aggregate_fields": { "avg": [ - 3028 + 3024 ], "count": [ - 40, + 41, { "columns": [ - 3043, + 3039, "[match_options_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3034 + 3030 ], "min": [ - 3036 + 3032 ], "stddev": [ - 3047 + 3043 ], "stddev_pop": [ - 3049 + 3045 ], "stddev_samp": [ - 3051 + 3047 ], "sum": [ - 3055 + 3051 ], "var_pop": [ - 3059 + 3055 ], "var_samp": [ - 3061 + 3057 ], "variance": [ - 3063 + 3059 ], "__typename": [ - 83 + 84 ] }, "match_options_aggregate_order_by": { "avg": [ - 3029 + 3025 ], "count": [ - 3377 + 3373 ], "max": [ - 3035 + 3031 ], "min": [ - 3037 + 3033 ], "stddev": [ - 3048 + 3044 ], "stddev_pop": [ - 3050 + 3046 ], "stddev_samp": [ - 3052 + 3048 ], "sum": [ - 3056 + 3052 ], "var_pop": [ - 3060 + 3056 ], "var_samp": [ - 3062 + 3058 ], "variance": [ - 3064 + 3060 ], "__typename": [ - 83 + 84 ] }, "match_options_arr_rel_insert_input": { "data": [ - 3033 + 3029 ], "on_conflict": [ - 3040 + 3036 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_options_avg_order_by": { "auto_cancel_duration": [ - 3377 + 3373 ], "best_of": [ - 3377 + 3373 ], "live_match_timeout": [ - 3377 + 3373 ], "mr": [ - 3377 + 3373 ], "number_of_substitutes": [ - 3377 + 3373 ], "round_restart_delay": [ - 3377 + 3373 ], "tv_delay": [ - 3377 + 3373 ], "veto_pick_timeout": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_options_bool_exp": { "_and": [ - 3030 + 3026 ], "_not": [ - 3030 + 3026 ], "_or": [ - 3030 + 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": [ - 647 + 648 ], "coaches": [ - 6 + 7 ], "default_models": [ - 6 + 7 ], "game_mode": [ 1924 ], "game_mode_id": [ - 5460 + 5456 ], "halftime_pausematch": [ - 6 + 7 ], "has_active_matches": [ - 6 + 7 ], "id": [ - 5460 + 5456 ], "invite_code": [ - 85 + 86 ], "knife_round": [ - 6 + 7 ], "live_match_timeout": [ - 41 + 42 ], "map_pool": [ - 2637 + 2633 ], "map_pool_id": [ - 5460 + 5456 ], "map_veto": [ - 6 + 7 ], "match_mode": [ - 1121 + 1122 ], "matches": [ - 3172 + 3168 ], "matches_aggregate": [ - 3163 + 3159 ], "mr": [ - 41 + 42 ], "number_of_substitutes": [ - 41 + 42 ], "overtime": [ - 6 + 7 ], "prefer_dedicated_server": [ - 6 + 7 ], "ready_setting": [ - 1283 + 1284 ], "region_veto": [ - 6 + 7 ], "regions": [ - 84 + 85 ], "round_restart_delay": [ - 41 + 42 ], "tech_timeout_setting": [ - 1445 + 1446 ], "timeout_setting": [ - 1445 + 1446 ], "tournament": [ - 5415 + 5411 ], "tournament_bracket": [ - 5013 + 5009 ], "tournament_stage": [ - 5231 + 5227 ], "tv_delay": [ - 41 + 42 ], "type": [ - 1182 + 1183 ], "veto_pick_timeout": [ - 41 + 42 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 646 + 647 ], "coaches": [ - 5 + 6 ], "default_models": [ - 5 + 6 ], "game_mode": [ - 1933 + 1930 ], "game_mode_id": [ - 5458 + 5454 ], "halftime_pausematch": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "invite_code": [ - 83 + 84 ], "knife_round": [ - 5 + 6 ], "live_match_timeout": [ - 40 + 41 ], "map_pool": [ - 2643 + 2639 ], "map_pool_id": [ - 5458 + 5454 ], "map_veto": [ - 5 + 6 ], "match_mode": [ - 1120 + 1121 ], "matches": [ - 3169 + 3165 ], "mr": [ - 40 + 41 ], "number_of_substitutes": [ - 40 + 41 ], "overtime": [ - 5 + 6 ], "prefer_dedicated_server": [ - 5 + 6 ], "ready_setting": [ - 1282 + 1283 ], "region_veto": [ - 5 + 6 ], "regions": [ - 83 + 84 ], "round_restart_delay": [ - 40 + 41 ], "tech_timeout_setting": [ - 1444 + 1445 ], "timeout_setting": [ - 1444 + 1445 ], "tournament": [ - 5424 + 5420 ], "tournament_bracket": [ - 5022 + 5018 ], "tournament_stage": [ - 5243 + 5239 ], "tv_delay": [ - 40 + 41 ], "type": [ - 1181 + 1182 ], "veto_pick_timeout": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_options_max_fields": { "auto_cancel_duration": [ - 40 + 41 ], "best_of": [ - 40 + 41 ], "game_mode_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "invite_code": [ - 83 + 84 ], "live_match_timeout": [ - 40 + 41 ], "map_pool_id": [ - 5458 + 5454 ], "mr": [ - 40 + 41 ], "number_of_substitutes": [ - 40 + 41 ], "regions": [ - 83 + 84 ], "round_restart_delay": [ - 40 + 41 ], "tv_delay": [ - 40 + 41 ], "veto_pick_timeout": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_options_max_order_by": { "auto_cancel_duration": [ - 3377 + 3373 ], "best_of": [ - 3377 + 3373 ], "game_mode_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "invite_code": [ - 3377 + 3373 ], "live_match_timeout": [ - 3377 + 3373 ], "map_pool_id": [ - 3377 + 3373 ], "mr": [ - 3377 + 3373 ], "number_of_substitutes": [ - 3377 + 3373 ], "regions": [ - 3377 + 3373 ], "round_restart_delay": [ - 3377 + 3373 ], "tv_delay": [ - 3377 + 3373 ], "veto_pick_timeout": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_options_min_fields": { "auto_cancel_duration": [ - 40 + 41 ], "best_of": [ - 40 + 41 ], "game_mode_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "invite_code": [ - 83 + 84 ], "live_match_timeout": [ - 40 + 41 ], "map_pool_id": [ - 5458 + 5454 ], "mr": [ - 40 + 41 ], "number_of_substitutes": [ - 40 + 41 ], "regions": [ - 83 + 84 ], "round_restart_delay": [ - 40 + 41 ], "tv_delay": [ - 40 + 41 ], "veto_pick_timeout": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_options_min_order_by": { "auto_cancel_duration": [ - 3377 + 3373 ], "best_of": [ - 3377 + 3373 ], "game_mode_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "invite_code": [ - 3377 + 3373 ], "live_match_timeout": [ - 3377 + 3373 ], "map_pool_id": [ - 3377 + 3373 ], "mr": [ - 3377 + 3373 ], "number_of_substitutes": [ - 3377 + 3373 ], "regions": [ - 3377 + 3373 ], "round_restart_delay": [ - 3377 + 3373 ], "tv_delay": [ - 3377 + 3373 ], "veto_pick_timeout": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_options_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3019 + 3015 ], "__typename": [ - 83 + 84 ] }, "match_options_obj_rel_insert_input": { "data": [ - 3033 + 3029 ], "on_conflict": [ - 3040 + 3036 ], "__typename": [ - 83 + 84 ] }, "match_options_on_conflict": { "constraint": [ - 3031 + 3027 ], "update_columns": [ - 3057 + 3053 ], "where": [ - 3030 + 3026 ], "__typename": [ - 83 + 84 ] }, "match_options_order_by": { "auto_cancel_duration": [ - 3377 + 3373 ], "auto_cancellation": [ - 3377 + 3373 ], "best_of": [ - 3377 + 3373 ], "camera_allow_teammates": [ - 3377 + 3373 ], "camera_required": [ - 3377 + 3373 ], "check_in_setting": [ - 3377 + 3373 ], "coaches": [ - 3377 + 3373 ], "default_models": [ - 3377 + 3373 ], "game_mode": [ - 1935 + 1932 ], "game_mode_id": [ - 3377 + 3373 ], "halftime_pausematch": [ - 3377 + 3373 ], "has_active_matches": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "invite_code": [ - 3377 + 3373 ], "knife_round": [ - 3377 + 3373 ], "live_match_timeout": [ - 3377 + 3373 ], "map_pool": [ - 2645 + 2641 ], "map_pool_id": [ - 3377 + 3373 ], "map_veto": [ - 3377 + 3373 ], "match_mode": [ - 3377 + 3373 ], "matches_aggregate": [ - 3168 + 3164 ], "mr": [ - 3377 + 3373 ], "number_of_substitutes": [ - 3377 + 3373 ], "overtime": [ - 3377 + 3373 ], "prefer_dedicated_server": [ - 3377 + 3373 ], "ready_setting": [ - 3377 + 3373 ], "region_veto": [ - 3377 + 3373 ], "regions": [ - 3377 + 3373 ], "round_restart_delay": [ - 3377 + 3373 ], "tech_timeout_setting": [ - 3377 + 3373 ], "timeout_setting": [ - 3377 + 3373 ], "tournament": [ - 5426 + 5422 ], "tournament_bracket": [ - 5024 + 5020 ], "tournament_stage": [ - 5245 + 5241 ], "tv_delay": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "veto_pick_timeout": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_options_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_options_select_column": {}, @@ -55825,999 +55788,999 @@ export default { "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": [ - 646 + 647 ], "coaches": [ - 5 + 6 ], "default_models": [ - 5 + 6 ], "game_mode_id": [ - 5458 + 5454 ], "halftime_pausematch": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "invite_code": [ - 83 + 84 ], "knife_round": [ - 5 + 6 ], "live_match_timeout": [ - 40 + 41 ], "map_pool_id": [ - 5458 + 5454 ], "map_veto": [ - 5 + 6 ], "match_mode": [ - 1120 + 1121 ], "mr": [ - 40 + 41 ], "number_of_substitutes": [ - 40 + 41 ], "overtime": [ - 5 + 6 ], "prefer_dedicated_server": [ - 5 + 6 ], "ready_setting": [ - 1282 + 1283 ], "region_veto": [ - 5 + 6 ], "regions": [ - 83 + 84 ], "round_restart_delay": [ - 40 + 41 ], "tech_timeout_setting": [ - 1444 + 1445 ], "timeout_setting": [ - 1444 + 1445 ], "tv_delay": [ - 40 + 41 ], "type": [ - 1181 + 1182 ], "veto_pick_timeout": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_options_stddev_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": [ - 83 + 84 ] }, "match_options_stddev_order_by": { "auto_cancel_duration": [ - 3377 + 3373 ], "best_of": [ - 3377 + 3373 ], "live_match_timeout": [ - 3377 + 3373 ], "mr": [ - 3377 + 3373 ], "number_of_substitutes": [ - 3377 + 3373 ], "round_restart_delay": [ - 3377 + 3373 ], "tv_delay": [ - 3377 + 3373 ], "veto_pick_timeout": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_options_stddev_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": [ - 83 + 84 ] }, "match_options_stddev_pop_order_by": { "auto_cancel_duration": [ - 3377 + 3373 ], "best_of": [ - 3377 + 3373 ], "live_match_timeout": [ - 3377 + 3373 ], "mr": [ - 3377 + 3373 ], "number_of_substitutes": [ - 3377 + 3373 ], "round_restart_delay": [ - 3377 + 3373 ], "tv_delay": [ - 3377 + 3373 ], "veto_pick_timeout": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "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": [ - 83 + 84 ] }, "match_options_stddev_samp_order_by": { "auto_cancel_duration": [ - 3377 + 3373 ], "best_of": [ - 3377 + 3373 ], "live_match_timeout": [ - 3377 + 3373 ], "mr": [ - 3377 + 3373 ], "number_of_substitutes": [ - 3377 + 3373 ], "round_restart_delay": [ - 3377 + 3373 ], "tv_delay": [ - 3377 + 3373 ], "veto_pick_timeout": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_options_stream_cursor_input": { "initial_value": [ - 3054 + 3050 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 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": [ - 646 + 647 ], "coaches": [ - 5 + 6 ], "default_models": [ - 5 + 6 ], "game_mode_id": [ - 5458 + 5454 ], "halftime_pausematch": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "invite_code": [ - 83 + 84 ], "knife_round": [ - 5 + 6 ], "live_match_timeout": [ - 40 + 41 ], "map_pool_id": [ - 5458 + 5454 ], "map_veto": [ - 5 + 6 ], "match_mode": [ - 1120 + 1121 ], "mr": [ - 40 + 41 ], "number_of_substitutes": [ - 40 + 41 ], "overtime": [ - 5 + 6 ], "prefer_dedicated_server": [ - 5 + 6 ], "ready_setting": [ - 1282 + 1283 ], "region_veto": [ - 5 + 6 ], "regions": [ - 83 + 84 ], "round_restart_delay": [ - 40 + 41 ], "tech_timeout_setting": [ - 1444 + 1445 ], "timeout_setting": [ - 1444 + 1445 ], "tv_delay": [ - 40 + 41 ], "type": [ - 1181 + 1182 ], "veto_pick_timeout": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_options_sum_order_by": { "auto_cancel_duration": [ - 3377 + 3373 ], "best_of": [ - 3377 + 3373 ], "live_match_timeout": [ - 3377 + 3373 ], "mr": [ - 3377 + 3373 ], "number_of_substitutes": [ - 3377 + 3373 ], "round_restart_delay": [ - 3377 + 3373 ], "tv_delay": [ - 3377 + 3373 ], "veto_pick_timeout": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 3032 + 3028 ], "_set": [ - 3046 + 3042 ], "where": [ - 3030 + 3026 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "match_options_var_pop_order_by": { "auto_cancel_duration": [ - 3377 + 3373 ], "best_of": [ - 3377 + 3373 ], "live_match_timeout": [ - 3377 + 3373 ], "mr": [ - 3377 + 3373 ], "number_of_substitutes": [ - 3377 + 3373 ], "round_restart_delay": [ - 3377 + 3373 ], "tv_delay": [ - 3377 + 3373 ], "veto_pick_timeout": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_options_var_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": [ - 83 + 84 ] }, "match_options_var_samp_order_by": { "auto_cancel_duration": [ - 3377 + 3373 ], "best_of": [ - 3377 + 3373 ], "live_match_timeout": [ - 3377 + 3373 ], "mr": [ - 3377 + 3373 ], "number_of_substitutes": [ - 3377 + 3373 ], "round_restart_delay": [ - 3377 + 3373 ], "tv_delay": [ - 3377 + 3373 ], "veto_pick_timeout": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_options_variance_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": [ - 83 + 84 ] }, "match_options_variance_order_by": { "auto_cancel_duration": [ - 3377 + 3373 ], "best_of": [ - 3377 + 3373 ], "live_match_timeout": [ - 3377 + 3373 ], "mr": [ - 3377 + 3373 ], "number_of_substitutes": [ - 3377 + 3373 ], "round_restart_delay": [ - 3377 + 3373 ], "tv_delay": [ - 3377 + 3373 ], "veto_pick_timeout": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks": { "auto_picked": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_lineup": [ - 2815 + 2811 ], "match_lineup_id": [ - 5458 + 5454 ], "region": [ - 83 + 84 ], "type": [ - 1547 + 1548 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_aggregate": { "aggregate": [ - 3071 + 3067 ], "nodes": [ - 3065 + 3061 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_aggregate_bool_exp": { "bool_and": [ - 3068 + 3064 ], "bool_or": [ - 3069 + 3065 ], "count": [ - 3070 + 3066 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 3086 + 3082 ], "distinct": [ - 5 + 6 ], "filter": [ - 3074 + 3070 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 3087 + 3083 ], "distinct": [ - 5 + 6 ], "filter": [ - 3074 + 3070 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 3085 + 3081 ], "distinct": [ - 5 + 6 ], "filter": [ - 3074 + 3070 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 3085, + 3081, "[match_region_veto_picks_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3077 + 3073 ], "min": [ - 3079 + 3075 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 3377 + 3373 ], "max": [ - 3078 + 3074 ], "min": [ - 3080 + 3076 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 3076 + 3072 ], "on_conflict": [ - 3082 + 3078 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_bool_exp": { "_and": [ - 3074 + 3070 ], "_not": [ - 3074 + 3070 ], "_or": [ - 3074 + 3070 ], "auto_picked": [ - 6 + 7 ], "created_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_lineup": [ - 2824 + 2820 ], "match_lineup_id": [ - 5460 + 5456 ], "region": [ - 85 + 86 ], "type": [ - 1548 + 1549 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "auto_picked": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_lineup": [ - 2833 + 2829 ], "match_lineup_id": [ - 5458 + 5454 ], "region": [ - 83 + 84 ], "type": [ - 1547 + 1548 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_max_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "region": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_max_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_lineup_id": [ - 3377 + 3373 ], "region": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_min_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "region": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_min_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_lineup_id": [ - 3377 + 3373 ], "region": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3065 + 3061 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_on_conflict": { "constraint": [ - 3075 + 3071 ], "update_columns": [ - 3091 + 3087 ], "where": [ - 3074 + 3070 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_order_by": { "auto_picked": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_lineup": [ - 2835 + 2831 ], "match_lineup_id": [ - 3377 + 3373 ], "region": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_select_column": {}, @@ -56825,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": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "region": [ - 83 + 84 ], "type": [ - 1547 + 1548 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 3090 + 3086 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_stream_cursor_value_input": { "auto_picked": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "region": [ - 83 + 84 ], "type": [ - 1547 + 1548 ], "__typename": [ - 83 + 84 ] }, "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 3088 + 3084 ], "where": [ - 3074 + 3070 ], "__typename": [ - 83 + 84 ] }, "match_streams": { "autodirector": [ - 5 + 6 ], "error_message": [ - 83 + 84 ], "game_server_node": [ - 2067 + 2063 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_game_streamer": [ - 5 + 6 ], "is_live": [ - 5 + 6 ], "k8s_service_name": [ - 83 + 84 ], "last_status_at": [ - 4958 + 4954 ], "link": [ - 83 + 84 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "mode": [ - 83 + 84 ], "priority": [ - 40 + 41 ], "status": [ - 83 + 84 ], "status_history": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "stream_url": [ - 83 + 84 ], "title": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_streams_aggregate": { "aggregate": [ - 3099 + 3095 ], "nodes": [ - 3093 + 3089 ], "__typename": [ - 83 + 84 ] }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 3096 + 3092 ], "bool_or": [ - 3097 + 3093 ], "count": [ - 3098 + 3094 ], "__typename": [ - 83 + 84 ] }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 3122 + 3118 ], "distinct": [ - 5 + 6 ], "filter": [ - 3105 + 3101 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 3123 + 3119 ], "distinct": [ - 5 + 6 ], "filter": [ - 3105 + 3101 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 3121 + 3117 ], "distinct": [ - 5 + 6 ], "filter": [ - 3105 + 3101 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "match_streams_aggregate_fields": { "avg": [ - 3103 + 3099 ], "count": [ - 40, + 41, { "columns": [ - 3121, + 3117, "[match_streams_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3112 + 3108 ], "min": [ - 3114 + 3110 ], "stddev": [ - 3125 + 3121 ], "stddev_pop": [ - 3127 + 3123 ], "stddev_samp": [ - 3129 + 3125 ], "sum": [ - 3133 + 3129 ], "var_pop": [ - 3137 + 3133 ], "var_samp": [ - 3139 + 3135 ], "variance": [ - 3141 + 3137 ], "__typename": [ - 83 + 84 ] }, "match_streams_aggregate_order_by": { "avg": [ - 3104 + 3100 ], "count": [ - 3377 + 3373 ], "max": [ - 3113 + 3109 ], "min": [ - 3115 + 3111 ], "stddev": [ - 3126 + 3122 ], "stddev_pop": [ - 3128 + 3124 ], "stddev_samp": [ - 3130 + 3126 ], "sum": [ - 3134 + 3130 ], "var_pop": [ - 3138 + 3134 ], "var_samp": [ - 3140 + 3136 ], "variance": [ - 3142 + 3138 ], "__typename": [ - 83 + 84 ] }, "match_streams_append_input": { "status_history": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "match_streams_arr_rel_insert_input": { "data": [ - 3111 + 3107 ], "on_conflict": [ - 3117 + 3113 ], "__typename": [ - 83 + 84 ] }, "match_streams_avg_fields": { "priority": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_streams_avg_order_by": { "priority": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_streams_bool_exp": { "_and": [ - 3105 + 3101 ], "_not": [ - 3105 + 3101 ], "_or": [ - 3105 + 3101 ], "autodirector": [ - 6 + 7 ], "error_message": [ - 85 + 86 ], "game_server_node": [ - 2079 + 2075 ], "game_server_node_id": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "is_game_streamer": [ - 6 + 7 ], "is_live": [ - 6 + 7 ], "k8s_service_name": [ - 85 + 86 ], "last_status_at": [ - 4959 + 4955 ], "link": [ - 85 + 86 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "mode": [ - 85 + 86 ], "priority": [ - 41 + 42 ], "status": [ - 85 + 86 ], "status_history": [ - 2193 + 2189 ], "stream_url": [ - 85 + 86 ], "title": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "match_streams_constraint": {}, "match_streams_delete_at_path_input": { "status_history": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_streams_delete_elem_input": { "status_history": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_streams_delete_key_input": { "status_history": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_streams_inc_input": { "priority": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_streams_insert_input": { "autodirector": [ - 5 + 6 ], "error_message": [ - 83 + 84 ], "game_server_node": [ - 2091 + 2087 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_game_streamer": [ - 5 + 6 ], "is_live": [ - 5 + 6 ], "k8s_service_name": [ - 83 + 84 ], "last_status_at": [ - 4958 + 4954 ], "link": [ - 83 + 84 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "mode": [ - 83 + 84 ], "priority": [ - 40 + 41 ], "status": [ - 83 + 84 ], "status_history": [ - 2191 + 2187 ], "stream_url": [ - 83 + 84 ], "title": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_streams_max_fields": { "error_message": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "k8s_service_name": [ - 83 + 84 ], "last_status_at": [ - 4958 + 4954 ], "link": [ - 83 + 84 ], "match_id": [ - 5458 + 5454 ], "mode": [ - 83 + 84 ], "priority": [ - 40 + 41 ], "status": [ - 83 + 84 ], "stream_url": [ - 83 + 84 ], "title": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_streams_max_order_by": { "error_message": [ - 3377 + 3373 ], "game_server_node_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "k8s_service_name": [ - 3377 + 3373 ], "last_status_at": [ - 3377 + 3373 ], "link": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "mode": [ - 3377 + 3373 ], "priority": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "stream_url": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_streams_min_fields": { "error_message": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "k8s_service_name": [ - 83 + 84 ], "last_status_at": [ - 4958 + 4954 ], "link": [ - 83 + 84 ], "match_id": [ - 5458 + 5454 ], "mode": [ - 83 + 84 ], "priority": [ - 40 + 41 ], "status": [ - 83 + 84 ], "stream_url": [ - 83 + 84 ], "title": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_streams_min_order_by": { "error_message": [ - 3377 + 3373 ], "game_server_node_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "k8s_service_name": [ - 3377 + 3373 ], "last_status_at": [ - 3377 + 3373 ], "link": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "mode": [ - 3377 + 3373 ], "priority": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "stream_url": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_streams_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3093 + 3089 ], "__typename": [ - 83 + 84 ] }, "match_streams_on_conflict": { "constraint": [ - 3106 + 3102 ], "update_columns": [ - 3135 + 3131 ], "where": [ - 3105 + 3101 ], "__typename": [ - 83 + 84 ] }, "match_streams_order_by": { "autodirector": [ - 3377 + 3373 ], "error_message": [ - 3377 + 3373 ], "game_server_node": [ - 2093 + 2089 ], "game_server_node_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "is_game_streamer": [ - 3377 + 3373 ], "is_live": [ - 3377 + 3373 ], "k8s_service_name": [ - 3377 + 3373 ], "last_status_at": [ - 3377 + 3373 ], "link": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "mode": [ - 3377 + 3373 ], "priority": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "status_history": [ - 3377 + 3373 ], "stream_url": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_streams_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "match_streams_prepend_input": { "status_history": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "match_streams_select_column": {}, @@ -57587,2703 +57550,2703 @@ export default { "match_streams_select_column_match_streams_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_streams_set_input": { "autodirector": [ - 5 + 6 ], "error_message": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_game_streamer": [ - 5 + 6 ], "is_live": [ - 5 + 6 ], "k8s_service_name": [ - 83 + 84 ], "last_status_at": [ - 4958 + 4954 ], "link": [ - 83 + 84 ], "match_id": [ - 5458 + 5454 ], "mode": [ - 83 + 84 ], "priority": [ - 40 + 41 ], "status": [ - 83 + 84 ], "status_history": [ - 2191 + 2187 ], "stream_url": [ - 83 + 84 ], "title": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_streams_stddev_fields": { "priority": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_streams_stddev_order_by": { "priority": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_streams_stddev_pop_fields": { "priority": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_streams_stddev_pop_order_by": { "priority": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_streams_stddev_samp_fields": { "priority": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_streams_stddev_samp_order_by": { "priority": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_streams_stream_cursor_input": { "initial_value": [ - 3132 + 3128 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "match_streams_stream_cursor_value_input": { "autodirector": [ - 5 + 6 ], "error_message": [ - 83 + 84 ], "game_server_node_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_game_streamer": [ - 5 + 6 ], "is_live": [ - 5 + 6 ], "k8s_service_name": [ - 83 + 84 ], "last_status_at": [ - 4958 + 4954 ], "link": [ - 83 + 84 ], "match_id": [ - 5458 + 5454 ], "mode": [ - 83 + 84 ], "priority": [ - 40 + 41 ], "status": [ - 83 + 84 ], "status_history": [ - 2191 + 2187 ], "stream_url": [ - 83 + 84 ], "title": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_streams_sum_fields": { "priority": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "match_streams_sum_order_by": { "priority": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 3101 + 3097 ], "_delete_at_path": [ - 3107 + 3103 ], "_delete_elem": [ - 3108 + 3104 ], "_delete_key": [ - 3109 + 3105 ], "_inc": [ - 3110 + 3106 ], "_prepend": [ - 3120 + 3116 ], "_set": [ - 3124 + 3120 ], "where": [ - 3105 + 3101 ], "__typename": [ - 83 + 84 ] }, "match_streams_var_pop_fields": { "priority": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_streams_var_pop_order_by": { "priority": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_streams_var_samp_fields": { "priority": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_streams_var_samp_order_by": { "priority": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_streams_variance_fields": { "priority": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "match_streams_variance_order_by": { "priority": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs": { "cfg": [ - 83 + 84 ], "type": [ - 832 + 833 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs_aggregate": { "aggregate": [ - 3145 + 3141 ], "nodes": [ - 3143 + 3139 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 3155, + 3151, "[match_type_cfgs_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3149 + 3145 ], "min": [ - 3150 + 3146 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs_bool_exp": { "_and": [ - 3146 + 3142 ], "_not": [ - 3146 + 3142 ], "_or": [ - 3146 + 3142 ], "cfg": [ - 85 + 86 ], "type": [ - 833 + 834 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs_constraint": {}, "match_type_cfgs_insert_input": { "cfg": [ - 83 + 84 ], "type": [ - 832 + 833 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs_max_fields": { "cfg": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs_min_fields": { "cfg": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3143 + 3139 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs_on_conflict": { "constraint": [ - 3147 + 3143 ], "update_columns": [ - 3159 + 3155 ], "where": [ - 3146 + 3142 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs_order_by": { "cfg": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs_pk_columns_input": { "type": [ - 832 + 833 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs_select_column": {}, "match_type_cfgs_set_input": { "cfg": [ - 83 + 84 ], "type": [ - 832 + 833 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 3158 + 3154 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs_stream_cursor_value_input": { "cfg": [ - 83 + 84 ], "type": [ - 832 + 833 ], "__typename": [ - 83 + 84 ] }, "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 3156 + 3152 ], "where": [ - 3146 + 3142 ], "__typename": [ - 83 + 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": [ - 4958 + 4954 ], "clutches": [ - 5638, + 5634, { "distinct_on": [ - 5654, + 5650, "[v_match_clutches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5653, + 5649, "[v_match_clutches_order_by!]" ], "where": [ - 5647 + 5643 ] } ], "clutches_aggregate": [ - 5639, + 5635, { "distinct_on": [ - 5654, + 5650, "[v_match_clutches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5653, + 5649, "[v_match_clutches_order_by!]" ], "where": [ - 5647 + 5643 ] } ], "connection_link": [ - 83 + 84 ], "connection_string": [ - 83 + 84 ], "counts_toward_ranking": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "current_match_map_id": [ - 5458 + 5454 ], "demos": [ - 2857, + 2853, { "distinct_on": [ - 2886, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2883, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2869 + 2865 ] } ], "demos_aggregate": [ - 2858, + 2854, { "distinct_on": [ - 2886, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2883, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2869 + 2865 ] } ], "draft_games": [ - 555, + 556, { "distinct_on": [ - 579, + 580, "[draft_games_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 577, + 578, "[draft_games_order_by!]" ], "where": [ - 566 + 567 ] } ], "draft_games_aggregate": [ - 556, + 557, { "distinct_on": [ - 579, + 580, "[draft_games_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 577, + 578, "[draft_games_order_by!]" ], "where": [ - 566 + 567 ] } ], "e_match_status": [ - 1155 + 1156 ], "e_region": [ - 4449 + 4445 ], "effective_at": [ - 4958 + 4954 ], "elo_changes": [ - 5835, + 5831, { "distinct_on": [ - 5861, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5860, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5854 + 5850 ] } ], "elo_changes_aggregate": [ - 5836, + 5832, { "distinct_on": [ - 5861, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5860, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5854 + 5850 ] } ], "ended_at": [ - 4958 + 4954 ], "external_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "invite_code": [ - 83 + 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": [ - 83 + 84 ], "lineup_1": [ - 2815 + 2811 ], "lineup_1_id": [ - 5458 + 5454 ], "lineup_2": [ - 2815 + 2811 ], "lineup_2_id": [ - 5458 + 5454 ], "lineup_counts": [ - 2189, + 2185, { "path": [ - 83 + 84 ] } ], "map_veto_picking_lineup_id": [ - 5458 + 5454 ], "map_veto_picks": [ - 2949, + 2945, { "distinct_on": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2967, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2958 + 2954 ] } ], "map_veto_picks_aggregate": [ - 2950, + 2946, { "distinct_on": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2967, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2958 + 2954 ] } ], "map_veto_type": [ - 83 + 84 ], "match_maps": [ - 2977, + 2973, { "distinct_on": [ - 2999, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2997, + 2993, "[match_maps_order_by!]" ], "where": [ - 2986 + 2982 ] } ], "match_maps_aggregate": [ - 2978, + 2974, { "distinct_on": [ - 2999, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2997, + 2993, "[match_maps_order_by!]" ], "where": [ - 2986 + 2982 ] } ], "match_options_id": [ - 5458 + 5454 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "opening_duels": [ - 5766, + 5762, { "distinct_on": [ - 5782, + 5778, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5781, + 5777, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5775 + 5771 ] } ], "opening_duels_aggregate": [ - 5767, + 5763, { "distinct_on": [ - 5782, + 5778, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5781, + 5777, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5775 + 5771 ] } ], "options": [ - 3019 + 3015 ], "organizer": [ - 4335 + 4331 ], "organizer_steam_id": [ - 268 + 269 ], "password": [ - 83 + 84 ], "player_assists": [ - 3515, + 3511, { "distinct_on": [ - 3538, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3536, + 3532, "[player_assists_order_by!]" ], "where": [ - 3526 + 3522 ] } ], "player_assists_aggregate": [ - 3516, + 3512, { "distinct_on": [ - 3538, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3536, + 3532, "[player_assists_order_by!]" ], "where": [ - 3526 + 3522 ] } ], "player_damages": [ - 3578, + 3574, { "distinct_on": [ - 3599, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3597, + 3593, "[player_damages_order_by!]" ], "where": [ - 3587 + 3583 ] } ], "player_damages_aggregate": [ - 3579, + 3575, { "distinct_on": [ - 3599, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3597, + 3593, "[player_damages_order_by!]" ], "where": [ - 3587 + 3583 ] } ], "player_flashes": [ - 3687, + 3683, { "distinct_on": [ - 3710, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3708, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3698 + 3694 ] } ], "player_flashes_aggregate": [ - 3688, + 3684, { "distinct_on": [ - 3710, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3708, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3698 + 3694 ] } ], "player_kills": [ - 3732, + 3728, { "distinct_on": [ - 3796, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3794, + 3790, "[player_kills_order_by!]" ], "where": [ - 3743 + 3739 ] } ], "player_kills_aggregate": [ - 3733, + 3729, { "distinct_on": [ - 3796, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3794, + 3790, "[player_kills_order_by!]" ], "where": [ - 3743 + 3739 ] } ], "player_objectives": [ - 3933, + 3929, { "distinct_on": [ - 3954, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3952, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3942 + 3938 ] } ], "player_objectives_aggregate": [ - 3934, + 3930, { "distinct_on": [ - 3954, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3952, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3942 + 3938 ] } ], "player_unused_utilities": [ - 4220, + 4216, { "distinct_on": [ - 4241, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4239, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 4229 + 4225 ] } ], "player_unused_utilities_aggregate": [ - 4221, + 4217, { "distinct_on": [ - 4241, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4239, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 4229 + 4225 ] } ], "player_utility": [ - 4261, + 4257, { "distinct_on": [ - 4282, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4280, + 4276, "[player_utility_order_by!]" ], "where": [ - 4270 + 4266 ] } ], "player_utility_aggregate": [ - 4262, + 4258, { "distinct_on": [ - 4282, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4280, + 4276, "[player_utility_order_by!]" ], "where": [ - 4270 + 4266 ] } ], "region": [ - 83 + 84 ], "region_veto_picking_lineup_id": [ - 5458 + 5454 ], "region_veto_picks": [ - 3065, + 3061, { "distinct_on": [ - 3085, + 3081, "[match_region_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3083, + 3079, "[match_region_veto_picks_order_by!]" ], "where": [ - 3074 + 3070 ] } ], "region_veto_picks_aggregate": [ - 3066, + 3062, { "distinct_on": [ - 3085, + 3081, "[match_region_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3083, + 3079, "[match_region_veto_picks_order_by!]" ], "where": [ - 3074 + 3070 ] } ], "requested_organizer": [ - 5 + 6 ], "scheduled_at": [ - 4958 + 4954 ], "server": [ - 4476 + 4472 ], "server_error": [ - 83 + 84 ], "server_id": [ - 5458 + 5454 ], "server_plugin_runtime": [ - 83 + 84 ], "server_region": [ - 83 + 84 ], "server_type": [ - 83 + 84 ], "share_code": [ - 83 + 84 ], "source": [ - 83 + 84 ], "started_at": [ - 4958 + 4954 ], "status": [ - 1160 + 1161 ], "streams": [ - 3093, + 3089, { "distinct_on": [ - 3121, + 3117, "[match_streams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3118, + 3114, "[match_streams_order_by!]" ], "where": [ - 3105 + 3101 ] } ], "streams_aggregate": [ - 3094, + 3090, { "distinct_on": [ - 3121, + 3117, "[match_streams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3118, + 3114, "[match_streams_order_by!]" ], "where": [ - 3105 + 3101 ] } ], "teams": [ - 4909, + 4905, { "distinct_on": [ - 4933, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4931, + 4927, "[teams_order_by!]" ], "where": [ - 4920 + 4916 ] } ], "tournament_brackets": [ - 5002, + 4998, { "distinct_on": [ - 5026, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5024, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 5013 + 5009 ] } ], "tournament_brackets_aggregate": [ - 5003, + 4999, { "distinct_on": [ - 5026, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5024, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 5013 + 5009 ] } ], "tv_connection_string": [ - 83 + 84 ], "veto_pick_expires_at": [ - 4958 + 4954 ], "winner": [ - 2815 + 2811 ], "winning_lineup_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "matches_aggregate": { "aggregate": [ - 3167 + 3163 ], "nodes": [ - 3161 + 3157 ], "__typename": [ - 83 + 84 ] }, "matches_aggregate_bool_exp": { "bool_and": [ - 3164 + 3160 ], "bool_or": [ - 3165 + 3161 ], "count": [ - 3166 + 3162 ], "__typename": [ - 83 + 84 ] }, "matches_aggregate_bool_exp_bool_and": { "arguments": [ - 3186 + 3182 ], "distinct": [ - 5 + 6 ], "filter": [ - 3172 + 3168 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "matches_aggregate_bool_exp_bool_or": { "arguments": [ - 3187 + 3183 ], "distinct": [ - 5 + 6 ], "filter": [ - 3172 + 3168 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "matches_aggregate_bool_exp_count": { "arguments": [ - 3185 + 3181 ], "distinct": [ - 5 + 6 ], "filter": [ - 3172 + 3168 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "matches_aggregate_fields": { "avg": [ - 3170 + 3166 ], "count": [ - 40, + 41, { "columns": [ - 3185, + 3181, "[matches_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3176 + 3172 ], "min": [ - 3178 + 3174 ], "stddev": [ - 3189 + 3185 ], "stddev_pop": [ - 3191 + 3187 ], "stddev_samp": [ - 3193 + 3189 ], "sum": [ - 3197 + 3193 ], "var_pop": [ - 3201 + 3197 ], "var_samp": [ - 3203 + 3199 ], "variance": [ - 3205 + 3201 ], "__typename": [ - 83 + 84 ] }, "matches_aggregate_order_by": { "avg": [ - 3171 + 3167 ], "count": [ - 3377 + 3373 ], "max": [ - 3177 + 3173 ], "min": [ - 3179 + 3175 ], "stddev": [ - 3190 + 3186 ], "stddev_pop": [ - 3192 + 3188 ], "stddev_samp": [ - 3194 + 3190 ], "sum": [ - 3198 + 3194 ], "var_pop": [ - 3202 + 3198 ], "var_samp": [ - 3204 + 3200 ], "variance": [ - 3206 + 3202 ], "__typename": [ - 83 + 84 ] }, "matches_arr_rel_insert_input": { "data": [ - 3175 + 3171 ], "on_conflict": [ - 3182 + 3178 ], "__typename": [ - 83 + 84 ] }, "matches_avg_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "matches_avg_order_by": { "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "matches_bool_exp": { "_and": [ - 3172 + 3168 ], "_not": [ - 3172 + 3168 ], "_or": [ - 3172 + 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": [ - 4959 + 4955 ], "clutches": [ - 5647 + 5643 ], "clutches_aggregate": [ - 5640 + 5636 ], "connection_link": [ - 85 + 86 ], "connection_string": [ - 85 + 86 ], "counts_toward_ranking": [ - 6 + 7 ], "created_at": [ - 4959 + 4955 ], "current_match_map_id": [ - 5460 + 5456 ], "demos": [ - 2869 + 2865 ], "demos_aggregate": [ - 2859 + 2855 ], "draft_games": [ - 566 + 567 ], "draft_games_aggregate": [ - 557 + 558 ], "e_match_status": [ - 1158 + 1159 ], "e_region": [ - 4453 + 4449 ], "effective_at": [ - 4959 + 4955 ], "elo_changes": [ - 5854 + 5850 ], "elo_changes_aggregate": [ - 5837 + 5833 ], "ended_at": [ - 4959 + 4955 ], "external_id": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "invite_code": [ - 85 + 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": [ - 85 + 86 ], "lineup_1": [ - 2824 + 2820 ], "lineup_1_id": [ - 5460 + 5456 ], "lineup_2": [ - 2824 + 2820 ], "lineup_2_id": [ - 5460 + 5456 ], "lineup_counts": [ - 2190 + 2186 ], "map_veto_picking_lineup_id": [ - 5460 + 5456 ], "map_veto_picks": [ - 2958 + 2954 ], "map_veto_picks_aggregate": [ - 2951 + 2947 ], "map_veto_type": [ - 85 + 86 ], "match_maps": [ - 2986 + 2982 ], "match_maps_aggregate": [ - 2979 + 2975 ], "match_options_id": [ - 5460 + 5456 ], "max_players_per_lineup": [ - 41 + 42 ], "min_players_per_lineup": [ - 41 + 42 ], "opening_duels": [ - 5775 + 5771 ], "opening_duels_aggregate": [ - 5768 + 5764 ], "options": [ - 3030 + 3026 ], "organizer": [ - 4339 + 4335 ], "organizer_steam_id": [ - 270 + 271 ], "password": [ - 85 + 86 ], "player_assists": [ - 3526 + 3522 ], "player_assists_aggregate": [ - 3517 + 3513 ], "player_damages": [ - 3587 + 3583 ], "player_damages_aggregate": [ - 3580 + 3576 ], "player_flashes": [ - 3698 + 3694 ], "player_flashes_aggregate": [ - 3689 + 3685 ], "player_kills": [ - 3743 + 3739 ], "player_kills_aggregate": [ - 3734 + 3730 ], "player_objectives": [ - 3942 + 3938 ], "player_objectives_aggregate": [ - 3935 + 3931 ], "player_unused_utilities": [ - 4229 + 4225 ], "player_unused_utilities_aggregate": [ - 4222 + 4218 ], "player_utility": [ - 4270 + 4266 ], "player_utility_aggregate": [ - 4263 + 4259 ], "region": [ - 85 + 86 ], "region_veto_picking_lineup_id": [ - 5460 + 5456 ], "region_veto_picks": [ - 3074 + 3070 ], "region_veto_picks_aggregate": [ - 3067 + 3063 ], "requested_organizer": [ - 6 + 7 ], "scheduled_at": [ - 4959 + 4955 ], "server": [ - 4488 + 4484 ], "server_error": [ - 85 + 86 ], "server_id": [ - 5460 + 5456 ], "server_plugin_runtime": [ - 85 + 86 ], "server_region": [ - 85 + 86 ], "server_type": [ - 85 + 86 ], "share_code": [ - 85 + 86 ], "source": [ - 85 + 86 ], "started_at": [ - 4959 + 4955 ], "status": [ - 1161 + 1162 ], "streams": [ - 3105 + 3101 ], "streams_aggregate": [ - 3095 + 3091 ], "teams": [ - 4920 + 4916 ], "tournament_brackets": [ - 5013 + 5009 ], "tournament_brackets_aggregate": [ - 5004 + 5000 ], "tv_connection_string": [ - 85 + 86 ], "veto_pick_expires_at": [ - 4959 + 4955 ], "winner": [ - 2824 + 2820 ], "winning_lineup_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "matches_constraint": {}, "matches_inc_input": { "organizer_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "matches_insert_input": { "cancels_at": [ - 4958 + 4954 ], "clutches": [ - 5644 + 5640 ], "counts_toward_ranking": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "demos": [ - 2866 + 2862 ], "draft_games": [ - 563 + 564 ], "e_match_status": [ - 1166 + 1167 ], "e_region": [ - 4459 + 4455 ], "elo_changes": [ - 5851 + 5847 ], "ended_at": [ - 4958 + 4954 ], "external_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "lineup_1": [ - 2833 + 2829 ], "lineup_1_id": [ - 5458 + 5454 ], "lineup_2": [ - 2833 + 2829 ], "lineup_2_id": [ - 5458 + 5454 ], "map_veto_picks": [ - 2957 + 2953 ], "match_maps": [ - 2983 + 2979 ], "match_options_id": [ - 5458 + 5454 ], "opening_duels": [ - 5772 + 5768 ], "options": [ - 3039 + 3035 ], "organizer": [ - 4346 + 4342 ], "organizer_steam_id": [ - 268 + 269 ], "password": [ - 83 + 84 ], "player_assists": [ - 3523 + 3519 ], "player_damages": [ - 3584 + 3580 ], "player_flashes": [ - 3695 + 3691 ], "player_kills": [ - 3740 + 3736 ], "player_objectives": [ - 3939 + 3935 ], "player_unused_utilities": [ - 4226 + 4222 ], "player_utility": [ - 4267 + 4263 ], "region": [ - 83 + 84 ], "region_veto_picks": [ - 3073 + 3069 ], "scheduled_at": [ - 4958 + 4954 ], "server": [ - 4500 + 4496 ], "server_error": [ - 83 + 84 ], "server_id": [ - 5458 + 5454 ], "share_code": [ - 83 + 84 ], "source": [ - 83 + 84 ], "started_at": [ - 4958 + 4954 ], "status": [ - 1160 + 1161 ], "streams": [ - 3102 + 3098 ], "tournament_brackets": [ - 5010 + 5006 ], "veto_pick_expires_at": [ - 4958 + 4954 ], "winner": [ - 2833 + 2829 ], "winning_lineup_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "matches_max_fields": { "cancels_at": [ - 4958 + 4954 ], "connection_link": [ - 83 + 84 ], "connection_string": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "current_match_map_id": [ - 5458 + 5454 ], "effective_at": [ - 4958 + 4954 ], "ended_at": [ - 4958 + 4954 ], "external_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "invite_code": [ - 83 + 84 ], "label": [ - 83 + 84 ], "lineup_1_id": [ - 5458 + 5454 ], "lineup_2_id": [ - 5458 + 5454 ], "map_veto_picking_lineup_id": [ - 5458 + 5454 ], "map_veto_type": [ - 83 + 84 ], "match_options_id": [ - 5458 + 5454 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 268 + 269 ], "password": [ - 83 + 84 ], "region": [ - 83 + 84 ], "region_veto_picking_lineup_id": [ - 5458 + 5454 ], "scheduled_at": [ - 4958 + 4954 ], "server_error": [ - 83 + 84 ], "server_id": [ - 5458 + 5454 ], "server_plugin_runtime": [ - 83 + 84 ], "server_region": [ - 83 + 84 ], "server_type": [ - 83 + 84 ], "share_code": [ - 83 + 84 ], "source": [ - 83 + 84 ], "started_at": [ - 4958 + 4954 ], "tv_connection_string": [ - 83 + 84 ], "veto_pick_expires_at": [ - 4958 + 4954 ], "winning_lineup_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "matches_max_order_by": { "cancels_at": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "effective_at": [ - 3377 + 3373 ], "ended_at": [ - 3377 + 3373 ], "external_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "lineup_1_id": [ - 3377 + 3373 ], "lineup_2_id": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "organizer_steam_id": [ - 3377 + 3373 ], "password": [ - 3377 + 3373 ], "region": [ - 3377 + 3373 ], "scheduled_at": [ - 3377 + 3373 ], "server_error": [ - 3377 + 3373 ], "server_id": [ - 3377 + 3373 ], "share_code": [ - 3377 + 3373 ], "source": [ - 3377 + 3373 ], "started_at": [ - 3377 + 3373 ], "veto_pick_expires_at": [ - 3377 + 3373 ], "winning_lineup_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "matches_min_fields": { "cancels_at": [ - 4958 + 4954 ], "connection_link": [ - 83 + 84 ], "connection_string": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "current_match_map_id": [ - 5458 + 5454 ], "effective_at": [ - 4958 + 4954 ], "ended_at": [ - 4958 + 4954 ], "external_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "invite_code": [ - 83 + 84 ], "label": [ - 83 + 84 ], "lineup_1_id": [ - 5458 + 5454 ], "lineup_2_id": [ - 5458 + 5454 ], "map_veto_picking_lineup_id": [ - 5458 + 5454 ], "map_veto_type": [ - 83 + 84 ], "match_options_id": [ - 5458 + 5454 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 268 + 269 ], "password": [ - 83 + 84 ], "region": [ - 83 + 84 ], "region_veto_picking_lineup_id": [ - 5458 + 5454 ], "scheduled_at": [ - 4958 + 4954 ], "server_error": [ - 83 + 84 ], "server_id": [ - 5458 + 5454 ], "server_plugin_runtime": [ - 83 + 84 ], "server_region": [ - 83 + 84 ], "server_type": [ - 83 + 84 ], "share_code": [ - 83 + 84 ], "source": [ - 83 + 84 ], "started_at": [ - 4958 + 4954 ], "tv_connection_string": [ - 83 + 84 ], "veto_pick_expires_at": [ - 4958 + 4954 ], "winning_lineup_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "matches_min_order_by": { "cancels_at": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "effective_at": [ - 3377 + 3373 ], "ended_at": [ - 3377 + 3373 ], "external_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "lineup_1_id": [ - 3377 + 3373 ], "lineup_2_id": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "organizer_steam_id": [ - 3377 + 3373 ], "password": [ - 3377 + 3373 ], "region": [ - 3377 + 3373 ], "scheduled_at": [ - 3377 + 3373 ], "server_error": [ - 3377 + 3373 ], "server_id": [ - 3377 + 3373 ], "share_code": [ - 3377 + 3373 ], "source": [ - 3377 + 3373 ], "started_at": [ - 3377 + 3373 ], "veto_pick_expires_at": [ - 3377 + 3373 ], "winning_lineup_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "matches_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3161 + 3157 ], "__typename": [ - 83 + 84 ] }, "matches_obj_rel_insert_input": { "data": [ - 3175 + 3171 ], "on_conflict": [ - 3182 + 3178 ], "__typename": [ - 83 + 84 ] }, "matches_on_conflict": { "constraint": [ - 3173 + 3169 ], "update_columns": [ - 3199 + 3195 ], "where": [ - 3172 + 3168 ], "__typename": [ - 83 + 84 ] }, "matches_order_by": { "can_assign_server": [ - 3377 + 3373 ], "can_cancel": [ - 3377 + 3373 ], "can_check_in": [ - 3377 + 3373 ], "can_reassign_winner": [ - 3377 + 3373 ], "can_schedule": [ - 3377 + 3373 ], "can_start": [ - 3377 + 3373 ], "can_stream_live": [ - 3377 + 3373 ], "can_stream_tv": [ - 3377 + 3373 ], "cancels_at": [ - 3377 + 3373 ], "clutches_aggregate": [ - 5643 + 5639 ], "connection_link": [ - 3377 + 3373 ], "connection_string": [ - 3377 + 3373 ], "counts_toward_ranking": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "current_match_map_id": [ - 3377 + 3373 ], "demos_aggregate": [ - 2864 + 2860 ], "draft_games_aggregate": [ - 562 + 563 ], "e_match_status": [ - 1168 + 1169 ], "e_region": [ - 4461 + 4457 ], "effective_at": [ - 3377 + 3373 ], "elo_changes_aggregate": [ - 5850 + 5846 ], "ended_at": [ - 3377 + 3373 ], "external_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "invite_code": [ - 3377 + 3373 ], "is_captain": [ - 3377 + 3373 ], "is_coach": [ - 3377 + 3373 ], "is_friend_in_match_lineup": [ - 3377 + 3373 ], "is_in_lineup": [ - 3377 + 3373 ], "is_match_server_available": [ - 3377 + 3373 ], "is_organizer": [ - 3377 + 3373 ], "is_server_online": [ - 3377 + 3373 ], "is_tournament_match": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "lineup_1": [ - 2835 + 2831 ], "lineup_1_id": [ - 3377 + 3373 ], "lineup_2": [ - 2835 + 2831 ], "lineup_2_id": [ - 3377 + 3373 ], "lineup_counts": [ - 3377 + 3373 ], "map_veto_picking_lineup_id": [ - 3377 + 3373 ], "map_veto_picks_aggregate": [ - 2956 + 2952 ], "map_veto_type": [ - 3377 + 3373 ], "match_maps_aggregate": [ - 2982 + 2978 ], "match_options_id": [ - 3377 + 3373 ], "max_players_per_lineup": [ - 3377 + 3373 ], "min_players_per_lineup": [ - 3377 + 3373 ], "opening_duels_aggregate": [ - 5771 + 5767 ], "options": [ - 3041 + 3037 ], "organizer": [ - 4348 + 4344 ], "organizer_steam_id": [ - 3377 + 3373 ], "password": [ - 3377 + 3373 ], "player_assists_aggregate": [ - 3522 + 3518 ], "player_damages_aggregate": [ - 3583 + 3579 ], "player_flashes_aggregate": [ - 3694 + 3690 ], "player_kills_aggregate": [ - 3739 + 3735 ], "player_objectives_aggregate": [ - 3938 + 3934 ], "player_unused_utilities_aggregate": [ - 4225 + 4221 ], "player_utility_aggregate": [ - 4266 + 4262 ], "region": [ - 3377 + 3373 ], "region_veto_picking_lineup_id": [ - 3377 + 3373 ], "region_veto_picks_aggregate": [ - 3072 + 3068 ], "requested_organizer": [ - 3377 + 3373 ], "scheduled_at": [ - 3377 + 3373 ], "server": [ - 4502 + 4498 ], "server_error": [ - 3377 + 3373 ], "server_id": [ - 3377 + 3373 ], "server_plugin_runtime": [ - 3377 + 3373 ], "server_region": [ - 3377 + 3373 ], "server_type": [ - 3377 + 3373 ], "share_code": [ - 3377 + 3373 ], "source": [ - 3377 + 3373 ], "started_at": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "streams_aggregate": [ - 3100 + 3096 ], "teams_aggregate": [ - 4916 + 4912 ], "tournament_brackets_aggregate": [ - 5009 + 5005 ], "tv_connection_string": [ - 3377 + 3373 ], "veto_pick_expires_at": [ - 3377 + 3373 ], "winner": [ - 2835 + 2831 ], "winning_lineup_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "matches_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "matches_select_column": {}, @@ -60291,1674 +60254,1674 @@ export default { "matches_select_column_matches_aggregate_bool_exp_bool_or_arguments_columns": {}, "matches_set_input": { "cancels_at": [ - 4958 + 4954 ], "counts_toward_ranking": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "ended_at": [ - 4958 + 4954 ], "external_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "lineup_1_id": [ - 5458 + 5454 ], "lineup_2_id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "organizer_steam_id": [ - 268 + 269 ], "password": [ - 83 + 84 ], "region": [ - 83 + 84 ], "scheduled_at": [ - 4958 + 4954 ], "server_error": [ - 83 + 84 ], "server_id": [ - 5458 + 5454 ], "share_code": [ - 83 + 84 ], "source": [ - 83 + 84 ], "started_at": [ - 4958 + 4954 ], "status": [ - 1160 + 1161 ], "veto_pick_expires_at": [ - 4958 + 4954 ], "winning_lineup_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "matches_stddev_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "matches_stddev_order_by": { "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "matches_stddev_pop_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "matches_stddev_samp_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "matches_stream_cursor_input": { "initial_value": [ - 3196 + 3192 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4958 + 4954 ], "counts_toward_ranking": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "effective_at": [ - 4958 + 4954 ], "ended_at": [ - 4958 + 4954 ], "external_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "lineup_1_id": [ - 5458 + 5454 ], "lineup_2_id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "organizer_steam_id": [ - 268 + 269 ], "password": [ - 83 + 84 ], "region": [ - 83 + 84 ], "scheduled_at": [ - 4958 + 4954 ], "server_error": [ - 83 + 84 ], "server_id": [ - 5458 + 5454 ], "share_code": [ - 83 + 84 ], "source": [ - 83 + 84 ], "started_at": [ - 4958 + 4954 ], "status": [ - 1160 + 1161 ], "veto_pick_expires_at": [ - 4958 + 4954 ], "winning_lineup_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "matches_sum_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "matches_sum_order_by": { "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "matches_update_column": {}, "matches_updates": { "_inc": [ - 3174 + 3170 ], "_set": [ - 3188 + 3184 ], "where": [ - 3172 + 3168 ], "__typename": [ - 83 + 84 ] }, "matches_var_pop_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "matches_var_samp_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "matches_variance_fields": { "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "matches_variance_order_by": { "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes": { "hash": [ - 83 + 84 ], "name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 3209 + 3205 ], "nodes": [ - 3207 + 3203 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 3219, + 3215, "[migration_hashes_hashes_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3213 + 3209 ], "min": [ - 3214 + 3210 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes_bool_exp": { "_and": [ - 3210 + 3206 ], "_not": [ - 3210 + 3206 ], "_or": [ - 3210 + 3206 ], "hash": [ - 85 + 86 ], "name": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes_constraint": {}, "migration_hashes_hashes_insert_input": { "hash": [ - 83 + 84 ], "name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes_max_fields": { "hash": [ - 83 + 84 ], "name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes_min_fields": { "hash": [ - 83 + 84 ], "name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3207 + 3203 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 3211 + 3207 ], "update_columns": [ - 3223 + 3219 ], "where": [ - 3210 + 3206 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes_order_by": { "hash": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes_pk_columns_input": { "name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes_select_column": {}, "migration_hashes_hashes_set_input": { "hash": [ - 83 + 84 ], "name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 3222 + 3218 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes_stream_cursor_value_input": { "hash": [ - 83 + 84 ], "name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 3220 + 3216 ], "where": [ - 3210 + 3206 ], "__typename": [ - 83 + 84 ] }, "my_friends": { "avatar_url": [ - 83 + 84 ], "country": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "custom_avatar_url": [ - 83 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 83 + 84 ], "elo": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 83 + 84 ], "faceit_player_id": [ - 83 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4958 + 4954 ], "faceit_url": [ - 83 + 84 ], "friend_steam_id": [ - 268 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 268 + 269 ], "language": [ - 83 + 84 ], "last_presence_state": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "last_read_news_at": [ - 4958 + 4954 ], "last_sign_in_at": [ - 4958 + 4954 ], "name": [ - 83 + 84 ], "name_registered": [ - 5 + 6 ], "player": [ - 4335 + 4331 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4958 + 4954 ], "presence_updated_at": [ - 4958 + 4954 ], "profile_url": [ - 83 + 84 ], "role": [ - 83 + 84 ], "roster_image_url": [ - 83 + 84 ], "show_match_ready_modal": [ - 5 + 6 ], "status": [ - 83 + 84 ], "steam_bans_checked_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "my_friends_aggregate": { "aggregate": [ - 3231 + 3227 ], "nodes": [ - 3225 + 3221 ], "__typename": [ - 83 + 84 ] }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 3228 + 3224 ], "bool_or": [ - 3229 + 3225 ], "count": [ - 3230 + 3226 ], "__typename": [ - 83 + 84 ] }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 3251 + 3247 ], "distinct": [ - 5 + 6 ], "filter": [ - 3237 + 3233 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 3252 + 3248 ], "distinct": [ - 5 + 6 ], "filter": [ - 3237 + 3233 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 3250 + 3246 ], "distinct": [ - 5 + 6 ], "filter": [ - 3237 + 3233 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "my_friends_aggregate_fields": { "avg": [ - 3235 + 3231 ], "count": [ - 40, + 41, { "columns": [ - 3250, + 3246, "[my_friends_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3243 + 3239 ], "min": [ - 3245 + 3241 ], "stddev": [ - 3254 + 3250 ], "stddev_pop": [ - 3256 + 3252 ], "stddev_samp": [ - 3258 + 3254 ], "sum": [ - 3262 + 3258 ], "var_pop": [ - 3265 + 3261 ], "var_samp": [ - 3267 + 3263 ], "variance": [ - 3269 + 3265 ], "__typename": [ - 83 + 84 ] }, "my_friends_aggregate_order_by": { "avg": [ - 3236 + 3232 ], "count": [ - 3377 + 3373 ], "max": [ - 3244 + 3240 ], "min": [ - 3246 + 3242 ], "stddev": [ - 3255 + 3251 ], "stddev_pop": [ - 3257 + 3253 ], "stddev_samp": [ - 3259 + 3255 ], "sum": [ - 3263 + 3259 ], "var_pop": [ - 3266 + 3262 ], "var_samp": [ - 3268 + 3264 ], "variance": [ - 3270 + 3266 ], "__typename": [ - 83 + 84 ] }, "my_friends_append_input": { "elo": [ - 2191 + 2187 ], "last_presence_state": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "my_friends_arr_rel_insert_input": { "data": [ - 3242 + 3238 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 3377 + 3373 ], "faceit_elo": [ - 3377 + 3373 ], "faceit_skill_level": [ - 3377 + 3373 ], "friend_steam_id": [ - 3377 + 3373 ], "game_ban_count": [ - 3377 + 3373 ], "invited_by_steam_id": [ - 3377 + 3373 ], "premier_rank": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "vac_ban_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "my_friends_bool_exp": { "_and": [ - 3237 + 3233 ], "_not": [ - 3237 + 3233 ], "_or": [ - 3237 + 3233 ], "avatar_url": [ - 85 + 86 ], "country": [ - 85 + 86 ], "created_at": [ - 4959 + 4955 ], "custom_avatar_url": [ - 85 + 86 ], "days_since_last_ban": [ - 41 + 42 ], "discord_id": [ - 85 + 86 ], "elo": [ - 2193 + 2189 ], "faceit_elo": [ - 41 + 42 ], "faceit_nickname": [ - 85 + 86 ], "faceit_player_id": [ - 85 + 86 ], "faceit_skill_level": [ - 41 + 42 ], "faceit_updated_at": [ - 4959 + 4955 ], "faceit_url": [ - 85 + 86 ], "friend_steam_id": [ - 270 + 271 ], "game_ban_count": [ - 41 + 42 ], "invited_by_steam_id": [ - 270 + 271 ], "language": [ - 85 + 86 ], "last_presence_state": [ - 2193 + 2189 ], "last_read_news_at": [ - 4959 + 4955 ], "last_sign_in_at": [ - 4959 + 4955 ], "name": [ - 85 + 86 ], "name_registered": [ - 6 + 7 ], "player": [ - 4339 + 4335 ], "premier_rank": [ - 41 + 42 ], "premier_rank_updated_at": [ - 4959 + 4955 ], "presence_updated_at": [ - 4959 + 4955 ], "profile_url": [ - 85 + 86 ], "role": [ - 85 + 86 ], "roster_image_url": [ - 85 + 86 ], "show_match_ready_modal": [ - 6 + 7 ], "status": [ - 85 + 86 ], "steam_bans_checked_at": [ - 4959 + 4955 ], "steam_id": [ - 270 + 271 ], "vac_ban_count": [ - 41 + 42 ], "vac_banned": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "my_friends_delete_at_path_input": { "elo": [ - 83 + 84 ], "last_presence_state": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "my_friends_delete_elem_input": { "elo": [ - 40 + 41 ], "last_presence_state": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "my_friends_delete_key_input": { "elo": [ - 83 + 84 ], "last_presence_state": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "my_friends_inc_input": { "days_since_last_ban": [ - 40 + 41 ], "faceit_elo": [ - 40 + 41 ], "faceit_skill_level": [ - 40 + 41 ], "friend_steam_id": [ - 268 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 268 + 269 ], "premier_rank": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "vac_ban_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "my_friends_insert_input": { "avatar_url": [ - 83 + 84 ], "country": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "custom_avatar_url": [ - 83 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 83 + 84 ], "elo": [ - 2191 + 2187 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 83 + 84 ], "faceit_player_id": [ - 83 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4958 + 4954 ], "faceit_url": [ - 83 + 84 ], "friend_steam_id": [ - 268 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 268 + 269 ], "language": [ - 83 + 84 ], "last_presence_state": [ - 2191 + 2187 ], "last_read_news_at": [ - 4958 + 4954 ], "last_sign_in_at": [ - 4958 + 4954 ], "name": [ - 83 + 84 ], "name_registered": [ - 5 + 6 ], "player": [ - 4346 + 4342 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4958 + 4954 ], "presence_updated_at": [ - 4958 + 4954 ], "profile_url": [ - 83 + 84 ], "role": [ - 83 + 84 ], "roster_image_url": [ - 83 + 84 ], "show_match_ready_modal": [ - 5 + 6 ], "status": [ - 83 + 84 ], "steam_bans_checked_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "my_friends_max_fields": { "avatar_url": [ - 83 + 84 ], "country": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "custom_avatar_url": [ - 83 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 83 + 84 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 83 + 84 ], "faceit_player_id": [ - 83 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4958 + 4954 ], "faceit_url": [ - 83 + 84 ], "friend_steam_id": [ - 268 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 268 + 269 ], "language": [ - 83 + 84 ], "last_read_news_at": [ - 4958 + 4954 ], "last_sign_in_at": [ - 4958 + 4954 ], "name": [ - 83 + 84 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4958 + 4954 ], "presence_updated_at": [ - 4958 + 4954 ], "profile_url": [ - 83 + 84 ], "role": [ - 83 + 84 ], "roster_image_url": [ - 83 + 84 ], "status": [ - 83 + 84 ], "steam_bans_checked_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "vac_ban_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "my_friends_max_order_by": { "avatar_url": [ - 3377 + 3373 ], "country": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "custom_avatar_url": [ - 3377 + 3373 ], "days_since_last_ban": [ - 3377 + 3373 ], "discord_id": [ - 3377 + 3373 ], "faceit_elo": [ - 3377 + 3373 ], "faceit_nickname": [ - 3377 + 3373 ], "faceit_player_id": [ - 3377 + 3373 ], "faceit_skill_level": [ - 3377 + 3373 ], "faceit_updated_at": [ - 3377 + 3373 ], "faceit_url": [ - 3377 + 3373 ], "friend_steam_id": [ - 3377 + 3373 ], "game_ban_count": [ - 3377 + 3373 ], "invited_by_steam_id": [ - 3377 + 3373 ], "language": [ - 3377 + 3373 ], "last_read_news_at": [ - 3377 + 3373 ], "last_sign_in_at": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "premier_rank": [ - 3377 + 3373 ], "premier_rank_updated_at": [ - 3377 + 3373 ], "presence_updated_at": [ - 3377 + 3373 ], "profile_url": [ - 3377 + 3373 ], "role": [ - 3377 + 3373 ], "roster_image_url": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "steam_bans_checked_at": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "vac_ban_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "my_friends_min_fields": { "avatar_url": [ - 83 + 84 ], "country": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "custom_avatar_url": [ - 83 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 83 + 84 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 83 + 84 ], "faceit_player_id": [ - 83 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4958 + 4954 ], "faceit_url": [ - 83 + 84 ], "friend_steam_id": [ - 268 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 268 + 269 ], "language": [ - 83 + 84 ], "last_read_news_at": [ - 4958 + 4954 ], "last_sign_in_at": [ - 4958 + 4954 ], "name": [ - 83 + 84 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4958 + 4954 ], "presence_updated_at": [ - 4958 + 4954 ], "profile_url": [ - 83 + 84 ], "role": [ - 83 + 84 ], "roster_image_url": [ - 83 + 84 ], "status": [ - 83 + 84 ], "steam_bans_checked_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "vac_ban_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "my_friends_min_order_by": { "avatar_url": [ - 3377 + 3373 ], "country": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "custom_avatar_url": [ - 3377 + 3373 ], "days_since_last_ban": [ - 3377 + 3373 ], "discord_id": [ - 3377 + 3373 ], "faceit_elo": [ - 3377 + 3373 ], "faceit_nickname": [ - 3377 + 3373 ], "faceit_player_id": [ - 3377 + 3373 ], "faceit_skill_level": [ - 3377 + 3373 ], "faceit_updated_at": [ - 3377 + 3373 ], "faceit_url": [ - 3377 + 3373 ], "friend_steam_id": [ - 3377 + 3373 ], "game_ban_count": [ - 3377 + 3373 ], "invited_by_steam_id": [ - 3377 + 3373 ], "language": [ - 3377 + 3373 ], "last_read_news_at": [ - 3377 + 3373 ], "last_sign_in_at": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "premier_rank": [ - 3377 + 3373 ], "premier_rank_updated_at": [ - 3377 + 3373 ], "presence_updated_at": [ - 3377 + 3373 ], "profile_url": [ - 3377 + 3373 ], "role": [ - 3377 + 3373 ], "roster_image_url": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "steam_bans_checked_at": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "vac_ban_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "my_friends_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3225 + 3221 ], "__typename": [ - 83 + 84 ] }, "my_friends_order_by": { "avatar_url": [ - 3377 + 3373 ], "country": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "custom_avatar_url": [ - 3377 + 3373 ], "days_since_last_ban": [ - 3377 + 3373 ], "discord_id": [ - 3377 + 3373 ], "elo": [ - 3377 + 3373 ], "faceit_elo": [ - 3377 + 3373 ], "faceit_nickname": [ - 3377 + 3373 ], "faceit_player_id": [ - 3377 + 3373 ], "faceit_skill_level": [ - 3377 + 3373 ], "faceit_updated_at": [ - 3377 + 3373 ], "faceit_url": [ - 3377 + 3373 ], "friend_steam_id": [ - 3377 + 3373 ], "game_ban_count": [ - 3377 + 3373 ], "invited_by_steam_id": [ - 3377 + 3373 ], "language": [ - 3377 + 3373 ], "last_presence_state": [ - 3377 + 3373 ], "last_read_news_at": [ - 3377 + 3373 ], "last_sign_in_at": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "name_registered": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "premier_rank": [ - 3377 + 3373 ], "premier_rank_updated_at": [ - 3377 + 3373 ], "presence_updated_at": [ - 3377 + 3373 ], "profile_url": [ - 3377 + 3373 ], "role": [ - 3377 + 3373 ], "roster_image_url": [ - 3377 + 3373 ], "show_match_ready_modal": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "steam_bans_checked_at": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "vac_ban_count": [ - 3377 + 3373 ], "vac_banned": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "my_friends_prepend_input": { "elo": [ - 2191 + 2187 ], "last_presence_state": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "my_friends_select_column": {}, @@ -61966,2239 +61929,2239 @@ export default { "my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns": {}, "my_friends_set_input": { "avatar_url": [ - 83 + 84 ], "country": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "custom_avatar_url": [ - 83 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 83 + 84 ], "elo": [ - 2191 + 2187 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 83 + 84 ], "faceit_player_id": [ - 83 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4958 + 4954 ], "faceit_url": [ - 83 + 84 ], "friend_steam_id": [ - 268 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 268 + 269 ], "language": [ - 83 + 84 ], "last_presence_state": [ - 2191 + 2187 ], "last_read_news_at": [ - 4958 + 4954 ], "last_sign_in_at": [ - 4958 + 4954 ], "name": [ - 83 + 84 ], "name_registered": [ - 5 + 6 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4958 + 4954 ], "presence_updated_at": [ - 4958 + 4954 ], "profile_url": [ - 83 + 84 ], "role": [ - 83 + 84 ], "roster_image_url": [ - 83 + 84 ], "show_match_ready_modal": [ - 5 + 6 ], "status": [ - 83 + 84 ], "steam_bans_checked_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 3377 + 3373 ], "faceit_elo": [ - 3377 + 3373 ], "faceit_skill_level": [ - 3377 + 3373 ], "friend_steam_id": [ - 3377 + 3373 ], "game_ban_count": [ - 3377 + 3373 ], "invited_by_steam_id": [ - 3377 + 3373 ], "premier_rank": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "vac_ban_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 3377 + 3373 ], "faceit_elo": [ - 3377 + 3373 ], "faceit_skill_level": [ - 3377 + 3373 ], "friend_steam_id": [ - 3377 + 3373 ], "game_ban_count": [ - 3377 + 3373 ], "invited_by_steam_id": [ - 3377 + 3373 ], "premier_rank": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "vac_ban_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 3377 + 3373 ], "faceit_elo": [ - 3377 + 3373 ], "faceit_skill_level": [ - 3377 + 3373 ], "friend_steam_id": [ - 3377 + 3373 ], "game_ban_count": [ - 3377 + 3373 ], "invited_by_steam_id": [ - 3377 + 3373 ], "premier_rank": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "vac_ban_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "my_friends_stream_cursor_input": { "initial_value": [ - 3261 + 3257 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "my_friends_stream_cursor_value_input": { "avatar_url": [ - 83 + 84 ], "country": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "custom_avatar_url": [ - 83 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 83 + 84 ], "elo": [ - 2191 + 2187 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 83 + 84 ], "faceit_player_id": [ - 83 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4958 + 4954 ], "faceit_url": [ - 83 + 84 ], "friend_steam_id": [ - 268 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 268 + 269 ], "language": [ - 83 + 84 ], "last_presence_state": [ - 2191 + 2187 ], "last_read_news_at": [ - 4958 + 4954 ], "last_sign_in_at": [ - 4958 + 4954 ], "name": [ - 83 + 84 ], "name_registered": [ - 5 + 6 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4958 + 4954 ], "presence_updated_at": [ - 4958 + 4954 ], "profile_url": [ - 83 + 84 ], "role": [ - 83 + 84 ], "roster_image_url": [ - 83 + 84 ], "show_match_ready_modal": [ - 5 + 6 ], "status": [ - 83 + 84 ], "steam_bans_checked_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "__typename": [ - 83 + 84 ] }, "my_friends_sum_fields": { "days_since_last_ban": [ - 40 + 41 ], "faceit_elo": [ - 40 + 41 ], "faceit_skill_level": [ - 40 + 41 ], "friend_steam_id": [ - 268 + 269 ], "game_ban_count": [ - 40 + 41 ], "invited_by_steam_id": [ - 268 + 269 ], "premier_rank": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "vac_ban_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 3377 + 3373 ], "faceit_elo": [ - 3377 + 3373 ], "faceit_skill_level": [ - 3377 + 3373 ], "friend_steam_id": [ - 3377 + 3373 ], "game_ban_count": [ - 3377 + 3373 ], "invited_by_steam_id": [ - 3377 + 3373 ], "premier_rank": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "vac_ban_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "my_friends_updates": { "_append": [ - 3233 + 3229 ], "_delete_at_path": [ - 3238 + 3234 ], "_delete_elem": [ - 3239 + 3235 ], "_delete_key": [ - 3240 + 3236 ], "_inc": [ - 3241 + 3237 ], "_prepend": [ - 3249 + 3245 ], "_set": [ - 3253 + 3249 ], "where": [ - 3237 + 3233 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 3377 + 3373 ], "faceit_elo": [ - 3377 + 3373 ], "faceit_skill_level": [ - 3377 + 3373 ], "friend_steam_id": [ - 3377 + 3373 ], "game_ban_count": [ - 3377 + 3373 ], "invited_by_steam_id": [ - 3377 + 3373 ], "premier_rank": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "vac_ban_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 3377 + 3373 ], "faceit_elo": [ - 3377 + 3373 ], "faceit_skill_level": [ - 3377 + 3373 ], "friend_steam_id": [ - 3377 + 3373 ], "game_ban_count": [ - 3377 + 3373 ], "invited_by_steam_id": [ - 3377 + 3373 ], "premier_rank": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "vac_ban_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 3377 + 3373 ], "faceit_elo": [ - 3377 + 3373 ], "faceit_skill_level": [ - 3377 + 3373 ], "friend_steam_id": [ - 3377 + 3373 ], "game_ban_count": [ - 3377 + 3373 ], "invited_by_steam_id": [ - 3377 + 3373 ], "premier_rank": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "vac_ban_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "news_articles": { "author": [ - 4335 + 4331 ], "author_steam_id": [ - 268 + 269 ], "content_markdown": [ - 83 + 84 ], "cover_image_url": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "published_at": [ - 4958 + 4954 ], "slug": [ - 83 + 84 ], "status": [ - 83 + 84 ], "teaser": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "view_count": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "news_articles_aggregate": { "aggregate": [ - 3273 + 3269 ], "nodes": [ - 3271 + 3267 ], "__typename": [ - 83 + 84 ] }, "news_articles_aggregate_fields": { "avg": [ - 3274 + 3270 ], "count": [ - 40, + 41, { "columns": [ - 3285, + 3281, "[news_articles_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3279 + 3275 ], "min": [ - 3280 + 3276 ], "stddev": [ - 3287 + 3283 ], "stddev_pop": [ - 3288 + 3284 ], "stddev_samp": [ - 3289 + 3285 ], "sum": [ - 3292 + 3288 ], "var_pop": [ - 3295 + 3291 ], "var_samp": [ - 3296 + 3292 ], "variance": [ - 3297 + 3293 ], "__typename": [ - 83 + 84 ] }, "news_articles_avg_fields": { "author_steam_id": [ - 31 + 32 ], "view_count": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "news_articles_bool_exp": { "_and": [ - 3275 + 3271 ], "_not": [ - 3275 + 3271 ], "_or": [ - 3275 + 3271 ], "author": [ - 4339 + 4335 ], "author_steam_id": [ - 270 + 271 ], "content_markdown": [ - 85 + 86 ], "cover_image_url": [ - 85 + 86 ], "created_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "published_at": [ - 4959 + 4955 ], "slug": [ - 85 + 86 ], "status": [ - 85 + 86 ], "teaser": [ - 85 + 86 ], "title": [ - 85 + 86 ], "updated_at": [ - 4959 + 4955 ], "view_count": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "news_articles_constraint": {}, "news_articles_inc_input": { "author_steam_id": [ - 268 + 269 ], "view_count": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "news_articles_insert_input": { "author": [ - 4346 + 4342 ], "author_steam_id": [ - 268 + 269 ], "content_markdown": [ - 83 + 84 ], "cover_image_url": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "published_at": [ - 4958 + 4954 ], "slug": [ - 83 + 84 ], "status": [ - 83 + 84 ], "teaser": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "view_count": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "news_articles_max_fields": { "author_steam_id": [ - 268 + 269 ], "content_markdown": [ - 83 + 84 ], "cover_image_url": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "published_at": [ - 4958 + 4954 ], "slug": [ - 83 + 84 ], "status": [ - 83 + 84 ], "teaser": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "view_count": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "news_articles_min_fields": { "author_steam_id": [ - 268 + 269 ], "content_markdown": [ - 83 + 84 ], "cover_image_url": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "published_at": [ - 4958 + 4954 ], "slug": [ - 83 + 84 ], "status": [ - 83 + 84 ], "teaser": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "view_count": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "news_articles_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3271 + 3267 ], "__typename": [ - 83 + 84 ] }, "news_articles_on_conflict": { "constraint": [ - 3276 + 3272 ], "update_columns": [ - 3293 + 3289 ], "where": [ - 3275 + 3271 ], "__typename": [ - 83 + 84 ] }, "news_articles_order_by": { "author": [ - 4348 + 4344 ], "author_steam_id": [ - 3377 + 3373 ], "content_markdown": [ - 3377 + 3373 ], "cover_image_url": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "published_at": [ - 3377 + 3373 ], "slug": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "teaser": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "view_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "news_articles_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "news_articles_select_column": {}, "news_articles_set_input": { "author_steam_id": [ - 268 + 269 ], "content_markdown": [ - 83 + 84 ], "cover_image_url": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "published_at": [ - 4958 + 4954 ], "slug": [ - 83 + 84 ], "status": [ - 83 + 84 ], "teaser": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "view_count": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "news_articles_stddev_fields": { "author_steam_id": [ - 31 + 32 ], "view_count": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "news_articles_stddev_pop_fields": { "author_steam_id": [ - 31 + 32 ], "view_count": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "news_articles_stddev_samp_fields": { "author_steam_id": [ - 31 + 32 ], "view_count": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "news_articles_stream_cursor_input": { "initial_value": [ - 3291 + 3287 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "news_articles_stream_cursor_value_input": { "author_steam_id": [ - 268 + 269 ], "content_markdown": [ - 83 + 84 ], "cover_image_url": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "published_at": [ - 4958 + 4954 ], "slug": [ - 83 + 84 ], "status": [ - 83 + 84 ], "teaser": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "view_count": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "news_articles_sum_fields": { "author_steam_id": [ - 268 + 269 ], "view_count": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 3277 + 3273 ], "_set": [ - 3286 + 3282 ], "where": [ - 3275 + 3271 ], "__typename": [ - 83 + 84 ] }, "news_articles_var_pop_fields": { "author_steam_id": [ - 31 + 32 ], "view_count": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "news_articles_var_samp_fields": { "author_steam_id": [ - 31 + 32 ], "view_count": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "news_articles_variance_fields": { "author_steam_id": [ - 31 + 32 ], "view_count": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notification_preferences": { "channel": [ - 83 + 84 ], "enabled": [ - 5 + 6 ], "key": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_aggregate": { "aggregate": [ - 3300 + 3296 ], "nodes": [ - 3298 + 3294 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_aggregate_fields": { "avg": [ - 3301 + 3297 ], "count": [ - 40, + 41, { "columns": [ - 3312, + 3308, "[notification_preferences_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3306 + 3302 ], "min": [ - 3307 + 3303 ], "stddev": [ - 3314 + 3310 ], "stddev_pop": [ - 3315 + 3311 ], "stddev_samp": [ - 3316 + 3312 ], "sum": [ - 3319 + 3315 ], "var_pop": [ - 3322 + 3318 ], "var_samp": [ - 3323 + 3319 ], "variance": [ - 3324 + 3320 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_bool_exp": { "_and": [ - 3302 + 3298 ], "_not": [ - 3302 + 3298 ], "_or": [ - 3302 + 3298 ], "channel": [ - 85 + 86 ], "enabled": [ - 6 + 7 ], "key": [ - 85 + 86 ], "steam_id": [ - 270 + 271 ], "updated_at": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_constraint": {}, "notification_preferences_inc_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_insert_input": { "channel": [ - 83 + 84 ], "enabled": [ - 5 + 6 ], "key": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_max_fields": { "channel": [ - 83 + 84 ], "key": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_min_fields": { "channel": [ - 83 + 84 ], "key": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3298 + 3294 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_on_conflict": { "constraint": [ - 3303 + 3299 ], "update_columns": [ - 3320 + 3316 ], "where": [ - 3302 + 3298 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_order_by": { "channel": [ - 3377 + 3373 ], "enabled": [ - 3377 + 3373 ], "key": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_pk_columns_input": { "channel": [ - 83 + 84 ], "key": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_select_column": {}, "notification_preferences_set_input": { "channel": [ - 83 + 84 ], "enabled": [ - 5 + 6 ], "key": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_stream_cursor_input": { "initial_value": [ - 3318 + 3314 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_stream_cursor_value_input": { "channel": [ - 83 + 84 ], "enabled": [ - 5 + 6 ], "key": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_update_column": {}, "notification_preferences_updates": { "_inc": [ - 3304 + 3300 ], "_set": [ - 3313 + 3309 ], "where": [ - 3302 + 3298 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notification_preferences_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notifications": { "actions": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "created_at": [ - 4958 + 4954 ], "data": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "deletable": [ - 5 + 6 ], "deleted_at": [ - 4958 + 4954 ], "entity_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "in_app": [ - 5 + 6 ], "is_read": [ - 5 + 6 ], "message": [ - 83 + 84 ], "player": [ - 4335 + 4331 ], "role": [ - 1242 + 1243 ], "steam_id": [ - 268 + 269 ], "title": [ - 83 + 84 ], "type": [ - 1202 + 1203 ], "__typename": [ - 83 + 84 ] }, "notifications_aggregate": { "aggregate": [ - 3331 + 3327 ], "nodes": [ - 3325 + 3321 ], "__typename": [ - 83 + 84 ] }, "notifications_aggregate_bool_exp": { "bool_and": [ - 3328 + 3324 ], "bool_or": [ - 3329 + 3325 ], "count": [ - 3330 + 3326 ], "__typename": [ - 83 + 84 ] }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 3354 + 3350 ], "distinct": [ - 5 + 6 ], "filter": [ - 3337 + 3333 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 3355 + 3351 ], "distinct": [ - 5 + 6 ], "filter": [ - 3337 + 3333 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 3353 + 3349 ], "distinct": [ - 5 + 6 ], "filter": [ - 3337 + 3333 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "notifications_aggregate_fields": { "avg": [ - 3335 + 3331 ], "count": [ - 40, + 41, { "columns": [ - 3353, + 3349, "[notifications_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3344 + 3340 ], "min": [ - 3346 + 3342 ], "stddev": [ - 3357 + 3353 ], "stddev_pop": [ - 3359 + 3355 ], "stddev_samp": [ - 3361 + 3357 ], "sum": [ - 3365 + 3361 ], "var_pop": [ - 3369 + 3365 ], "var_samp": [ - 3371 + 3367 ], "variance": [ - 3373 + 3369 ], "__typename": [ - 83 + 84 ] }, "notifications_aggregate_order_by": { "avg": [ - 3336 + 3332 ], "count": [ - 3377 + 3373 ], "max": [ - 3345 + 3341 ], "min": [ - 3347 + 3343 ], "stddev": [ - 3358 + 3354 ], "stddev_pop": [ - 3360 + 3356 ], "stddev_samp": [ - 3362 + 3358 ], "sum": [ - 3366 + 3362 ], "var_pop": [ - 3370 + 3366 ], "var_samp": [ - 3372 + 3368 ], "variance": [ - 3374 + 3370 ], "__typename": [ - 83 + 84 ] }, "notifications_append_input": { "actions": [ - 2191 + 2187 ], "data": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "notifications_arr_rel_insert_input": { "data": [ - 3343 + 3339 ], "on_conflict": [ - 3349 + 3345 ], "__typename": [ - 83 + 84 ] }, "notifications_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notifications_avg_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "notifications_bool_exp": { "_and": [ - 3337 + 3333 ], "_not": [ - 3337 + 3333 ], "_or": [ - 3337 + 3333 ], "actions": [ - 2193 + 2189 ], "created_at": [ - 4959 + 4955 ], "data": [ - 2193 + 2189 ], "deletable": [ - 6 + 7 ], "deleted_at": [ - 4959 + 4955 ], "entity_id": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "in_app": [ - 6 + 7 ], "is_read": [ - 6 + 7 ], "message": [ - 85 + 86 ], "player": [ - 4339 + 4335 ], "role": [ - 1243 + 1244 ], "steam_id": [ - 270 + 271 ], "title": [ - 85 + 86 ], "type": [ - 1203 + 1204 ], "__typename": [ - 83 + 84 ] }, "notifications_constraint": {}, "notifications_delete_at_path_input": { "actions": [ - 83 + 84 ], "data": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "notifications_delete_elem_input": { "actions": [ - 40 + 41 ], "data": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "notifications_delete_key_input": { "actions": [ - 83 + 84 ], "data": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "notifications_inc_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "notifications_insert_input": { "actions": [ - 2191 + 2187 ], "created_at": [ - 4958 + 4954 ], "data": [ - 2191 + 2187 ], "deletable": [ - 5 + 6 ], "deleted_at": [ - 4958 + 4954 ], "entity_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "in_app": [ - 5 + 6 ], "is_read": [ - 5 + 6 ], "message": [ - 83 + 84 ], "player": [ - 4346 + 4342 ], "role": [ - 1242 + 1243 ], "steam_id": [ - 268 + 269 ], "title": [ - 83 + 84 ], "type": [ - 1202 + 1203 ], "__typename": [ - 83 + 84 ] }, "notifications_max_fields": { "created_at": [ - 4958 + 4954 ], "deleted_at": [ - 4958 + 4954 ], "entity_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "title": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "notifications_max_order_by": { "created_at": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "entity_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "message": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "notifications_min_fields": { "created_at": [ - 4958 + 4954 ], "deleted_at": [ - 4958 + 4954 ], "entity_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "title": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "notifications_min_order_by": { "created_at": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "entity_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "message": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "notifications_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3325 + 3321 ], "__typename": [ - 83 + 84 ] }, "notifications_on_conflict": { "constraint": [ - 3338 + 3334 ], "update_columns": [ - 3367 + 3363 ], "where": [ - 3337 + 3333 ], "__typename": [ - 83 + 84 ] }, "notifications_order_by": { "actions": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "data": [ - 3377 + 3373 ], "deletable": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "entity_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "in_app": [ - 3377 + 3373 ], "is_read": [ - 3377 + 3373 ], "message": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "role": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "notifications_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "notifications_prepend_input": { "actions": [ - 2191 + 2187 ], "data": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "notifications_select_column": {}, @@ -64206,4207 +64169,4207 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 2191 + 2187 ], "created_at": [ - 4958 + 4954 ], "data": [ - 2191 + 2187 ], "deletable": [ - 5 + 6 ], "deleted_at": [ - 4958 + 4954 ], "entity_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "in_app": [ - 5 + 6 ], "is_read": [ - 5 + 6 ], "message": [ - 83 + 84 ], "role": [ - 1242 + 1243 ], "steam_id": [ - 268 + 269 ], "title": [ - 83 + 84 ], "type": [ - 1202 + 1203 ], "__typename": [ - 83 + 84 ] }, "notifications_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notifications_stddev_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "notifications_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notifications_stddev_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "notifications_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notifications_stddev_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "notifications_stream_cursor_input": { "initial_value": [ - 3364 + 3360 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "notifications_stream_cursor_value_input": { "actions": [ - 2191 + 2187 ], "created_at": [ - 4958 + 4954 ], "data": [ - 2191 + 2187 ], "deletable": [ - 5 + 6 ], "deleted_at": [ - 4958 + 4954 ], "entity_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "in_app": [ - 5 + 6 ], "is_read": [ - 5 + 6 ], "message": [ - 83 + 84 ], "role": [ - 1242 + 1243 ], "steam_id": [ - 268 + 269 ], "title": [ - 83 + 84 ], "type": [ - 1202 + 1203 ], "__typename": [ - 83 + 84 ] }, "notifications_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "notifications_sum_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "notifications_update_column": {}, "notifications_updates": { "_append": [ - 3333 + 3329 ], "_delete_at_path": [ - 3339 + 3335 ], "_delete_elem": [ - 3340 + 3336 ], "_delete_key": [ - 3341 + 3337 ], "_inc": [ - 3342 + 3338 ], "_prepend": [ - 3352 + 3348 ], "_set": [ - 3356 + 3352 ], "where": [ - 3337 + 3333 ], "__typename": [ - 83 + 84 ] }, "notifications_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notifications_var_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "notifications_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notifications_var_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "notifications_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "notifications_variance_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 3375 + 3371 ], "_gt": [ - 3375 + 3371 ], "_gte": [ - 3375 + 3371 ], "_in": [ - 3375 + 3371 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 3375 + 3371 ], "_lte": [ - 3375 + 3371 ], "_neq": [ - 3375 + 3371 ], "_nin": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "order_by": {}, "pending_match_import_players": { "created_at": [ - 4958 + 4954 ], "pending_match_import": [ - 3419 + 3415 ], "player": [ - 4335 + 4331 ], "steam_id": [ - 268 + 269 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_aggregate": { "aggregate": [ - 3382 + 3378 ], "nodes": [ - 3378 + 3374 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 3381 + 3377 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 3399 + 3395 ], "distinct": [ - 5 + 6 ], "filter": [ - 3387 + 3383 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_aggregate_fields": { "avg": [ - 3385 + 3381 ], "count": [ - 40, + 41, { "columns": [ - 3399, + 3395, "[pending_match_import_players_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3391 + 3387 ], "min": [ - 3393 + 3389 ], "stddev": [ - 3401 + 3397 ], "stddev_pop": [ - 3403 + 3399 ], "stddev_samp": [ - 3405 + 3401 ], "sum": [ - 3409 + 3405 ], "var_pop": [ - 3413 + 3409 ], "var_samp": [ - 3415 + 3411 ], "variance": [ - 3417 + 3413 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 3386 + 3382 ], "count": [ - 3377 + 3373 ], "max": [ - 3392 + 3388 ], "min": [ - 3394 + 3390 ], "stddev": [ - 3402 + 3398 ], "stddev_pop": [ - 3404 + 3400 ], "stddev_samp": [ - 3406 + 3402 ], "sum": [ - 3410 + 3406 ], "var_pop": [ - 3414 + 3410 ], "var_samp": [ - 3416 + 3412 ], "variance": [ - 3418 + 3414 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 3390 + 3386 ], "on_conflict": [ - 3396 + 3392 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_avg_fields": { "steam_id": [ - 31 + 32 ], "valve_match_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 3377 + 3373 ], "valve_match_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_bool_exp": { "_and": [ - 3387 + 3383 ], "_not": [ - 3387 + 3383 ], "_or": [ - 3387 + 3383 ], "created_at": [ - 4959 + 4955 ], "pending_match_import": [ - 3423 + 3419 ], "player": [ - 4339 + 4335 ], "steam_id": [ - 270 + 271 ], "valve_match_id": [ - 3376 + 3372 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_constraint": {}, "pending_match_import_players_inc_input": { "steam_id": [ - 268 + 269 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_insert_input": { "created_at": [ - 4958 + 4954 ], "pending_match_import": [ - 3430 + 3426 ], "player": [ - 4346 + 4342 ], "steam_id": [ - 268 + 269 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_max_fields": { "created_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_max_order_by": { "created_at": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "valve_match_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_min_fields": { "created_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_min_order_by": { "created_at": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "valve_match_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3378 + 3374 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_on_conflict": { "constraint": [ - 3388 + 3384 ], "update_columns": [ - 3411 + 3407 ], "where": [ - 3387 + 3383 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_order_by": { "created_at": [ - 3377 + 3373 ], "pending_match_import": [ - 3432 + 3428 ], "player": [ - 4348 + 4344 ], "steam_id": [ - 3377 + 3373 ], "valve_match_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_pk_columns_input": { "steam_id": [ - 268 + 269 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_stddev_fields": { "steam_id": [ - 31 + 32 ], "valve_match_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 3377 + 3373 ], "valve_match_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "valve_match_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "valve_match_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "valve_match_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "valve_match_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 3408 + 3404 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_sum_fields": { "steam_id": [ - 268 + 269 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 3377 + 3373 ], "valve_match_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 3389 + 3385 ], "_set": [ - 3400 + 3396 ], "where": [ - 3387 + 3383 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_var_pop_fields": { "steam_id": [ - 31 + 32 ], "valve_match_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "valve_match_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_var_samp_fields": { "steam_id": [ - 31 + 32 ], "valve_match_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "valve_match_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_variance_fields": { "steam_id": [ - 31 + 32 ], "valve_match_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 3377 + 3373 ], "valve_match_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports": { "created_at": [ - 4958 + 4954 ], "demo_url": [ - 83 + 84 ], "error": [ - 83 + 84 ], "map_name": [ - 83 + 84 ], "match_start_time": [ - 4958 + 4954 ], "players": [ - 3378, + 3374, { "distinct_on": [ - 3399, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3397, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3387 + 3383 ] } ], "players_aggregate": [ - 3379, + 3375, { "distinct_on": [ - 3399, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3397, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3387 + 3383 ] } ], "share_code": [ - 83 + 84 ], "status": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_aggregate": { "aggregate": [ - 3421 + 3417 ], "nodes": [ - 3419 + 3415 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_aggregate_fields": { "avg": [ - 3422 + 3418 ], "count": [ - 40, + 41, { "columns": [ - 3434, + 3430, "[pending_match_imports_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3427 + 3423 ], "min": [ - 3428 + 3424 ], "stddev": [ - 3436 + 3432 ], "stddev_pop": [ - 3437 + 3433 ], "stddev_samp": [ - 3438 + 3434 ], "sum": [ - 3441 + 3437 ], "var_pop": [ - 3444 + 3440 ], "var_samp": [ - 3445 + 3441 ], "variance": [ - 3446 + 3442 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_avg_fields": { "valve_match_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_bool_exp": { "_and": [ - 3423 + 3419 ], "_not": [ - 3423 + 3419 ], "_or": [ - 3423 + 3419 ], "created_at": [ - 4959 + 4955 ], "demo_url": [ - 85 + 86 ], "error": [ - 85 + 86 ], "map_name": [ - 85 + 86 ], "match_start_time": [ - 4959 + 4955 ], "players": [ - 3387 + 3383 ], "players_aggregate": [ - 3380 + 3376 ], "share_code": [ - 85 + 86 ], "status": [ - 85 + 86 ], "updated_at": [ - 4959 + 4955 ], "valve_match_id": [ - 3376 + 3372 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_insert_input": { "created_at": [ - 4958 + 4954 ], "demo_url": [ - 83 + 84 ], "error": [ - 83 + 84 ], "map_name": [ - 83 + 84 ], "match_start_time": [ - 4958 + 4954 ], "players": [ - 3384 + 3380 ], "share_code": [ - 83 + 84 ], "status": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_max_fields": { "created_at": [ - 4958 + 4954 ], "demo_url": [ - 83 + 84 ], "error": [ - 83 + 84 ], "map_name": [ - 83 + 84 ], "match_start_time": [ - 4958 + 4954 ], "share_code": [ - 83 + 84 ], "status": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_min_fields": { "created_at": [ - 4958 + 4954 ], "demo_url": [ - 83 + 84 ], "error": [ - 83 + 84 ], "map_name": [ - 83 + 84 ], "match_start_time": [ - 4958 + 4954 ], "share_code": [ - 83 + 84 ], "status": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3419 + 3415 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 3426 + 3422 ], "on_conflict": [ - 3431 + 3427 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_on_conflict": { "constraint": [ - 3424 + 3420 ], "update_columns": [ - 3442 + 3438 ], "where": [ - 3423 + 3419 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_order_by": { "created_at": [ - 3377 + 3373 ], "demo_url": [ - 3377 + 3373 ], "error": [ - 3377 + 3373 ], "map_name": [ - 3377 + 3373 ], "match_start_time": [ - 3377 + 3373 ], "players_aggregate": [ - 3383 + 3379 ], "share_code": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "valve_match_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4958 + 4954 ], "demo_url": [ - 83 + 84 ], "error": [ - 83 + 84 ], "map_name": [ - 83 + 84 ], "match_start_time": [ - 4958 + 4954 ], "share_code": [ - 83 + 84 ], "status": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_stddev_fields": { "valve_match_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_stddev_pop_fields": { "valve_match_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_stddev_samp_fields": { "valve_match_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 3440 + 3436 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "demo_url": [ - 83 + 84 ], "error": [ - 83 + 84 ], "map_name": [ - 83 + 84 ], "match_start_time": [ - 4958 + 4954 ], "share_code": [ - 83 + 84 ], "status": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 3425 + 3421 ], "_set": [ - 3435 + 3431 ], "where": [ - 3423 + 3419 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_var_pop_fields": { "valve_match_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_var_samp_fields": { "valve_match_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "pending_match_imports_variance_fields": { "valve_match_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo": { "attacker": [ - 4335 + 4331 ], "attacker_steam_id": [ - 268 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3375 + 3371 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 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": [ - 3375 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 3449 + 3445 ], "nodes": [ - 3447 + 3443 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 3450 + 3446 ], "count": [ - 40, + 41, { "columns": [ - 3461, + 3457, "[player_aim_stats_demo_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3455 + 3451 ], "min": [ - 3456 + 3452 ], "stddev": [ - 3463 + 3459 ], "stddev_pop": [ - 3464 + 3460 ], "stddev_samp": [ - 3465 + 3461 ], "sum": [ - 3468 + 3464 ], "var_pop": [ - 3471 + 3467 ], "var_samp": [ - 3472 + 3468 ], "variance": [ - 3473 + 3469 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_aim_stats_demo_bool_exp": { "_and": [ - 3451 + 3447 ], "_not": [ - 3451 + 3447 ], "_or": [ - 3451 + 3447 ], "attacker": [ - 4339 + 4335 ], "attacker_steam_id": [ - 270 + 271 ], "counter_strafe_eligible_shots": [ - 41 + 42 ], "counter_strafed_shots": [ - 41 + 42 ], "crosshair_angle_count": [ - 41 + 42 ], "crosshair_angle_sum_deg": [ - 3376 + 3372 ], "first_bullet_hits": [ - 41 + 42 ], "first_bullet_shots": [ - 41 + 42 ], "headshot_hits": [ - 41 + 42 ], "hits": [ - 41 + 42 ], "hits_at_spotted": [ - 41 + 42 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 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": [ - 3376 + 3372 ], "total_engagement_frames": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo_constraint": {}, "player_aim_stats_demo_inc_input": { "attacker_steam_id": [ - 268 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3375 + 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": [ - 3375 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo_insert_input": { "attacker": [ - 4346 + 4342 ], "attacker_steam_id": [ - 268 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3375 + 3371 ], "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "headshot_hits": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_at_spotted": [ - 40 + 41 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 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": [ - 3375 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo_max_fields": { "attacker_steam_id": [ - 268 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3375 + 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": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 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": [ - 3375 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo_min_fields": { "attacker_steam_id": [ - 268 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3375 + 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": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 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": [ - 3375 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3447 + 3443 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 3452 + 3448 ], "update_columns": [ - 3469 + 3465 ], "where": [ - 3451 + 3447 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo_order_by": { "attacker": [ - 4348 + 4344 ], "attacker_steam_id": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "crosshair_angle_count": [ - 3377 + 3373 ], "crosshair_angle_sum_deg": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "time_to_damage_count": [ - 3377 + 3373 ], "time_to_damage_sum_s": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo_pk_columns_input": { "attacker_steam_id": [ - 268 + 269 ], "match_map_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo_select_column": {}, "player_aim_stats_demo_set_input": { "attacker_steam_id": [ - 268 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3375 + 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": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 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": [ - 3375 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 3467 + 3463 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo_stream_cursor_value_input": { "attacker_steam_id": [ - 268 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3375 + 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": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 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": [ - 3375 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo_sum_fields": { "attacker_steam_id": [ - 268 + 269 ], "counter_strafe_eligible_shots": [ - 40 + 41 ], "counter_strafed_shots": [ - 40 + 41 ], "crosshair_angle_count": [ - 40 + 41 ], "crosshair_angle_sum_deg": [ - 3375 + 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": [ - 3375 + 3371 ], "total_engagement_frames": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 3453 + 3449 ], "_set": [ - 3462 + 3458 ], "where": [ - 3451 + 3447 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "player_aim_weapon_stats": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4335 + 4331 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "weapon_class": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 3478 + 3474 ], "nodes": [ - 3474 + 3470 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 3477 + 3473 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 3495 + 3491 ], "distinct": [ - 5 + 6 ], "filter": [ - 3483 + 3479 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 3481 + 3477 ], "count": [ - 40, + 41, { "columns": [ - 3495, + 3491, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3487 + 3483 ], "min": [ - 3489 + 3485 ], "stddev": [ - 3497 + 3493 ], "stddev_pop": [ - 3499 + 3495 ], "stddev_samp": [ - 3501 + 3497 ], "sum": [ - 3505 + 3501 ], "var_pop": [ - 3509 + 3505 ], "var_samp": [ - 3511 + 3507 ], "variance": [ - 3513 + 3509 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 3482 + 3478 ], "count": [ - 3377 + 3373 ], "max": [ - 3488 + 3484 ], "min": [ - 3490 + 3486 ], "stddev": [ - 3498 + 3494 ], "stddev_pop": [ - 3500 + 3496 ], "stddev_samp": [ - 3502 + 3498 ], "sum": [ - 3506 + 3502 ], "var_pop": [ - 3510 + 3506 ], "var_samp": [ - 3512 + 3508 ], "variance": [ - 3514 + 3510 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 3486 + 3482 ], "on_conflict": [ - 3492 + 3488 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 3483 + 3479 ], "_not": [ - 3483 + 3479 ], "_or": [ - 3483 + 3479 ], "first_bullet_hits": [ - 41 + 42 ], "first_bullet_shots": [ - 41 + 42 ], "hits": [ - 41 + 42 ], "hits_spotted": [ - 41 + 42 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "player": [ - 4339 + 4335 ], "shots": [ - 41 + 42 ], "shots_spotted": [ - 41 + 42 ], "steam_id": [ - 270 + 271 ], "weapon_class": [ - 85 + 86 ], "__typename": [ - 83 + 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": [ - 268 + 269 ], "__typename": [ - 83 + 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": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4346 + 4342 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "weapon_class": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "weapon_class": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "weapon_class": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "weapon_class": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "weapon_class": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3474 + 3470 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 3484 + 3480 ], "update_columns": [ - 3507 + 3503 ], "where": [ - 3483 + 3479 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "weapon_class": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "weapon_class": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "weapon_class": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 3504 + 3500 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 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": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "weapon_class": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 3485 + 3481 ], "_set": [ - 3496 + 3492 ], "where": [ - 3483 + 3479 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_assists": { "attacked_player": [ - 4335 + 4331 ], "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "deleted_at": [ - 4958 + 4954 ], "flash": [ - 5 + 6 ], "is_team_assist": [ - 5 + 6 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4335 + 4331 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_assists_aggregate": { "aggregate": [ - 3521 + 3517 ], "nodes": [ - 3515 + 3511 ], "__typename": [ - 83 + 84 ] }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 3518 + 3514 ], "bool_or": [ - 3519 + 3515 ], "count": [ - 3520 + 3516 ], "__typename": [ - 83 + 84 ] }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 3539 + 3535 ], "distinct": [ - 5 + 6 ], "filter": [ - 3526 + 3522 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 3540 + 3536 ], "distinct": [ - 5 + 6 ], "filter": [ - 3526 + 3522 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 3538 + 3534 ], "distinct": [ - 5 + 6 ], "filter": [ - 3526 + 3522 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_assists_aggregate_fields": { "avg": [ - 3524 + 3520 ], "count": [ - 40, + 41, { "columns": [ - 3538, + 3534, "[player_assists_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3530 + 3526 ], "min": [ - 3532 + 3528 ], "stddev": [ - 3542 + 3538 ], "stddev_pop": [ - 3544 + 3540 ], "stddev_samp": [ - 3546 + 3542 ], "sum": [ - 3550 + 3546 ], "var_pop": [ - 3554 + 3550 ], "var_samp": [ - 3556 + 3552 ], "variance": [ - 3558 + 3554 ], "__typename": [ - 83 + 84 ] }, "player_assists_aggregate_order_by": { "avg": [ - 3525 + 3521 ], "count": [ - 3377 + 3373 ], "max": [ - 3531 + 3527 ], "min": [ - 3533 + 3529 ], "stddev": [ - 3543 + 3539 ], "stddev_pop": [ - 3545 + 3541 ], "stddev_samp": [ - 3547 + 3543 ], "sum": [ - 3551 + 3547 ], "var_pop": [ - 3555 + 3551 ], "var_samp": [ - 3557 + 3553 ], "variance": [ - 3559 + 3555 ], "__typename": [ - 83 + 84 ] }, "player_assists_arr_rel_insert_input": { "data": [ - 3529 + 3525 ], "on_conflict": [ - 3535 + 3531 ], "__typename": [ - 83 + 84 ] }, "player_assists_avg_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_assists_bool_exp": { "_and": [ - 3526 + 3522 ], "_not": [ - 3526 + 3522 ], "_or": [ - 3526 + 3522 ], "attacked_player": [ - 4339 + 4335 ], "attacked_steam_id": [ - 270 + 271 ], "attacked_team": [ - 85 + 86 ], "attacker_steam_id": [ - 270 + 271 ], "attacker_team": [ - 85 + 86 ], "deleted_at": [ - 4959 + 4955 ], "flash": [ - 6 + 7 ], "is_team_assist": [ - 6 + 7 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "player": [ - 4339 + 4335 ], "round": [ - 41 + 42 ], "time": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "player_assists_constraint": {}, "player_assists_inc_input": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_assists_insert_input": { "attacked_player": [ - 4346 + 4342 ], "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "deleted_at": [ - 4958 + 4954 ], "flash": [ - 5 + 6 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4346 + 4342 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_assists_max_fields": { "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "deleted_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_assists_max_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacked_team": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "attacker_team": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_assists_min_fields": { "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "deleted_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_assists_min_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacked_team": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "attacker_team": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_assists_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3515 + 3511 ], "__typename": [ - 83 + 84 ] }, "player_assists_on_conflict": { "constraint": [ - 3527 + 3523 ], "update_columns": [ - 3552 + 3548 ], "where": [ - 3526 + 3522 ], "__typename": [ - 83 + 84 ] }, "player_assists_order_by": { "attacked_player": [ - 4348 + 4344 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacked_team": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "attacker_team": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "flash": [ - 3377 + 3373 ], "is_team_assist": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_assists_pk_columns_input": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "match_map_id": [ - 5458 + 5454 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_assists_select_column": {}, @@ -68414,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": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "deleted_at": [ - 4958 + 4954 ], "flash": [ - 5 + 6 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_assists_stddev_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_assists_stddev_pop_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_assists_stddev_samp_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_assists_stream_cursor_input": { "initial_value": [ - 3549 + 3545 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_assists_stream_cursor_value_input": { "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "deleted_at": [ - 4958 + 4954 ], "flash": [ - 5 + 6 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_assists_sum_fields": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 3528 + 3524 ], "_set": [ - 3541 + 3537 ], "where": [ - 3526 + 3522 ], "__typename": [ - 83 + 84 ] }, "player_assists_var_pop_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_assists_var_samp_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_assists_variance_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_career_stats_v": { "accuracy": [ - 3375 + 3371 ], "accuracy_spotted": [ - 3375 + 3371 ], "counter_strafe_pct": [ - 3375 + 3371 ], "crosshair_deg": [ - 3375 + 3371 ], "enemy_blind_pr": [ - 3375 + 3371 ], "flash_assists_pr": [ - 3375 + 3371 ], "hs_pct": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "maps": [ - 40 + 41 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "survival_pct": [ - 3375 + 3371 ], "time_to_damage_s": [ - 3375 + 3371 ], "traded_death_pct": [ - 3375 + 3371 ], "util_efficiency": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "player_career_stats_v_aggregate": { "aggregate": [ - 3562 + 3558 ], "nodes": [ - 3560 + 3556 ], "__typename": [ - 83 + 84 ] }, "player_career_stats_v_aggregate_fields": { "avg": [ - 3563 + 3559 ], "count": [ - 40, + 41, { "columns": [ - 3568, + 3564, "[player_career_stats_v_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3565 + 3561 ], "min": [ - 3566 + 3562 ], "stddev": [ - 3569 + 3565 ], "stddev_pop": [ - 3570 + 3566 ], "stddev_samp": [ - 3571 + 3567 ], "sum": [ - 3574 + 3570 ], "var_pop": [ - 3575 + 3571 ], "var_samp": [ - 3576 + 3572 ], "variance": [ - 3577 + 3573 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_career_stats_v_bool_exp": { "_and": [ - 3564 + 3560 ], "_not": [ - 3564 + 3560 ], "_or": [ - 3564 + 3560 ], "accuracy": [ - 3376 + 3372 ], "accuracy_spotted": [ - 3376 + 3372 ], "counter_strafe_pct": [ - 3376 + 3372 ], "crosshair_deg": [ - 3376 + 3372 ], "enemy_blind_pr": [ - 3376 + 3372 ], "flash_assists_pr": [ - 3376 + 3372 ], "hs_pct": [ - 3376 + 3372 ], "kast_pct": [ - 3376 + 3372 ], "maps": [ - 41 + 42 ], "premier_rank": [ - 41 + 42 ], "rounds": [ - 41 + 42 ], "steam_id": [ - 270 + 271 ], "survival_pct": [ - 3376 + 3372 ], "time_to_damage_s": [ - 3376 + 3372 ], "traded_death_pct": [ - 3376 + 3372 ], "util_efficiency": [ - 3376 + 3372 ], "__typename": [ - 83 + 84 ] }, "player_career_stats_v_max_fields": { "accuracy": [ - 3375 + 3371 ], "accuracy_spotted": [ - 3375 + 3371 ], "counter_strafe_pct": [ - 3375 + 3371 ], "crosshair_deg": [ - 3375 + 3371 ], "enemy_blind_pr": [ - 3375 + 3371 ], "flash_assists_pr": [ - 3375 + 3371 ], "hs_pct": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "maps": [ - 40 + 41 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "survival_pct": [ - 3375 + 3371 ], "time_to_damage_s": [ - 3375 + 3371 ], "traded_death_pct": [ - 3375 + 3371 ], "util_efficiency": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "player_career_stats_v_min_fields": { "accuracy": [ - 3375 + 3371 ], "accuracy_spotted": [ - 3375 + 3371 ], "counter_strafe_pct": [ - 3375 + 3371 ], "crosshair_deg": [ - 3375 + 3371 ], "enemy_blind_pr": [ - 3375 + 3371 ], "flash_assists_pr": [ - 3375 + 3371 ], "hs_pct": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "maps": [ - 40 + 41 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "survival_pct": [ - 3375 + 3371 ], "time_to_damage_s": [ - 3375 + 3371 ], "traded_death_pct": [ - 3375 + 3371 ], "util_efficiency": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "player_career_stats_v_order_by": { "accuracy": [ - 3377 + 3373 ], "accuracy_spotted": [ - 3377 + 3373 ], "counter_strafe_pct": [ - 3377 + 3373 ], "crosshair_deg": [ - 3377 + 3373 ], "enemy_blind_pr": [ - 3377 + 3373 ], "flash_assists_pr": [ - 3377 + 3373 ], "hs_pct": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "maps": [ - 3377 + 3373 ], "premier_rank": [ - 3377 + 3373 ], "rounds": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "survival_pct": [ - 3377 + 3373 ], "time_to_damage_s": [ - 3377 + 3373 ], "traded_death_pct": [ - 3377 + 3373 ], "util_efficiency": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 3573 + 3569 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 3375 + 3371 ], "accuracy_spotted": [ - 3375 + 3371 ], "counter_strafe_pct": [ - 3375 + 3371 ], "crosshair_deg": [ - 3375 + 3371 ], "enemy_blind_pr": [ - 3375 + 3371 ], "flash_assists_pr": [ - 3375 + 3371 ], "hs_pct": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "maps": [ - 40 + 41 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "survival_pct": [ - 3375 + 3371 ], "time_to_damage_s": [ - 3375 + 3371 ], "traded_death_pct": [ - 3375 + 3371 ], "util_efficiency": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "player_career_stats_v_sum_fields": { "accuracy": [ - 3375 + 3371 ], "accuracy_spotted": [ - 3375 + 3371 ], "counter_strafe_pct": [ - 3375 + 3371 ], "crosshair_deg": [ - 3375 + 3371 ], "enemy_blind_pr": [ - 3375 + 3371 ], "flash_assists_pr": [ - 3375 + 3371 ], "hs_pct": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "maps": [ - 40 + 41 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "survival_pct": [ - 3375 + 3371 ], "time_to_damage_s": [ - 3375 + 3371 ], "traded_death_pct": [ - 3375 + 3371 ], "util_efficiency": [ - 3375 + 3371 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "player_damages": { "armor": [ - 40 + 41 ], "attacked_location": [ - 83 + 84 ], "attacked_location_coordinates": [ - 83 + 84 ], "attacked_player": [ - 4335 + 4331 ], "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_location": [ - 83 + 84 ], "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "deleted_at": [ - 4958 + 4954 ], "health": [ - 40 + 41 ], "hitgroup": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4335 + 4331 ], "round": [ - 3375 + 3371 ], "team_damage": [ - 5 + 6 ], "time": [ - 4958 + 4954 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_damages_aggregate": { "aggregate": [ - 3582 + 3578 ], "nodes": [ - 3578 + 3574 ], "__typename": [ - 83 + 84 ] }, "player_damages_aggregate_bool_exp": { "count": [ - 3581 + 3577 ], "__typename": [ - 83 + 84 ] }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 3599 + 3595 ], "distinct": [ - 5 + 6 ], "filter": [ - 3587 + 3583 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_damages_aggregate_fields": { "avg": [ - 3585 + 3581 ], "count": [ - 40, + 41, { "columns": [ - 3599, + 3595, "[player_damages_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3591 + 3587 ], "min": [ - 3593 + 3589 ], "stddev": [ - 3601 + 3597 ], "stddev_pop": [ - 3603 + 3599 ], "stddev_samp": [ - 3605 + 3601 ], "sum": [ - 3609 + 3605 ], "var_pop": [ - 3613 + 3609 ], "var_samp": [ - 3615 + 3611 ], "variance": [ - 3617 + 3613 ], "__typename": [ - 83 + 84 ] }, "player_damages_aggregate_order_by": { "avg": [ - 3586 + 3582 ], "count": [ - 3377 + 3373 ], "max": [ - 3592 + 3588 ], "min": [ - 3594 + 3590 ], "stddev": [ - 3602 + 3598 ], "stddev_pop": [ - 3604 + 3600 ], "stddev_samp": [ - 3606 + 3602 ], "sum": [ - 3610 + 3606 ], "var_pop": [ - 3614 + 3610 ], "var_samp": [ - 3616 + 3612 ], "variance": [ - 3618 + 3614 ], "__typename": [ - 83 + 84 ] }, "player_damages_arr_rel_insert_input": { "data": [ - 3590 + 3586 ], "on_conflict": [ - 3596 + 3592 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_damages_avg_order_by": { "armor": [ - 3377 + 3373 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_armor": [ - 3377 + 3373 ], "health": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_damages_bool_exp": { "_and": [ - 3587 + 3583 ], "_not": [ - 3587 + 3583 ], "_or": [ - 3587 + 3583 ], "armor": [ - 41 + 42 ], "attacked_location": [ - 85 + 86 ], "attacked_location_coordinates": [ - 85 + 86 ], "attacked_player": [ - 4339 + 4335 ], "attacked_steam_id": [ - 270 + 271 ], "attacked_team": [ - 85 + 86 ], "attacker_location": [ - 85 + 86 ], "attacker_location_coordinates": [ - 85 + 86 ], "attacker_steam_id": [ - 270 + 271 ], "attacker_team": [ - 85 + 86 ], "damage": [ - 41 + 42 ], "damage_armor": [ - 41 + 42 ], "deleted_at": [ - 4959 + 4955 ], "health": [ - 41 + 42 ], "hitgroup": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "player": [ - 4339 + 4335 ], "round": [ - 3376 + 3372 ], "team_damage": [ - 6 + 7 ], "time": [ - 4959 + 4955 ], "with": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "player_damages_constraint": {}, "player_damages_inc_input": { "armor": [ - 40 + 41 ], "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "health": [ - 40 + 41 ], "round": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "player_damages_insert_input": { "armor": [ - 40 + 41 ], "attacked_location": [ - 83 + 84 ], "attacked_location_coordinates": [ - 83 + 84 ], "attacked_player": [ - 4346 + 4342 ], "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_location": [ - 83 + 84 ], "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "deleted_at": [ - 4958 + 4954 ], "health": [ - 40 + 41 ], "hitgroup": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4346 + 4342 ], "round": [ - 3375 + 3371 ], "time": [ - 4958 + 4954 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_damages_max_fields": { "armor": [ - 40 + 41 ], "attacked_location": [ - 83 + 84 ], "attacked_location_coordinates": [ - 83 + 84 ], "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_location": [ - 83 + 84 ], "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "deleted_at": [ - 4958 + 4954 ], "health": [ - 40 + 41 ], "hitgroup": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 3375 + 3371 ], "time": [ - 4958 + 4954 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_damages_max_order_by": { "armor": [ - 3377 + 3373 ], "attacked_location": [ - 3377 + 3373 ], "attacked_location_coordinates": [ - 3377 + 3373 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacked_team": [ - 3377 + 3373 ], "attacker_location": [ - 3377 + 3373 ], "attacker_location_coordinates": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "attacker_team": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_armor": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "health": [ - 3377 + 3373 ], "hitgroup": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "with": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_damages_min_fields": { "armor": [ - 40 + 41 ], "attacked_location": [ - 83 + 84 ], "attacked_location_coordinates": [ - 83 + 84 ], "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_location": [ - 83 + 84 ], "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "deleted_at": [ - 4958 + 4954 ], "health": [ - 40 + 41 ], "hitgroup": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 3375 + 3371 ], "time": [ - 4958 + 4954 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_damages_min_order_by": { "armor": [ - 3377 + 3373 ], "attacked_location": [ - 3377 + 3373 ], "attacked_location_coordinates": [ - 3377 + 3373 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacked_team": [ - 3377 + 3373 ], "attacker_location": [ - 3377 + 3373 ], "attacker_location_coordinates": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "attacker_team": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_armor": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "health": [ - 3377 + 3373 ], "hitgroup": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "with": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_damages_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3578 + 3574 ], "__typename": [ - 83 + 84 ] }, "player_damages_on_conflict": { "constraint": [ - 3588 + 3584 ], "update_columns": [ - 3611 + 3607 ], "where": [ - 3587 + 3583 ], "__typename": [ - 83 + 84 ] }, "player_damages_order_by": { "armor": [ - 3377 + 3373 ], "attacked_location": [ - 3377 + 3373 ], "attacked_location_coordinates": [ - 3377 + 3373 ], "attacked_player": [ - 4348 + 4344 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacked_team": [ - 3377 + 3373 ], "attacker_location": [ - 3377 + 3373 ], "attacker_location_coordinates": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "attacker_team": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_armor": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "health": [ - 3377 + 3373 ], "hitgroup": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "round": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "with": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_damages_pk_columns_input": { "id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_damages_select_column": {}, "player_damages_set_input": { "armor": [ - 40 + 41 ], "attacked_location": [ - 83 + 84 ], "attacked_location_coordinates": [ - 83 + 84 ], "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_location": [ - 83 + 84 ], "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "deleted_at": [ - 4958 + 4954 ], "health": [ - 40 + 41 ], "hitgroup": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 3375 + 3371 ], "time": [ - 4958 + 4954 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_damages_stddev_order_by": { "armor": [ - 3377 + 3373 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_armor": [ - 3377 + 3373 ], "health": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_damages_stddev_pop_order_by": { "armor": [ - 3377 + 3373 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_armor": [ - 3377 + 3373 ], "health": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_damages_stddev_samp_order_by": { "armor": [ - 3377 + 3373 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_armor": [ - 3377 + 3373 ], "health": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_damages_stream_cursor_input": { "initial_value": [ - 3608 + 3604 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_damages_stream_cursor_value_input": { "armor": [ - 40 + 41 ], "attacked_location": [ - 83 + 84 ], "attacked_location_coordinates": [ - 83 + 84 ], "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_location": [ - 83 + 84 ], "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "deleted_at": [ - 4958 + 4954 ], "health": [ - 40 + 41 ], "hitgroup": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 3375 + 3371 ], "time": [ - 4958 + 4954 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_damages_sum_fields": { "armor": [ - 40 + 41 ], "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "damage": [ - 40 + 41 ], "damage_armor": [ - 40 + 41 ], "health": [ - 40 + 41 ], "round": [ - 3375 + 3371 ], "__typename": [ - 83 + 84 ] }, "player_damages_sum_order_by": { "armor": [ - 3377 + 3373 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_armor": [ - 3377 + 3373 ], "health": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 3589 + 3585 ], "_set": [ - 3600 + 3596 ], "where": [ - 3587 + 3583 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_damages_var_pop_order_by": { "armor": [ - 3377 + 3373 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_armor": [ - 3377 + 3373 ], "health": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_damages_var_samp_order_by": { "armor": [ - 3377 + 3373 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_armor": [ - 3377 + 3373 ], "health": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_damages_variance_order_by": { "armor": [ - 3377 + 3373 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_armor": [ - 3377 + 3373 ], "health": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_elo": { "actual_score": [ - 1841 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3375 + 3371 ], "created_at": [ - 4958 + 4954 ], "current": [ - 3375 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1841 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1841 + 1842 ], "impact": [ - 3375 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "opponent_team_elo_avg": [ - 1841 + 1842 ], "performance_multiplier": [ - 1841 + 1842 ], "player": [ - 4335 + 4331 ], "player_team_elo_avg": [ - 1841 + 1842 ], "rating_for_expected": [ - 1841 + 1842 ], "season": [ - 4421 + 4417 ], "season_id": [ - 5458 + 5454 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "team_avg_kda": [ - 1841 + 1842 ], "type": [ - 1181 + 1182 ], "__typename": [ - 83 + 84 ] }, "player_elo_aggregate": { "aggregate": [ - 3621 + 3617 ], "nodes": [ - 3619 + 3615 ], "__typename": [ - 83 + 84 ] }, "player_elo_aggregate_fields": { "avg": [ - 3622 + 3618 ], "count": [ - 40, + 41, { "columns": [ - 3633, + 3629, "[player_elo_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3627 + 3623 ], "min": [ - 3628 + 3624 ], "stddev": [ - 3635 + 3631 ], "stddev_pop": [ - 3636 + 3632 ], "stddev_samp": [ - 3637 + 3633 ], "sum": [ - 3640 + 3636 ], "var_pop": [ - 3643 + 3639 ], "var_samp": [ - 3644 + 3640 ], "variance": [ - 3645 + 3641 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_elo_bool_exp": { "_and": [ - 3623 + 3619 ], "_not": [ - 3623 + 3619 ], "_or": [ - 3623 + 3619 ], "actual_score": [ - 1842 + 1843 ], "assists": [ - 41 + 42 ], "change": [ - 3376 + 3372 ], "created_at": [ - 4959 + 4955 ], "current": [ - 3376 + 3372 ], "damage": [ - 41 + 42 ], "damage_percent": [ - 1842 + 1843 ], "deaths": [ - 41 + 42 ], "expected_score": [ - 1842 + 1843 ], "impact": [ - 3376 + 3372 ], "k_factor": [ - 41 + 42 ], "kda": [ - 1842 + 1843 ], "kills": [ - 41 + 42 ], "map_losses": [ - 41 + 42 ], "map_wins": [ - 41 + 42 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "opponent_team_elo_avg": [ - 1842 + 1843 ], "performance_multiplier": [ - 1842 + 1843 ], "player": [ - 4339 + 4335 ], "player_team_elo_avg": [ - 1842 + 1843 ], "rating_for_expected": [ - 1842 + 1843 ], "season": [ - 4425 + 4421 ], "season_id": [ - 5460 + 5456 ], "series_multiplier": [ - 41 + 42 ], "steam_id": [ - 270 + 271 ], "team_avg_kda": [ - 1842 + 1843 ], "type": [ - 1182 + 1183 ], "__typename": [ - 83 + 84 ] }, "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1841 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3375 + 3371 ], "current": [ - 3375 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1841 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1841 + 1842 ], "impact": [ - 3375 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "opponent_team_elo_avg": [ - 1841 + 1842 ], "performance_multiplier": [ - 1841 + 1842 ], "player_team_elo_avg": [ - 1841 + 1842 ], "rating_for_expected": [ - 1841 + 1842 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "team_avg_kda": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_elo_insert_input": { "actual_score": [ - 1841 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3375 + 3371 ], "created_at": [ - 4958 + 4954 ], "current": [ - 3375 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1841 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1841 + 1842 ], "impact": [ - 3375 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "opponent_team_elo_avg": [ - 1841 + 1842 ], "performance_multiplier": [ - 1841 + 1842 ], "player": [ - 4346 + 4342 ], "player_team_elo_avg": [ - 1841 + 1842 ], "rating_for_expected": [ - 1841 + 1842 ], "season": [ - 4432 + 4428 ], "season_id": [ - 5458 + 5454 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "team_avg_kda": [ - 1841 + 1842 ], "type": [ - 1181 + 1182 ], "__typename": [ - 83 + 84 ] }, "player_elo_max_fields": { "actual_score": [ - 1841 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3375 + 3371 ], "created_at": [ - 4958 + 4954 ], "current": [ - 3375 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1841 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1841 + 1842 ], "impact": [ - 3375 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "opponent_team_elo_avg": [ - 1841 + 1842 ], "performance_multiplier": [ - 1841 + 1842 ], "player_team_elo_avg": [ - 1841 + 1842 ], "rating_for_expected": [ - 1841 + 1842 ], "season_id": [ - 5458 + 5454 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "team_avg_kda": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_elo_min_fields": { "actual_score": [ - 1841 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3375 + 3371 ], "created_at": [ - 4958 + 4954 ], "current": [ - 3375 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1841 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1841 + 1842 ], "impact": [ - 3375 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "opponent_team_elo_avg": [ - 1841 + 1842 ], "performance_multiplier": [ - 1841 + 1842 ], "player_team_elo_avg": [ - 1841 + 1842 ], "rating_for_expected": [ - 1841 + 1842 ], "season_id": [ - 5458 + 5454 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "team_avg_kda": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_elo_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3619 + 3615 ], "__typename": [ - 83 + 84 ] }, "player_elo_on_conflict": { "constraint": [ - 3624 + 3620 ], "update_columns": [ - 3641 + 3637 ], "where": [ - 3623 + 3619 ], "__typename": [ - 83 + 84 ] }, "player_elo_order_by": { "actual_score": [ - 3377 + 3373 ], "assists": [ - 3377 + 3373 ], "change": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "current": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_percent": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "expected_score": [ - 3377 + 3373 ], "impact": [ - 3377 + 3373 ], "k_factor": [ - 3377 + 3373 ], "kda": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "map_losses": [ - 3377 + 3373 ], "map_wins": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "opponent_team_elo_avg": [ - 3377 + 3373 ], "performance_multiplier": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "player_team_elo_avg": [ - 3377 + 3373 ], "rating_for_expected": [ - 3377 + 3373 ], "season": [ - 4434 + 4430 ], "season_id": [ - 3377 + 3373 ], "series_multiplier": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_avg_kda": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_elo_pk_columns_input": { "match_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "type": [ - 1181 + 1182 ], "__typename": [ - 83 + 84 ] }, "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1841 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3375 + 3371 ], "created_at": [ - 4958 + 4954 ], "current": [ - 3375 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1841 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1841 + 1842 ], "impact": [ - 3375 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "opponent_team_elo_avg": [ - 1841 + 1842 ], "performance_multiplier": [ - 1841 + 1842 ], "player_team_elo_avg": [ - 1841 + 1842 ], "rating_for_expected": [ - 1841 + 1842 ], "season_id": [ - 5458 + 5454 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "team_avg_kda": [ - 1841 + 1842 ], "type": [ - 1181 + 1182 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "player_elo_stream_cursor_input": { "initial_value": [ - 3639 + 3635 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1841 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3375 + 3371 ], "created_at": [ - 4958 + 4954 ], "current": [ - 3375 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1841 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1841 + 1842 ], "impact": [ - 3375 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "opponent_team_elo_avg": [ - 1841 + 1842 ], "performance_multiplier": [ - 1841 + 1842 ], "player_team_elo_avg": [ - 1841 + 1842 ], "rating_for_expected": [ - 1841 + 1842 ], "season_id": [ - 5458 + 5454 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "team_avg_kda": [ - 1841 + 1842 ], "type": [ - 1181 + 1182 ], "__typename": [ - 83 + 84 ] }, "player_elo_sum_fields": { "actual_score": [ - 1841 + 1842 ], "assists": [ - 40 + 41 ], "change": [ - 3375 + 3371 ], "current": [ - 3375 + 3371 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1841 + 1842 ], "deaths": [ - 40 + 41 ], "expected_score": [ - 1841 + 1842 ], "impact": [ - 3375 + 3371 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "opponent_team_elo_avg": [ - 1841 + 1842 ], "performance_multiplier": [ - 1841 + 1842 ], "player_team_elo_avg": [ - 1841 + 1842 ], "rating_for_expected": [ - 1841 + 1842 ], "series_multiplier": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "team_avg_kda": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 3625 + 3621 ], "_set": [ - 3634 + 3630 ], "where": [ - 3623 + 3619 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "player_faceit_rank_history": { "elo": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "observed_at": [ - 4958 + 4954 ], "player": [ - 4335 + 4331 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 3650 + 3646 ], "nodes": [ - 3646 + 3642 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 3649 + 3645 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3667 + 3663 ], "distinct": [ - 5 + 6 ], "filter": [ - 3655 + 3651 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 3653 + 3649 ], "count": [ - 40, + 41, { "columns": [ - 3667, + 3663, "[player_faceit_rank_history_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3659 + 3655 ], "min": [ - 3661 + 3657 ], "stddev": [ - 3669 + 3665 ], "stddev_pop": [ - 3671 + 3667 ], "stddev_samp": [ - 3673 + 3669 ], "sum": [ - 3677 + 3673 ], "var_pop": [ - 3681 + 3677 ], "var_samp": [ - 3683 + 3679 ], "variance": [ - 3685 + 3681 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 3654 + 3650 ], "count": [ - 3377 + 3373 ], "max": [ - 3660 + 3656 ], "min": [ - 3662 + 3658 ], "stddev": [ - 3670 + 3666 ], "stddev_pop": [ - 3672 + 3668 ], "stddev_samp": [ - 3674 + 3670 ], "sum": [ - 3678 + 3674 ], "var_pop": [ - 3682 + 3678 ], "var_samp": [ - 3684 + 3680 ], "variance": [ - 3686 + 3682 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 3658 + 3654 ], "on_conflict": [ - 3664 + 3660 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_avg_fields": { "elo": [ - 31 + 32 ], "previous_rank": [ - 31 + 32 ], "skill_level": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 3377 + 3373 ], "previous_rank": [ - 3377 + 3373 ], "skill_level": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_bool_exp": { "_and": [ - 3655 + 3651 ], "_not": [ - 3655 + 3651 ], "_or": [ - 3655 + 3651 ], "elo": [ - 41 + 42 ], "id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "observed_at": [ - 4959 + 4955 ], "player": [ - 4339 + 4335 ], "previous_rank": [ - 41 + 42 ], "skill_level": [ - 41 + 42 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 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": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_insert_input": { "elo": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "observed_at": [ - 4958 + 4954 ], "player": [ - 4346 + 4342 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_max_fields": { "elo": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "observed_at": [ - 4958 + 4954 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_max_order_by": { "elo": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "observed_at": [ - 3377 + 3373 ], "previous_rank": [ - 3377 + 3373 ], "skill_level": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_min_fields": { "elo": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "observed_at": [ - 4958 + 4954 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_min_order_by": { "elo": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "observed_at": [ - 3377 + 3373 ], "previous_rank": [ - 3377 + 3373 ], "skill_level": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3646 + 3642 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 3656 + 3652 ], "update_columns": [ - 3679 + 3675 ], "where": [ - 3655 + 3651 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_order_by": { "elo": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "observed_at": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "previous_rank": [ - 3377 + 3373 ], "skill_level": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_select_column": {}, "player_faceit_rank_history_set_input": { "elo": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "observed_at": [ - 4958 + 4954 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_stddev_fields": { "elo": [ - 31 + 32 ], "previous_rank": [ - 31 + 32 ], "skill_level": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 3377 + 3373 ], "previous_rank": [ - 3377 + 3373 ], "skill_level": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_stddev_pop_fields": { "elo": [ - 31 + 32 ], "previous_rank": [ - 31 + 32 ], "skill_level": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 3377 + 3373 ], "previous_rank": [ - 3377 + 3373 ], "skill_level": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_stddev_samp_fields": { "elo": [ - 31 + 32 ], "previous_rank": [ - 31 + 32 ], "skill_level": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 3377 + 3373 ], "previous_rank": [ - 3377 + 3373 ], "skill_level": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 3676 + 3672 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_stream_cursor_value_input": { "elo": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "observed_at": [ - 4958 + 4954 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_sum_fields": { "elo": [ - 40 + 41 ], "previous_rank": [ - 40 + 41 ], "skill_level": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 3377 + 3373 ], "previous_rank": [ - 3377 + 3373 ], "skill_level": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 3657 + 3653 ], "_set": [ - 3668 + 3664 ], "where": [ - 3655 + 3651 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_var_pop_fields": { "elo": [ - 31 + 32 ], "previous_rank": [ - 31 + 32 ], "skill_level": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 3377 + 3373 ], "previous_rank": [ - 3377 + 3373 ], "skill_level": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_var_samp_fields": { "elo": [ - 31 + 32 ], "previous_rank": [ - 31 + 32 ], "skill_level": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 3377 + 3373 ], "previous_rank": [ - 3377 + 3373 ], "skill_level": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_variance_fields": { "elo": [ - 31 + 32 ], "previous_rank": [ - 31 + 32 ], "skill_level": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 3377 + 3373 ], "previous_rank": [ - 3377 + 3373 ], "skill_level": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_flashes": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "blinded": [ - 4335 + 4331 ], "deleted_at": [ - 4958 + 4954 ], "duration": [ - 3375 + 3371 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "team_flash": [ - 5 + 6 ], "thrown_by": [ - 4335 + 4331 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_flashes_aggregate": { "aggregate": [ - 3693 + 3689 ], "nodes": [ - 3687 + 3683 ], "__typename": [ - 83 + 84 ] }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 3690 + 3686 ], "bool_or": [ - 3691 + 3687 ], "count": [ - 3692 + 3688 ], "__typename": [ - 83 + 84 ] }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 3711 + 3707 ], "distinct": [ - 5 + 6 ], "filter": [ - 3698 + 3694 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 3712 + 3708 ], "distinct": [ - 5 + 6 ], "filter": [ - 3698 + 3694 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 3710 + 3706 ], "distinct": [ - 5 + 6 ], "filter": [ - 3698 + 3694 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_flashes_aggregate_fields": { "avg": [ - 3696 + 3692 ], "count": [ - 40, + 41, { "columns": [ - 3710, + 3706, "[player_flashes_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3702 + 3698 ], "min": [ - 3704 + 3700 ], "stddev": [ - 3714 + 3710 ], "stddev_pop": [ - 3716 + 3712 ], "stddev_samp": [ - 3718 + 3714 ], "sum": [ - 3722 + 3718 ], "var_pop": [ - 3726 + 3722 ], "var_samp": [ - 3728 + 3724 ], "variance": [ - 3730 + 3726 ], "__typename": [ - 83 + 84 ] }, "player_flashes_aggregate_order_by": { "avg": [ - 3697 + 3693 ], "count": [ - 3377 + 3373 ], "max": [ - 3703 + 3699 ], "min": [ - 3705 + 3701 ], "stddev": [ - 3715 + 3711 ], "stddev_pop": [ - 3717 + 3713 ], "stddev_samp": [ - 3719 + 3715 ], "sum": [ - 3723 + 3719 ], "var_pop": [ - 3727 + 3723 ], "var_samp": [ - 3729 + 3725 ], "variance": [ - 3731 + 3727 ], "__typename": [ - 83 + 84 ] }, "player_flashes_arr_rel_insert_input": { "data": [ - 3701 + 3697 ], "on_conflict": [ - 3707 + 3703 ], "__typename": [ - 83 + 84 ] }, "player_flashes_avg_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "duration": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "duration": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_flashes_bool_exp": { "_and": [ - 3698 + 3694 ], "_not": [ - 3698 + 3694 ], "_or": [ - 3698 + 3694 ], "attacked_steam_id": [ - 270 + 271 ], "attacker_steam_id": [ - 270 + 271 ], "blinded": [ - 4339 + 4335 ], "deleted_at": [ - 4959 + 4955 ], "duration": [ - 3376 + 3372 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "round": [ - 41 + 42 ], "team_flash": [ - 6 + 7 ], "thrown_by": [ - 4339 + 4335 ], "time": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "player_flashes_constraint": {}, "player_flashes_inc_input": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "duration": [ - 3375 + 3371 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_flashes_insert_input": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "blinded": [ - 4346 + 4342 ], "deleted_at": [ - 4958 + 4954 ], "duration": [ - 3375 + 3371 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "team_flash": [ - 5 + 6 ], "thrown_by": [ - 4346 + 4342 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_flashes_max_fields": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "deleted_at": [ - 4958 + 4954 ], "duration": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "duration": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_flashes_min_fields": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "deleted_at": [ - 4958 + 4954 ], "duration": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "duration": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_flashes_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3687 + 3683 ], "__typename": [ - 83 + 84 ] }, "player_flashes_on_conflict": { "constraint": [ - 3699 + 3695 ], "update_columns": [ - 3724 + 3720 ], "where": [ - 3698 + 3694 ], "__typename": [ - 83 + 84 ] }, "player_flashes_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "blinded": [ - 4348 + 4344 ], "deleted_at": [ - 3377 + 3373 ], "duration": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "team_flash": [ - 3377 + 3373 ], "thrown_by": [ - 4348 + 4344 ], "time": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_flashes_pk_columns_input": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "match_map_id": [ - 5458 + 5454 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_flashes_select_column": {}, @@ -73645,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": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "deleted_at": [ - 4958 + 4954 ], "duration": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "team_flash": [ - 5 + 6 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_flashes_stddev_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "duration": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "duration": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_flashes_stddev_pop_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "duration": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "duration": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_flashes_stddev_samp_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "duration": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "duration": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_flashes_stream_cursor_input": { "initial_value": [ - 3721 + 3717 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_flashes_stream_cursor_value_input": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "deleted_at": [ - 4958 + 4954 ], "duration": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "team_flash": [ - 5 + 6 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_flashes_sum_fields": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "duration": [ - 3375 + 3371 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "duration": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 3700 + 3696 ], "_set": [ - 3713 + 3709 ], "where": [ - 3698 + 3694 ], "__typename": [ - 83 + 84 ] }, "player_flashes_var_pop_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "duration": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "duration": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_flashes_var_samp_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "duration": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "duration": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_flashes_variance_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "duration": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "duration": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills": { "assisted": [ - 5 + 6 ], "attacked_location": [ - 83 + 84 ], "attacked_location_coordinates": [ - 83 + 84 ], "attacked_player": [ - 4335 + 4331 ], "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_location": [ - 83 + 84 ], "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "blinded": [ - 5 + 6 ], "deleted_at": [ - 4958 + 4954 ], "headshot": [ - 5 + 6 ], "hitgroup": [ - 83 + 84 ], "in_air": [ - 5 + 6 ], "is_suicide": [ - 5 + 6 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "no_scope": [ - 5 + 6 ], "player": [ - 4335 + 4331 ], "round": [ - 40 + 41 ], "team_kill": [ - 5 + 6 ], "thru_smoke": [ - 5 + 6 ], "thru_wall": [ - 5 + 6 ], "time": [ - 4958 + 4954 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_kills_aggregate": { "aggregate": [ - 3738 + 3734 ], "nodes": [ - 3732 + 3728 ], "__typename": [ - 83 + 84 ] }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 3735 + 3731 ], "bool_or": [ - 3736 + 3732 ], "count": [ - 3737 + 3733 ], "__typename": [ - 83 + 84 ] }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 3797 + 3793 ], "distinct": [ - 5 + 6 ], "filter": [ - 3743 + 3739 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 3798 + 3794 ], "distinct": [ - 5 + 6 ], "filter": [ - 3743 + 3739 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 3796 + 3792 ], "distinct": [ - 5 + 6 ], "filter": [ - 3743 + 3739 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_kills_aggregate_fields": { "avg": [ - 3741 + 3737 ], "count": [ - 40, + 41, { "columns": [ - 3796, + 3792, "[player_kills_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3788 + 3784 ], "min": [ - 3790 + 3786 ], "stddev": [ - 3800 + 3796 ], "stddev_pop": [ - 3802 + 3798 ], "stddev_samp": [ - 3804 + 3800 ], "sum": [ - 3808 + 3804 ], "var_pop": [ - 3812 + 3808 ], "var_samp": [ - 3814 + 3810 ], "variance": [ - 3816 + 3812 ], "__typename": [ - 83 + 84 ] }, "player_kills_aggregate_order_by": { "avg": [ - 3742 + 3738 ], "count": [ - 3377 + 3373 ], "max": [ - 3789 + 3785 ], "min": [ - 3791 + 3787 ], "stddev": [ - 3801 + 3797 ], "stddev_pop": [ - 3803 + 3799 ], "stddev_samp": [ - 3805 + 3801 ], "sum": [ - 3809 + 3805 ], "var_pop": [ - 3813 + 3809 ], "var_samp": [ - 3815 + 3811 ], "variance": [ - 3817 + 3813 ], "__typename": [ - 83 + 84 ] }, "player_kills_arr_rel_insert_input": { "data": [ - 3787 + 3783 ], "on_conflict": [ - 3793 + 3789 ], "__typename": [ - 83 + 84 ] }, "player_kills_avg_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_bool_exp": { "_and": [ - 3743 + 3739 ], "_not": [ - 3743 + 3739 ], "_or": [ - 3743 + 3739 ], "assisted": [ - 6 + 7 ], "attacked_location": [ - 85 + 86 ], "attacked_location_coordinates": [ - 85 + 86 ], "attacked_player": [ - 4339 + 4335 ], "attacked_steam_id": [ - 270 + 271 ], "attacked_team": [ - 85 + 86 ], "attacker_location": [ - 85 + 86 ], "attacker_location_coordinates": [ - 85 + 86 ], "attacker_steam_id": [ - 270 + 271 ], "attacker_team": [ - 85 + 86 ], "blinded": [ - 6 + 7 ], "deleted_at": [ - 4959 + 4955 ], "headshot": [ - 6 + 7 ], "hitgroup": [ - 85 + 86 ], "in_air": [ - 6 + 7 ], "is_suicide": [ - 6 + 7 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "no_scope": [ - 6 + 7 ], "player": [ - 4339 + 4335 ], "round": [ - 41 + 42 ], "team_kill": [ - 6 + 7 ], "thru_smoke": [ - 6 + 7 ], "thru_wall": [ - 6 + 7 ], "time": [ - 4959 + 4955 ], "with": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon": { "kill_count": [ - 268 + 269 ], "player": [ - 4335 + 4331 ], "player_steam_id": [ - 268 + 269 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 3748 + 3744 ], "nodes": [ - 3744 + 3740 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 3747 + 3743 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 3765 + 3761 ], "distinct": [ - 5 + 6 ], "filter": [ - 3753 + 3749 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 3751 + 3747 ], "count": [ - 40, + 41, { "columns": [ - 3765, + 3761, "[player_kills_by_weapon_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3757 + 3753 ], "min": [ - 3759 + 3755 ], "stddev": [ - 3767 + 3763 ], "stddev_pop": [ - 3769 + 3765 ], "stddev_samp": [ - 3771 + 3767 ], "sum": [ - 3775 + 3771 ], "var_pop": [ - 3779 + 3775 ], "var_samp": [ - 3781 + 3777 ], "variance": [ - 3783 + 3779 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 3752 + 3748 ], "count": [ - 3377 + 3373 ], "max": [ - 3758 + 3754 ], "min": [ - 3760 + 3756 ], "stddev": [ - 3768 + 3764 ], "stddev_pop": [ - 3770 + 3766 ], "stddev_samp": [ - 3772 + 3768 ], "sum": [ - 3776 + 3772 ], "var_pop": [ - 3780 + 3776 ], "var_samp": [ - 3782 + 3778 ], "variance": [ - 3784 + 3780 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 3756 + 3752 ], "on_conflict": [ - 3762 + 3758 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_avg_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_bool_exp": { "_and": [ - 3753 + 3749 ], "_not": [ - 3753 + 3749 ], "_or": [ - 3753 + 3749 ], "kill_count": [ - 270 + 271 ], "player": [ - 4339 + 4335 ], "player_steam_id": [ - 270 + 271 ], "with": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_constraint": {}, "player_kills_by_weapon_inc_input": { "kill_count": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_insert_input": { "kill_count": [ - 268 + 269 ], "player": [ - 4346 + 4342 ], "player_steam_id": [ - 268 + 269 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_max_fields": { "kill_count": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "with": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_min_fields": { "kill_count": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "with": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3744 + 3740 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 3754 + 3750 ], "update_columns": [ - 3777 + 3773 ], "where": [ - 3753 + 3749 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_order_by": { "kill_count": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "player_steam_id": [ - 3377 + 3373 ], "with": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_pk_columns_input": { "player_steam_id": [ - 268 + 269 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_select_column": {}, "player_kills_by_weapon_set_input": { "kill_count": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_stddev_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_stddev_pop_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_stddev_samp_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 3774 + 3770 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_stream_cursor_value_input": { "kill_count": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_sum_fields": { "kill_count": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 3755 + 3751 ], "_set": [ - 3766 + 3762 ], "where": [ - 3753 + 3749 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_var_pop_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_var_samp_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_variance_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_constraint": {}, "player_kills_inc_input": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_kills_insert_input": { "assisted": [ - 5 + 6 ], "attacked_location": [ - 83 + 84 ], "attacked_location_coordinates": [ - 83 + 84 ], "attacked_player": [ - 4346 + 4342 ], "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_location": [ - 83 + 84 ], "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "blinded": [ - 5 + 6 ], "deleted_at": [ - 4958 + 4954 ], "headshot": [ - 5 + 6 ], "hitgroup": [ - 83 + 84 ], "in_air": [ - 5 + 6 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 5454 ], "no_scope": [ - 5 + 6 ], "player": [ - 4346 + 4342 ], "round": [ - 40 + 41 ], "thru_smoke": [ - 5 + 6 ], "thru_wall": [ - 5 + 6 ], "time": [ - 4958 + 4954 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_kills_max_fields": { "attacked_location": [ - 83 + 84 ], "attacked_location_coordinates": [ - 83 + 84 ], "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_location": [ - 83 + 84 ], "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "deleted_at": [ - 4958 + 4954 ], "hitgroup": [ - 83 + 84 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_kills_max_order_by": { "attacked_location": [ - 3377 + 3373 ], "attacked_location_coordinates": [ - 3377 + 3373 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacked_team": [ - 3377 + 3373 ], "attacker_location": [ - 3377 + 3373 ], "attacker_location_coordinates": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "attacker_team": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "hitgroup": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "with": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_min_fields": { "attacked_location": [ - 83 + 84 ], "attacked_location_coordinates": [ - 83 + 84 ], "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_location": [ - 83 + 84 ], "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "deleted_at": [ - 4958 + 4954 ], "hitgroup": [ - 83 + 84 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_kills_min_order_by": { "attacked_location": [ - 3377 + 3373 ], "attacked_location_coordinates": [ - 3377 + 3373 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacked_team": [ - 3377 + 3373 ], "attacker_location": [ - 3377 + 3373 ], "attacker_location_coordinates": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "attacker_team": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "hitgroup": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "with": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3732 + 3728 ], "__typename": [ - 83 + 84 ] }, "player_kills_on_conflict": { "constraint": [ - 3785 + 3781 ], "update_columns": [ - 3810 + 3806 ], "where": [ - 3743 + 3739 ], "__typename": [ - 83 + 84 ] }, "player_kills_order_by": { "assisted": [ - 3377 + 3373 ], "attacked_location": [ - 3377 + 3373 ], "attacked_location_coordinates": [ - 3377 + 3373 ], "attacked_player": [ - 4348 + 4344 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacked_team": [ - 3377 + 3373 ], "attacker_location": [ - 3377 + 3373 ], "attacker_location_coordinates": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "attacker_team": [ - 3377 + 3373 ], "blinded": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "headshot": [ - 3377 + 3373 ], "hitgroup": [ - 3377 + 3373 ], "in_air": [ - 3377 + 3373 ], "is_suicide": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "no_scope": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "round": [ - 3377 + 3373 ], "team_kill": [ - 3377 + 3373 ], "thru_smoke": [ - 3377 + 3373 ], "thru_wall": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "with": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_pk_columns_input": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "match_map_id": [ - 5458 + 5454 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_kills_select_column": {}, @@ -75336,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": [ - 83 + 84 ], "attacked_location_coordinates": [ - 83 + 84 ], "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_location": [ - 83 + 84 ], "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "blinded": [ - 5 + 6 ], "deleted_at": [ - 4958 + 4954 ], "headshot": [ - 5 + 6 ], "hitgroup": [ - 83 + 84 ], "in_air": [ - 5 + 6 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "no_scope": [ - 5 + 6 ], "round": [ - 40 + 41 ], "thru_smoke": [ - 5 + 6 ], "thru_wall": [ - 5 + 6 ], "time": [ - 4958 + 4954 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_kills_stddev_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_stddev_pop_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_stddev_samp_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_stream_cursor_input": { "initial_value": [ - 3807 + 3803 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_kills_stream_cursor_value_input": { "assisted": [ - 5 + 6 ], "attacked_location": [ - 83 + 84 ], "attacked_location_coordinates": [ - 83 + 84 ], "attacked_steam_id": [ - 268 + 269 ], "attacked_team": [ - 83 + 84 ], "attacker_location": [ - 83 + 84 ], "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "attacker_team": [ - 83 + 84 ], "blinded": [ - 5 + 6 ], "deleted_at": [ - 4958 + 4954 ], "headshot": [ - 5 + 6 ], "hitgroup": [ - 83 + 84 ], "in_air": [ - 5 + 6 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "no_scope": [ - 5 + 6 ], "round": [ - 40 + 41 ], "thru_smoke": [ - 5 + 6 ], "thru_wall": [ - 5 + 6 ], "time": [ - 4958 + 4954 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_kills_sum_fields": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 3786 + 3782 ], "_set": [ - 3799 + 3795 ], "where": [ - 3743 + 3739 ], "__typename": [ - 83 + 84 ] }, "player_kills_var_pop_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_var_samp_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_kills_variance_fields": { "attacked_steam_id": [ - 31 + 32 ], "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank": { "player_steam_id": [ - 83 + 84 ], "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 3820 + 3816 ], "nodes": [ - 3818 + 3814 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 3821 + 3817 ], "count": [ - 40, + 41, { "columns": [ - 3829, + 3825, "[player_leaderboard_rank_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3825 + 3821 ], "min": [ - 3826 + 3822 ], "stddev": [ - 3831 + 3827 ], "stddev_pop": [ - 3832 + 3828 ], "stddev_samp": [ - 3833 + 3829 ], "sum": [ - 3836 + 3832 ], "var_pop": [ - 3838 + 3834 ], "var_samp": [ - 3839 + 3835 ], "variance": [ - 3840 + 3836 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_avg_fields": { "rank": [ - 31 + 32 ], "total": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_bool_exp": { "_and": [ - 3822 + 3818 ], "_not": [ - 3822 + 3818 ], "_or": [ - 3822 + 3818 ], "player_steam_id": [ - 85 + 86 ], "rank": [ - 41 + 42 ], "total": [ - 41 + 42 ], "value": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_inc_input": { "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_insert_input": { "player_steam_id": [ - 83 + 84 ], "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_max_fields": { "player_steam_id": [ - 83 + 84 ], "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_min_fields": { "player_steam_id": [ - 83 + 84 ], "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3818 + 3814 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "total": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_select_column": {}, "player_leaderboard_rank_set_input": { "player_steam_id": [ - 83 + 84 ], "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_stddev_fields": { "rank": [ - 31 + 32 ], "total": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_stddev_pop_fields": { "rank": [ - 31 + 32 ], "total": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_stddev_samp_fields": { "rank": [ - 31 + 32 ], "total": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 3835 + 3831 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_stream_cursor_value_input": { "player_steam_id": [ - 83 + 84 ], "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_sum_fields": { "rank": [ - 40 + 41 ], "total": [ - 40 + 41 ], "value": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_updates": { "_inc": [ - 3823 + 3819 ], "_set": [ - 3830 + 3826 ], "where": [ - 3822 + 3818 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_var_pop_fields": { "rank": [ - 31 + 32 ], "total": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_var_samp_fields": { "rank": [ - 31 + 32 ], "total": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_leaderboard_rank_variance_fields": { "rank": [ - 31 + 32 ], "total": [ - 31 + 32 ], "value": [ - 31 + 32 ], "__typename": [ - 83 + 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": [ - 3375 + 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": [ - 3375 + 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": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "player": [ - 4335 + 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": [ - 268 + 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": [ - 3375 + 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": [ - 4958 + 4954 ], "util_on_death_count": [ - 40 + 41 ], "util_on_death_sum": [ - 40 + 41 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_aggregate": { "aggregate": [ - 3845 + 3841 ], "nodes": [ - 3841 + 3837 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 3844 + 3840 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 3862 + 3858 ], "distinct": [ - 5 + 6 ], "filter": [ - 3850 + 3846 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_aggregate_fields": { "avg": [ - 3848 + 3844 ], "count": [ - 40, + 41, { "columns": [ - 3862, + 3858, "[player_match_map_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3854 + 3850 ], "min": [ - 3856 + 3852 ], "stddev": [ - 3864 + 3860 ], "stddev_pop": [ - 3866 + 3862 ], "stddev_samp": [ - 3868 + 3864 ], "sum": [ - 3872 + 3868 ], "var_pop": [ - 3876 + 3872 ], "var_samp": [ - 3878 + 3874 ], "variance": [ - 3880 + 3876 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 3849 + 3845 ], "count": [ - 3377 + 3373 ], "max": [ - 3855 + 3851 ], "min": [ - 3857 + 3853 ], "stddev": [ - 3865 + 3861 ], "stddev_pop": [ - 3867 + 3863 ], "stddev_samp": [ - 3869 + 3865 ], "sum": [ - 3873 + 3869 ], "var_pop": [ - 3877 + 3873 ], "var_samp": [ - 3879 + 3875 ], "variance": [ - 3881 + 3877 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 3853 + 3849 ], "on_conflict": [ - 3859 + 3855 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_map_stats_avg_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "crosshair_angle_count": [ - 3377 + 3373 ], "crosshair_angle_sum_deg": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flash_duration_count": [ - 3377 + 3373 ], "flash_duration_sum": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kast_rounds": [ - 3377 + 3373 ], "kast_total_rounds": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "time_to_damage_count": [ - 3377 + 3373 ], "time_to_damage_sum_s": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "util_on_death_count": [ - 3377 + 3373 ], "util_on_death_sum": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_bool_exp": { "_and": [ - 3850 + 3846 ], "_not": [ - 3850 + 3846 ], "_or": [ - 3850 + 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": [ - 3376 + 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": [ - 3376 + 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": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "molotov_damage": [ - 41 + 42 ], "molotov_throws": [ - 41 + 42 ], "non_awp_hits": [ - 41 + 42 ], "on_target_frames": [ - 41 + 42 ], "player": [ - 4339 + 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": [ - 270 + 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": [ - 3376 + 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": [ - 4959 + 4955 ], "util_on_death_count": [ - 41 + 42 ], "util_on_death_sum": [ - 41 + 42 ], "wasted_magazine_shots": [ - 41 + 42 ], "zeus_kills": [ - 41 + 42 ], "__typename": [ - 83 + 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": [ - 3375 + 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": [ - 3375 + 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": [ - 268 + 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": [ - 3375 + 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": [ - 83 + 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": [ - 3375 + 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": [ - 3375 + 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": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 5454 ], "molotov_damage": [ - 40 + 41 ], "molotov_throws": [ - 40 + 41 ], "non_awp_hits": [ - 40 + 41 ], "on_target_frames": [ - 40 + 41 ], "player": [ - 4346 + 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": [ - 268 + 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": [ - 3375 + 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": [ - 4958 + 4954 ], "util_on_death_count": [ - 40 + 41 ], "util_on_death_sum": [ - 40 + 41 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 3375 + 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": [ - 3375 + 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": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 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": [ - 268 + 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": [ - 3375 + 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": [ - 4958 + 4954 ], "util_on_death_count": [ - 40 + 41 ], "util_on_death_sum": [ - 40 + 41 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_max_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "crosshair_angle_count": [ - 3377 + 3373 ], "crosshair_angle_sum_deg": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flash_duration_count": [ - 3377 + 3373 ], "flash_duration_sum": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kast_rounds": [ - 3377 + 3373 ], "kast_total_rounds": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "time_to_damage_count": [ - 3377 + 3373 ], "time_to_damage_sum_s": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "util_on_death_count": [ - 3377 + 3373 ], "util_on_death_sum": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 3375 + 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": [ - 3375 + 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": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 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": [ - 268 + 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": [ - 3375 + 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": [ - 4958 + 4954 ], "util_on_death_count": [ - 40 + 41 ], "util_on_death_sum": [ - 40 + 41 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_min_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "crosshair_angle_count": [ - 3377 + 3373 ], "crosshair_angle_sum_deg": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flash_duration_count": [ - 3377 + 3373 ], "flash_duration_sum": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kast_rounds": [ - 3377 + 3373 ], "kast_total_rounds": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "time_to_damage_count": [ - 3377 + 3373 ], "time_to_damage_sum_s": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "util_on_death_count": [ - 3377 + 3373 ], "util_on_death_sum": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3841 + 3837 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_on_conflict": { "constraint": [ - 3851 + 3847 ], "update_columns": [ - 3874 + 3870 ], "where": [ - 3850 + 3846 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "crosshair_angle_count": [ - 3377 + 3373 ], "crosshair_angle_sum_deg": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flash_duration_count": [ - 3377 + 3373 ], "flash_duration_sum": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kast_rounds": [ - 3377 + 3373 ], "kast_total_rounds": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "time_to_damage_count": [ - 3377 + 3373 ], "time_to_damage_sum_s": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "util_on_death_count": [ - 3377 + 3373 ], "util_on_death_sum": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 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": [ - 3375 + 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": [ - 3375 + 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": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 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": [ - 268 + 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": [ - 3375 + 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": [ - 4958 + 4954 ], "util_on_death_count": [ - 40 + 41 ], "util_on_death_sum": [ - 40 + 41 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_map_stats_stddev_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "crosshair_angle_count": [ - 3377 + 3373 ], "crosshair_angle_sum_deg": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flash_duration_count": [ - 3377 + 3373 ], "flash_duration_sum": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kast_rounds": [ - 3377 + 3373 ], "kast_total_rounds": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "time_to_damage_count": [ - 3377 + 3373 ], "time_to_damage_sum_s": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "util_on_death_count": [ - 3377 + 3373 ], "util_on_death_sum": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "crosshair_angle_count": [ - 3377 + 3373 ], "crosshair_angle_sum_deg": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flash_duration_count": [ - 3377 + 3373 ], "flash_duration_sum": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kast_rounds": [ - 3377 + 3373 ], "kast_total_rounds": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "time_to_damage_count": [ - 3377 + 3373 ], "time_to_damage_sum_s": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "util_on_death_count": [ - 3377 + 3373 ], "util_on_death_sum": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "crosshair_angle_count": [ - 3377 + 3373 ], "crosshair_angle_sum_deg": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flash_duration_count": [ - 3377 + 3373 ], "flash_duration_sum": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kast_rounds": [ - 3377 + 3373 ], "kast_total_rounds": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "time_to_damage_count": [ - 3377 + 3373 ], "time_to_damage_sum_s": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "util_on_death_count": [ - 3377 + 3373 ], "util_on_death_sum": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 3871 + 3867 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 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": [ - 3375 + 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": [ - 3375 + 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": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 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": [ - 268 + 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": [ - 3375 + 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": [ - 4958 + 4954 ], "util_on_death_count": [ - 40 + 41 ], "util_on_death_sum": [ - 40 + 41 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 3375 + 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": [ - 3375 + 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": [ - 268 + 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": [ - 3375 + 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": [ - 83 + 84 ] }, "player_match_map_stats_sum_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "crosshair_angle_count": [ - 3377 + 3373 ], "crosshair_angle_sum_deg": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flash_duration_count": [ - 3377 + 3373 ], "flash_duration_sum": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kast_rounds": [ - 3377 + 3373 ], "kast_total_rounds": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "time_to_damage_count": [ - 3377 + 3373 ], "time_to_damage_sum_s": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "util_on_death_count": [ - 3377 + 3373 ], "util_on_death_sum": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 3852 + 3848 ], "_set": [ - 3863 + 3859 ], "where": [ - 3850 + 3846 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "crosshair_angle_count": [ - 3377 + 3373 ], "crosshair_angle_sum_deg": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flash_duration_count": [ - 3377 + 3373 ], "flash_duration_sum": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kast_rounds": [ - 3377 + 3373 ], "kast_total_rounds": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "time_to_damage_count": [ - 3377 + 3373 ], "time_to_damage_sum_s": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "util_on_death_count": [ - 3377 + 3373 ], "util_on_death_sum": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "crosshair_angle_count": [ - 3377 + 3373 ], "crosshair_angle_sum_deg": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flash_duration_count": [ - 3377 + 3373 ], "flash_duration_sum": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kast_rounds": [ - 3377 + 3373 ], "kast_total_rounds": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "time_to_damage_count": [ - 3377 + 3373 ], "time_to_damage_sum_s": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "util_on_death_count": [ - 3377 + 3373 ], "util_on_death_sum": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_map_stats_variance_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "crosshair_angle_count": [ - 3377 + 3373 ], "crosshair_angle_sum_deg": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flash_duration_count": [ - 3377 + 3373 ], "flash_duration_sum": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kast_rounds": [ - 3377 + 3373 ], "kast_total_rounds": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "time_to_damage_count": [ - 3377 + 3373 ], "time_to_damage_sum_s": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "util_on_death_count": [ - 3377 + 3373 ], "util_on_death_sum": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_match_performance_v": { "accuracy": [ - 3375 + 3371 ], "accuracy_spotted": [ - 3375 + 3371 ], "aim_rating": [ - 1841 + 1842 ], "counter_strafe_pct": [ - 3375 + 3371 ], "enemy_blind_pr": [ - 3375 + 3371 ], "flash_assists_pr": [ - 3375 + 3371 ], "hs_pct": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "overall_rating": [ - 1841 + 1842 ], "played_at": [ - 4958 + 4954 ], "positioning_rating": [ - 1841 + 1842 ], "rounds": [ - 40 + 41 ], "source": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "survival_pct": [ - 3375 + 3371 ], "traded_death_pct": [ - 3375 + 3371 ], "util_efficiency": [ - 3375 + 3371 ], "utility_rating": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_match_performance_v_aggregate": { "aggregate": [ - 3884 + 3880 ], "nodes": [ - 3882 + 3878 ], "__typename": [ - 83 + 84 ] }, "player_match_performance_v_aggregate_fields": { "avg": [ - 3885 + 3881 ], "count": [ - 40, + 41, { "columns": [ - 3890, + 3886, "[player_match_performance_v_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3887 + 3883 ], "min": [ - 3888 + 3884 ], "stddev": [ - 3891 + 3887 ], "stddev_pop": [ - 3892 + 3888 ], "stddev_samp": [ - 3893 + 3889 ], "sum": [ - 3896 + 3892 ], "var_pop": [ - 3897 + 3893 ], "var_samp": [ - 3898 + 3894 ], "variance": [ - 3899 + 3895 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_performance_v_bool_exp": { "_and": [ - 3886 + 3882 ], "_not": [ - 3886 + 3882 ], "_or": [ - 3886 + 3882 ], "accuracy": [ - 3376 + 3372 ], "accuracy_spotted": [ - 3376 + 3372 ], "aim_rating": [ - 1842 + 1843 ], "counter_strafe_pct": [ - 3376 + 3372 ], "enemy_blind_pr": [ - 3376 + 3372 ], "flash_assists_pr": [ - 3376 + 3372 ], "hs_pct": [ - 3376 + 3372 ], "kast_pct": [ - 3376 + 3372 ], "match_id": [ - 5460 + 5456 ], "overall_rating": [ - 1842 + 1843 ], "played_at": [ - 4959 + 4955 ], "positioning_rating": [ - 1842 + 1843 ], "rounds": [ - 41 + 42 ], "source": [ - 85 + 86 ], "steam_id": [ - 270 + 271 ], "survival_pct": [ - 3376 + 3372 ], "traded_death_pct": [ - 3376 + 3372 ], "util_efficiency": [ - 3376 + 3372 ], "utility_rating": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "player_match_performance_v_max_fields": { "accuracy": [ - 3375 + 3371 ], "accuracy_spotted": [ - 3375 + 3371 ], "aim_rating": [ - 1841 + 1842 ], "counter_strafe_pct": [ - 3375 + 3371 ], "enemy_blind_pr": [ - 3375 + 3371 ], "flash_assists_pr": [ - 3375 + 3371 ], "hs_pct": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "overall_rating": [ - 1841 + 1842 ], "played_at": [ - 4958 + 4954 ], "positioning_rating": [ - 1841 + 1842 ], "rounds": [ - 40 + 41 ], "source": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "survival_pct": [ - 3375 + 3371 ], "traded_death_pct": [ - 3375 + 3371 ], "util_efficiency": [ - 3375 + 3371 ], "utility_rating": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_match_performance_v_min_fields": { "accuracy": [ - 3375 + 3371 ], "accuracy_spotted": [ - 3375 + 3371 ], "aim_rating": [ - 1841 + 1842 ], "counter_strafe_pct": [ - 3375 + 3371 ], "enemy_blind_pr": [ - 3375 + 3371 ], "flash_assists_pr": [ - 3375 + 3371 ], "hs_pct": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "overall_rating": [ - 1841 + 1842 ], "played_at": [ - 4958 + 4954 ], "positioning_rating": [ - 1841 + 1842 ], "rounds": [ - 40 + 41 ], "source": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "survival_pct": [ - 3375 + 3371 ], "traded_death_pct": [ - 3375 + 3371 ], "util_efficiency": [ - 3375 + 3371 ], "utility_rating": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_match_performance_v_order_by": { "accuracy": [ - 3377 + 3373 ], "accuracy_spotted": [ - 3377 + 3373 ], "aim_rating": [ - 3377 + 3373 ], "counter_strafe_pct": [ - 3377 + 3373 ], "enemy_blind_pr": [ - 3377 + 3373 ], "flash_assists_pr": [ - 3377 + 3373 ], "hs_pct": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "overall_rating": [ - 3377 + 3373 ], "played_at": [ - 3377 + 3373 ], "positioning_rating": [ - 3377 + 3373 ], "rounds": [ - 3377 + 3373 ], "source": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "survival_pct": [ - 3377 + 3373 ], "traded_death_pct": [ - 3377 + 3373 ], "util_efficiency": [ - 3377 + 3373 ], "utility_rating": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 3895 + 3891 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 3375 + 3371 ], "accuracy_spotted": [ - 3375 + 3371 ], "aim_rating": [ - 1841 + 1842 ], "counter_strafe_pct": [ - 3375 + 3371 ], "enemy_blind_pr": [ - 3375 + 3371 ], "flash_assists_pr": [ - 3375 + 3371 ], "hs_pct": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "overall_rating": [ - 1841 + 1842 ], "played_at": [ - 4958 + 4954 ], "positioning_rating": [ - 1841 + 1842 ], "rounds": [ - 40 + 41 ], "source": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "survival_pct": [ - 3375 + 3371 ], "traded_death_pct": [ - 3375 + 3371 ], "util_efficiency": [ - 3375 + 3371 ], "utility_rating": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_match_performance_v_sum_fields": { "accuracy": [ - 3375 + 3371 ], "accuracy_spotted": [ - 3375 + 3371 ], "aim_rating": [ - 1841 + 1842 ], "counter_strafe_pct": [ - 3375 + 3371 ], "enemy_blind_pr": [ - 3375 + 3371 ], "flash_assists_pr": [ - 3375 + 3371 ], "hs_pct": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "overall_rating": [ - 1841 + 1842 ], "positioning_rating": [ - 1841 + 1842 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "survival_pct": [ - 3375 + 3371 ], "traded_death_pct": [ - 3375 + 3371 ], "util_efficiency": [ - 3375 + 3371 ], "utility_rating": [ - 1841 + 1842 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_stats_v": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "avg_crosshair_angle_deg": [ - 3375 + 3371 ], "avg_flash_duration": [ - 3375 + 3371 ], "avg_time_to_damage_s": [ - 3375 + 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": [ - 5458 + 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": [ - 268 + 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": [ - 3375 + 3371 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_aggregate": { "aggregate": [ - 3904 + 3900 ], "nodes": [ - 3900 + 3896 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3903 + 3899 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3916 + 3912 ], "distinct": [ - 5 + 6 ], "filter": [ - 3909 + 3905 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3907 + 3903 ], "count": [ - 40, + 41, { "columns": [ - 3916, + 3912, "[player_match_stats_v_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3911 + 3907 ], "min": [ - 3913 + 3909 ], "stddev": [ - 3917 + 3913 ], "stddev_pop": [ - 3919 + 3915 ], "stddev_samp": [ - 3921 + 3917 ], "sum": [ - 3925 + 3921 ], "var_pop": [ - 3927 + 3923 ], "var_samp": [ - 3929 + 3925 ], "variance": [ - 3931 + 3927 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3908 + 3904 ], "count": [ - 3377 + 3373 ], "max": [ - 3912 + 3908 ], "min": [ - 3914 + 3910 ], "stddev": [ - 3918 + 3914 ], "stddev_pop": [ - 3920 + 3916 ], "stddev_samp": [ - 3922 + 3918 ], "sum": [ - 3926 + 3922 ], "var_pop": [ - 3928 + 3924 ], "var_samp": [ - 3930 + 3926 ], "variance": [ - 3932 + 3928 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3910 + 3906 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_stats_v_avg_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "avg_crosshair_angle_deg": [ - 3377 + 3373 ], "avg_flash_duration": [ - 3377 + 3373 ], "avg_time_to_damage_s": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "utility_on_death": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_bool_exp": { "_and": [ - 3909 + 3905 ], "_not": [ - 3909 + 3905 ], "_or": [ - 3909 + 3905 ], "assists": [ - 41 + 42 ], "assists_ct": [ - 41 + 42 ], "assists_t": [ - 41 + 42 ], "avg_crosshair_angle_deg": [ - 3376 + 3372 ], "avg_flash_duration": [ - 3376 + 3372 ], "avg_time_to_damage_s": [ - 3376 + 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": [ - 5460 + 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": [ - 270 + 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": [ - 3376 + 3372 ], "wasted_magazine_shots": [ - 41 + 42 ], "zeus_kills": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_insert_input": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "avg_crosshair_angle_deg": [ - 3375 + 3371 ], "avg_flash_duration": [ - 3375 + 3371 ], "avg_time_to_damage_s": [ - 3375 + 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": [ - 5458 + 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": [ - 268 + 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": [ - 3375 + 3371 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_max_fields": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "avg_crosshair_angle_deg": [ - 3375 + 3371 ], "avg_flash_duration": [ - 3375 + 3371 ], "avg_time_to_damage_s": [ - 3375 + 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": [ - 5458 + 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": [ - 268 + 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": [ - 3375 + 3371 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_max_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "avg_crosshair_angle_deg": [ - 3377 + 3373 ], "avg_flash_duration": [ - 3377 + 3373 ], "avg_time_to_damage_s": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "utility_on_death": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_min_fields": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "avg_crosshair_angle_deg": [ - 3375 + 3371 ], "avg_flash_duration": [ - 3375 + 3371 ], "avg_time_to_damage_s": [ - 3375 + 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": [ - 5458 + 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": [ - 268 + 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": [ - 3375 + 3371 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_min_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "avg_crosshair_angle_deg": [ - 3377 + 3373 ], "avg_flash_duration": [ - 3377 + 3373 ], "avg_time_to_damage_s": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "utility_on_death": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "avg_crosshair_angle_deg": [ - 3377 + 3373 ], "avg_flash_duration": [ - 3377 + 3373 ], "avg_time_to_damage_s": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "utility_on_death": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_stats_v_stddev_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "avg_crosshair_angle_deg": [ - 3377 + 3373 ], "avg_flash_duration": [ - 3377 + 3373 ], "avg_time_to_damage_s": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "utility_on_death": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "avg_crosshair_angle_deg": [ - 3377 + 3373 ], "avg_flash_duration": [ - 3377 + 3373 ], "avg_time_to_damage_s": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "utility_on_death": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "avg_crosshair_angle_deg": [ - 3377 + 3373 ], "avg_flash_duration": [ - 3377 + 3373 ], "avg_time_to_damage_s": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "utility_on_death": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3924 + 3920 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_stream_cursor_value_input": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "avg_crosshair_angle_deg": [ - 3375 + 3371 ], "avg_flash_duration": [ - 3375 + 3371 ], "avg_time_to_damage_s": [ - 3375 + 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": [ - 5458 + 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": [ - 268 + 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": [ - 3375 + 3371 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_sum_fields": { "assists": [ - 40 + 41 ], "assists_ct": [ - 40 + 41 ], "assists_t": [ - 40 + 41 ], "avg_crosshair_angle_deg": [ - 3375 + 3371 ], "avg_flash_duration": [ - 3375 + 3371 ], "avg_time_to_damage_s": [ - 3375 + 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": [ - 268 + 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": [ - 3375 + 3371 ], "wasted_magazine_shots": [ - 40 + 41 ], "zeus_kills": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_match_stats_v_sum_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "avg_crosshair_angle_deg": [ - 3377 + 3373 ], "avg_flash_duration": [ - 3377 + 3373 ], "avg_time_to_damage_s": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "utility_on_death": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "avg_crosshair_angle_deg": [ - 3377 + 3373 ], "avg_flash_duration": [ - 3377 + 3373 ], "avg_time_to_damage_s": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "utility_on_death": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "avg_crosshair_angle_deg": [ - 3377 + 3373 ], "avg_flash_duration": [ - 3377 + 3373 ], "avg_time_to_damage_s": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "utility_on_death": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_match_stats_v_variance_order_by": { "assists": [ - 3377 + 3373 ], "assists_ct": [ - 3377 + 3373 ], "assists_t": [ - 3377 + 3373 ], "avg_crosshair_angle_deg": [ - 3377 + 3373 ], "avg_flash_duration": [ - 3377 + 3373 ], "avg_time_to_damage_s": [ - 3377 + 3373 ], "counter_strafe_eligible_shots": [ - 3377 + 3373 ], "counter_strafed_shots": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_ct": [ - 3377 + 3373 ], "damage_t": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "deaths_ct": [ - 3377 + 3373 ], "deaths_t": [ - 3377 + 3373 ], "decoy_throws": [ - 3377 + 3373 ], "enemies_flashed": [ - 3377 + 3373 ], "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "five_kill_rounds": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "flashes_thrown": [ - 3377 + 3373 ], "four_kill_rounds": [ - 3377 + 3373 ], "he_damage": [ - 3377 + 3373 ], "he_team_damage": [ - 3377 + 3373 ], "he_throws": [ - 3377 + 3373 ], "headshot_hits": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_at_spotted": [ - 3377 + 3373 ], "hs_kills": [ - 3377 + 3373 ], "hs_kills_ct": [ - 3377 + 3373 ], "hs_kills_t": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kills_ct": [ - 3377 + 3373 ], "kills_t": [ - 3377 + 3373 ], "knife_kills": [ - 3377 + 3373 ], "molotov_damage": [ - 3377 + 3373 ], "molotov_throws": [ - 3377 + 3373 ], "non_awp_hits": [ - 3377 + 3373 ], "on_target_frames": [ - 3377 + 3373 ], "rounds_ct": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "rounds_t": [ - 3377 + 3373 ], "shots_at_spotted": [ - 3377 + 3373 ], "shots_fired": [ - 3377 + 3373 ], "smoke_throws": [ - 3377 + 3373 ], "spotted_count": [ - 3377 + 3373 ], "spotted_with_damage_count": [ - 3377 + 3373 ], "spray_hits": [ - 3377 + 3373 ], "spray_shots": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_damage": [ - 3377 + 3373 ], "team_flashed": [ - 3377 + 3373 ], "three_kill_rounds": [ - 3377 + 3373 ], "total_engagement_frames": [ - 3377 + 3373 ], "trade_kill_attempts": [ - 3377 + 3373 ], "trade_kill_opportunities": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_attempts": [ - 3377 + 3373 ], "traded_death_opportunities": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "two_kill_rounds": [ - 3377 + 3373 ], "unused_utility_value": [ - 3377 + 3373 ], "utility_on_death": [ - 3377 + 3373 ], "wasted_magazine_shots": [ - 3377 + 3373 ], "zeus_kills": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_objectives": { "deleted_at": [ - 4958 + 4954 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4335 + 4331 ], "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "type": [ - 1222 + 1223 ], "__typename": [ - 83 + 84 ] }, "player_objectives_aggregate": { "aggregate": [ - 3937 + 3933 ], "nodes": [ - 3933 + 3929 ], "__typename": [ - 83 + 84 ] }, "player_objectives_aggregate_bool_exp": { "count": [ - 3936 + 3932 ], "__typename": [ - 83 + 84 ] }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3954 + 3950 ], "distinct": [ - 5 + 6 ], "filter": [ - 3942 + 3938 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_objectives_aggregate_fields": { "avg": [ - 3940 + 3936 ], "count": [ - 40, + 41, { "columns": [ - 3954, + 3950, "[player_objectives_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3946 + 3942 ], "min": [ - 3948 + 3944 ], "stddev": [ - 3956 + 3952 ], "stddev_pop": [ - 3958 + 3954 ], "stddev_samp": [ - 3960 + 3956 ], "sum": [ - 3964 + 3960 ], "var_pop": [ - 3968 + 3964 ], "var_samp": [ - 3970 + 3966 ], "variance": [ - 3972 + 3968 ], "__typename": [ - 83 + 84 ] }, "player_objectives_aggregate_order_by": { "avg": [ - 3941 + 3937 ], "count": [ - 3377 + 3373 ], "max": [ - 3947 + 3943 ], "min": [ - 3949 + 3945 ], "stddev": [ - 3957 + 3953 ], "stddev_pop": [ - 3959 + 3955 ], "stddev_samp": [ - 3961 + 3957 ], "sum": [ - 3965 + 3961 ], "var_pop": [ - 3969 + 3965 ], "var_samp": [ - 3971 + 3967 ], "variance": [ - 3973 + 3969 ], "__typename": [ - 83 + 84 ] }, "player_objectives_arr_rel_insert_input": { "data": [ - 3945 + 3941 ], "on_conflict": [ - 3951 + 3947 ], "__typename": [ - 83 + 84 ] }, "player_objectives_avg_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_objectives_avg_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_objectives_bool_exp": { "_and": [ - 3942 + 3938 ], "_not": [ - 3942 + 3938 ], "_or": [ - 3942 + 3938 ], "deleted_at": [ - 4959 + 4955 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "player": [ - 4339 + 4335 ], "player_steam_id": [ - 270 + 271 ], "round": [ - 41 + 42 ], "time": [ - 4959 + 4955 ], "type": [ - 1223 + 1224 ], "__typename": [ - 83 + 84 ] }, "player_objectives_constraint": {}, "player_objectives_inc_input": { "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_objectives_insert_input": { "deleted_at": [ - 4958 + 4954 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4346 + 4342 ], "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "type": [ - 1222 + 1223 ], "__typename": [ - 83 + 84 ] }, "player_objectives_max_fields": { "deleted_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_objectives_max_order_by": { "deleted_at": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_objectives_min_fields": { "deleted_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_objectives_min_order_by": { "deleted_at": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_objectives_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3933 + 3929 ], "__typename": [ - 83 + 84 ] }, "player_objectives_on_conflict": { "constraint": [ - 3943 + 3939 ], "update_columns": [ - 3966 + 3962 ], "where": [ - 3942 + 3938 ], "__typename": [ - 83 + 84 ] }, "player_objectives_order_by": { "deleted_at": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_objectives_pk_columns_input": { "match_map_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "type": [ - 1222 + 1223 ], "__typename": [ - 83 + 84 ] }, "player_objectives_stddev_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_objectives_stddev_pop_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_objectives_stddev_samp_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3963 + 3959 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "type": [ - 1222 + 1223 ], "__typename": [ - 83 + 84 ] }, "player_objectives_sum_fields": { "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_objectives_sum_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3944 + 3940 ], "_set": [ - 3955 + 3951 ], "where": [ - 3942 + 3938 ], "__typename": [ - 83 + 84 ] }, "player_objectives_var_pop_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_objectives_var_samp_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_objectives_variance_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_objectives_variance_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_performance_v": { "accuracy_score": [ - 1841 + 1842 ], "aim_goal": [ - 1841 + 1842 ], "aim_rating": [ - 1841 + 1842 ], "band": [ - 40 + 41 ], "band_sample": [ - 268 + 269 ], "blind_score": [ - 1841 + 1842 ], "counter_strafe_score": [ - 1841 + 1842 ], "crosshair_score": [ - 1841 + 1842 ], "flash_assists_score": [ - 1841 + 1842 ], "hs_score": [ - 1841 + 1842 ], "kast_score": [ - 1841 + 1842 ], "maps": [ - 40 + 41 ], "positioning_goal": [ - 1841 + 1842 ], "positioning_rating": [ - 1841 + 1842 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "spotted_score": [ - 1841 + 1842 ], "steam_id": [ - 268 + 269 ], "survival_score": [ - 1841 + 1842 ], "traded_score": [ - 1841 + 1842 ], "ttd_score": [ - 1841 + 1842 ], "util_eff_score": [ - 1841 + 1842 ], "utility_goal": [ - 1841 + 1842 ], "utility_rating": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_performance_v_aggregate": { "aggregate": [ - 3976 + 3972 ], "nodes": [ - 3974 + 3970 ], "__typename": [ - 83 + 84 ] }, "player_performance_v_aggregate_fields": { "avg": [ - 3977 + 3973 ], "count": [ - 40, + 41, { "columns": [ - 3982, + 3978, "[player_performance_v_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 3979 + 3975 ], "min": [ - 3980 + 3976 ], "stddev": [ - 3983 + 3979 ], "stddev_pop": [ - 3984 + 3980 ], "stddev_samp": [ - 3985 + 3981 ], "sum": [ - 3988 + 3984 ], "var_pop": [ - 3989 + 3985 ], "var_samp": [ - 3990 + 3986 ], "variance": [ - 3991 + 3987 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_performance_v_bool_exp": { "_and": [ - 3978 + 3974 ], "_not": [ - 3978 + 3974 ], "_or": [ - 3978 + 3974 ], "accuracy_score": [ - 1842 + 1843 ], "aim_goal": [ - 1842 + 1843 ], "aim_rating": [ - 1842 + 1843 ], "band": [ - 41 + 42 ], "band_sample": [ - 270 + 271 ], "blind_score": [ - 1842 + 1843 ], "counter_strafe_score": [ - 1842 + 1843 ], "crosshair_score": [ - 1842 + 1843 ], "flash_assists_score": [ - 1842 + 1843 ], "hs_score": [ - 1842 + 1843 ], "kast_score": [ - 1842 + 1843 ], "maps": [ - 41 + 42 ], "positioning_goal": [ - 1842 + 1843 ], "positioning_rating": [ - 1842 + 1843 ], "premier_rank": [ - 41 + 42 ], "rounds": [ - 41 + 42 ], "spotted_score": [ - 1842 + 1843 ], "steam_id": [ - 270 + 271 ], "survival_score": [ - 1842 + 1843 ], "traded_score": [ - 1842 + 1843 ], "ttd_score": [ - 1842 + 1843 ], "util_eff_score": [ - 1842 + 1843 ], "utility_goal": [ - 1842 + 1843 ], "utility_rating": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "player_performance_v_max_fields": { "accuracy_score": [ - 1841 + 1842 ], "aim_goal": [ - 1841 + 1842 ], "aim_rating": [ - 1841 + 1842 ], "band": [ - 40 + 41 ], "band_sample": [ - 268 + 269 ], "blind_score": [ - 1841 + 1842 ], "counter_strafe_score": [ - 1841 + 1842 ], "crosshair_score": [ - 1841 + 1842 ], "flash_assists_score": [ - 1841 + 1842 ], "hs_score": [ - 1841 + 1842 ], "kast_score": [ - 1841 + 1842 ], "maps": [ - 40 + 41 ], "positioning_goal": [ - 1841 + 1842 ], "positioning_rating": [ - 1841 + 1842 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "spotted_score": [ - 1841 + 1842 ], "steam_id": [ - 268 + 269 ], "survival_score": [ - 1841 + 1842 ], "traded_score": [ - 1841 + 1842 ], "ttd_score": [ - 1841 + 1842 ], "util_eff_score": [ - 1841 + 1842 ], "utility_goal": [ - 1841 + 1842 ], "utility_rating": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_performance_v_min_fields": { "accuracy_score": [ - 1841 + 1842 ], "aim_goal": [ - 1841 + 1842 ], "aim_rating": [ - 1841 + 1842 ], "band": [ - 40 + 41 ], "band_sample": [ - 268 + 269 ], "blind_score": [ - 1841 + 1842 ], "counter_strafe_score": [ - 1841 + 1842 ], "crosshair_score": [ - 1841 + 1842 ], "flash_assists_score": [ - 1841 + 1842 ], "hs_score": [ - 1841 + 1842 ], "kast_score": [ - 1841 + 1842 ], "maps": [ - 40 + 41 ], "positioning_goal": [ - 1841 + 1842 ], "positioning_rating": [ - 1841 + 1842 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "spotted_score": [ - 1841 + 1842 ], "steam_id": [ - 268 + 269 ], "survival_score": [ - 1841 + 1842 ], "traded_score": [ - 1841 + 1842 ], "ttd_score": [ - 1841 + 1842 ], "util_eff_score": [ - 1841 + 1842 ], "utility_goal": [ - 1841 + 1842 ], "utility_rating": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_performance_v_order_by": { "accuracy_score": [ - 3377 + 3373 ], "aim_goal": [ - 3377 + 3373 ], "aim_rating": [ - 3377 + 3373 ], "band": [ - 3377 + 3373 ], "band_sample": [ - 3377 + 3373 ], "blind_score": [ - 3377 + 3373 ], "counter_strafe_score": [ - 3377 + 3373 ], "crosshair_score": [ - 3377 + 3373 ], "flash_assists_score": [ - 3377 + 3373 ], "hs_score": [ - 3377 + 3373 ], "kast_score": [ - 3377 + 3373 ], "maps": [ - 3377 + 3373 ], "positioning_goal": [ - 3377 + 3373 ], "positioning_rating": [ - 3377 + 3373 ], "premier_rank": [ - 3377 + 3373 ], "rounds": [ - 3377 + 3373 ], "spotted_score": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "survival_score": [ - 3377 + 3373 ], "traded_score": [ - 3377 + 3373 ], "ttd_score": [ - 3377 + 3373 ], "util_eff_score": [ - 3377 + 3373 ], "utility_goal": [ - 3377 + 3373 ], "utility_rating": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3987 + 3983 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1841 + 1842 ], "aim_goal": [ - 1841 + 1842 ], "aim_rating": [ - 1841 + 1842 ], "band": [ - 40 + 41 ], "band_sample": [ - 268 + 269 ], "blind_score": [ - 1841 + 1842 ], "counter_strafe_score": [ - 1841 + 1842 ], "crosshair_score": [ - 1841 + 1842 ], "flash_assists_score": [ - 1841 + 1842 ], "hs_score": [ - 1841 + 1842 ], "kast_score": [ - 1841 + 1842 ], "maps": [ - 40 + 41 ], "positioning_goal": [ - 1841 + 1842 ], "positioning_rating": [ - 1841 + 1842 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "spotted_score": [ - 1841 + 1842 ], "steam_id": [ - 268 + 269 ], "survival_score": [ - 1841 + 1842 ], "traded_score": [ - 1841 + 1842 ], "ttd_score": [ - 1841 + 1842 ], "util_eff_score": [ - 1841 + 1842 ], "utility_goal": [ - 1841 + 1842 ], "utility_rating": [ - 1841 + 1842 ], "__typename": [ - 83 + 84 ] }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1841 + 1842 ], "aim_goal": [ - 1841 + 1842 ], "aim_rating": [ - 1841 + 1842 ], "band": [ - 40 + 41 ], "band_sample": [ - 268 + 269 ], "blind_score": [ - 1841 + 1842 ], "counter_strafe_score": [ - 1841 + 1842 ], "crosshair_score": [ - 1841 + 1842 ], "flash_assists_score": [ - 1841 + 1842 ], "hs_score": [ - 1841 + 1842 ], "kast_score": [ - 1841 + 1842 ], "maps": [ - 40 + 41 ], "positioning_goal": [ - 1841 + 1842 ], "positioning_rating": [ - 1841 + 1842 ], "premier_rank": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "spotted_score": [ - 1841 + 1842 ], "steam_id": [ - 268 + 269 ], "survival_score": [ - 1841 + 1842 ], "traded_score": [ - 1841 + 1842 ], "ttd_score": [ - 1841 + 1842 ], "util_eff_score": [ - 1841 + 1842 ], "utility_goal": [ - 1841 + 1842 ], "utility_rating": [ - 1841 + 1842 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "player_premier_rank_history": { "id": [ - 5458 + 5454 ], "map": [ - 2653 + 2649 ], "map_id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "observed_at": [ - 4958 + 4954 ], "player": [ - 4335 + 4331 ], "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3996 + 3992 ], "nodes": [ - 3992 + 3988 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3995 + 3991 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 4013 + 4009 ], "distinct": [ - 5 + 6 ], "filter": [ - 4001 + 3997 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3999 + 3995 ], "count": [ - 40, + 41, { "columns": [ - 4013, + 4009, "[player_premier_rank_history_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4005 + 4001 ], "min": [ - 4007 + 4003 ], "stddev": [ - 4015 + 4011 ], "stddev_pop": [ - 4017 + 4013 ], "stddev_samp": [ - 4019 + 4015 ], "sum": [ - 4023 + 4019 ], "var_pop": [ - 4027 + 4023 ], "var_samp": [ - 4029 + 4025 ], "variance": [ - 4031 + 4027 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 4000 + 3996 ], "count": [ - 3377 + 3373 ], "max": [ - 4006 + 4002 ], "min": [ - 4008 + 4004 ], "stddev": [ - 4016 + 4012 ], "stddev_pop": [ - 4018 + 4014 ], "stddev_samp": [ - 4020 + 4016 ], "sum": [ - 4024 + 4020 ], "var_pop": [ - 4028 + 4024 ], "var_samp": [ - 4030 + 4026 ], "variance": [ - 4032 + 4028 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 4004 + 4000 ], "on_conflict": [ - 4010 + 4006 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_avg_fields": { "previous_rank": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rank_type": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rank_type": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_bool_exp": { "_and": [ - 4001 + 3997 ], "_not": [ - 4001 + 3997 ], "_or": [ - 4001 + 3997 ], "id": [ - 5460 + 5456 ], "map": [ - 2662 + 2658 ], "map_id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "observed_at": [ - 4959 + 4955 ], "player": [ - 4339 + 4335 ], "previous_rank": [ - 41 + 42 ], "rank": [ - 41 + 42 ], "rank_type": [ - 41 + 42 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 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": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_insert_input": { "id": [ - 5458 + 5454 ], "map": [ - 2670 + 2666 ], "map_id": [ - 5458 + 5454 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "observed_at": [ - 4958 + 4954 ], "player": [ - 4346 + 4342 ], "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_max_fields": { "id": [ - 5458 + 5454 ], "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "observed_at": [ - 4958 + 4954 ], "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_max_order_by": { "id": [ - 3377 + 3373 ], "map_id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "observed_at": [ - 3377 + 3373 ], "previous_rank": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rank_type": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_min_fields": { "id": [ - 5458 + 5454 ], "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "observed_at": [ - 4958 + 4954 ], "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_min_order_by": { "id": [ - 3377 + 3373 ], "map_id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "observed_at": [ - 3377 + 3373 ], "previous_rank": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rank_type": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 3992 + 3988 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_on_conflict": { "constraint": [ - 4002 + 3998 ], "update_columns": [ - 4025 + 4021 ], "where": [ - 4001 + 3997 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_order_by": { "id": [ - 3377 + 3373 ], "map": [ - 2672 + 2668 ], "map_id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "observed_at": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "previous_rank": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rank_type": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 5458 + 5454 ], "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "observed_at": [ - 4958 + 4954 ], "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_stddev_fields": { "previous_rank": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rank_type": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rank_type": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_stddev_pop_fields": { "previous_rank": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rank_type": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rank_type": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_stddev_samp_fields": { "previous_rank": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rank_type": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rank_type": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 4022 + 4018 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 5458 + 5454 ], "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "observed_at": [ - 4958 + 4954 ], "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_sum_fields": { "previous_rank": [ - 40 + 41 ], "rank": [ - 40 + 41 ], "rank_type": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rank_type": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 4003 + 3999 ], "_set": [ - 4014 + 4010 ], "where": [ - 4001 + 3997 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_var_pop_fields": { "previous_rank": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rank_type": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rank_type": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_var_samp_fields": { "previous_rank": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rank_type": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rank_type": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_variance_fields": { "previous_rank": [ - 31 + 32 ], "rank": [ - 31 + 32 ], "rank_type": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rank_type": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_sanctions": { "created_at": [ - 4958 + 4954 ], "deleted_at": [ - 4958 + 4954 ], "e_sanction_type": [ - 1297 + 1298 ], "id": [ - 5458 + 5454 ], "player": [ - 4335 + 4331 ], "player_steam_id": [ - 268 + 269 ], "reason": [ - 83 + 84 ], "remove_sanction_date": [ - 4958 + 4954 ], "sanctioned_by": [ - 4335 + 4331 ], "sanctioned_by_steam_id": [ - 268 + 269 ], "type": [ - 1302 + 1303 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_aggregate": { "aggregate": [ - 4037 + 4033 ], "nodes": [ - 4033 + 4029 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_aggregate_bool_exp": { "count": [ - 4036 + 4032 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 4054 + 4050 ], "distinct": [ - 5 + 6 ], "filter": [ - 4042 + 4038 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_aggregate_fields": { "avg": [ - 4040 + 4036 ], "count": [ - 40, + 41, { "columns": [ - 4054, + 4050, "[player_sanctions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4046 + 4042 ], "min": [ - 4048 + 4044 ], "stddev": [ - 4056 + 4052 ], "stddev_pop": [ - 4058 + 4054 ], "stddev_samp": [ - 4060 + 4056 ], "sum": [ - 4064 + 4060 ], "var_pop": [ - 4068 + 4064 ], "var_samp": [ - 4070 + 4066 ], "variance": [ - 4072 + 4068 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_aggregate_order_by": { "avg": [ - 4041 + 4037 ], "count": [ - 3377 + 3373 ], "max": [ - 4047 + 4043 ], "min": [ - 4049 + 4045 ], "stddev": [ - 4057 + 4053 ], "stddev_pop": [ - 4059 + 4055 ], "stddev_samp": [ - 4061 + 4057 ], "sum": [ - 4065 + 4061 ], "var_pop": [ - 4069 + 4065 ], "var_samp": [ - 4071 + 4067 ], "variance": [ - 4073 + 4069 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_arr_rel_insert_input": { "data": [ - 4045 + 4041 ], "on_conflict": [ - 4051 + 4047 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_avg_fields": { "player_steam_id": [ - 31 + 32 ], "sanctioned_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 3377 + 3373 ], "sanctioned_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_bool_exp": { "_and": [ - 4042 + 4038 ], "_not": [ - 4042 + 4038 ], "_or": [ - 4042 + 4038 ], "created_at": [ - 4959 + 4955 ], "deleted_at": [ - 4959 + 4955 ], "e_sanction_type": [ - 1300 + 1301 ], "id": [ - 5460 + 5456 ], "player": [ - 4339 + 4335 ], "player_steam_id": [ - 270 + 271 ], "reason": [ - 85 + 86 ], "remove_sanction_date": [ - 4959 + 4955 ], "sanctioned_by": [ - 4339 + 4335 ], "sanctioned_by_steam_id": [ - 270 + 271 ], "type": [ - 1303 + 1304 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_constraint": {}, "player_sanctions_inc_input": { "player_steam_id": [ - 268 + 269 ], "sanctioned_by_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_insert_input": { "created_at": [ - 4958 + 4954 ], "deleted_at": [ - 4958 + 4954 ], "e_sanction_type": [ - 1308 + 1309 ], "id": [ - 5458 + 5454 ], "player": [ - 4346 + 4342 ], "player_steam_id": [ - 268 + 269 ], "reason": [ - 83 + 84 ], "remove_sanction_date": [ - 4958 + 4954 ], "sanctioned_by": [ - 4346 + 4342 ], "sanctioned_by_steam_id": [ - 268 + 269 ], "type": [ - 1302 + 1303 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_max_fields": { "created_at": [ - 4958 + 4954 ], "deleted_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "reason": [ - 83 + 84 ], "remove_sanction_date": [ - 4958 + 4954 ], "sanctioned_by_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_max_order_by": { "created_at": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "reason": [ - 3377 + 3373 ], "remove_sanction_date": [ - 3377 + 3373 ], "sanctioned_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_min_fields": { "created_at": [ - 4958 + 4954 ], "deleted_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "reason": [ - 83 + 84 ], "remove_sanction_date": [ - 4958 + 4954 ], "sanctioned_by_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_min_order_by": { "created_at": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "reason": [ - 3377 + 3373 ], "remove_sanction_date": [ - 3377 + 3373 ], "sanctioned_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4033 + 4029 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_on_conflict": { "constraint": [ - 4043 + 4039 ], "update_columns": [ - 4066 + 4062 ], "where": [ - 4042 + 4038 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_order_by": { "created_at": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "e_sanction_type": [ - 1310 + 1311 ], "id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "player_steam_id": [ - 3377 + 3373 ], "reason": [ - 3377 + 3373 ], "remove_sanction_date": [ - 3377 + 3373 ], "sanctioned_by": [ - 4348 + 4344 ], "sanctioned_by_steam_id": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_pk_columns_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4958 + 4954 ], "deleted_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "reason": [ - 83 + 84 ], "remove_sanction_date": [ - 4958 + 4954 ], "sanctioned_by_steam_id": [ - 268 + 269 ], "type": [ - 1302 + 1303 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_stddev_fields": { "player_steam_id": [ - 31 + 32 ], "sanctioned_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 3377 + 3373 ], "sanctioned_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_stddev_pop_fields": { "player_steam_id": [ - 31 + 32 ], "sanctioned_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 3377 + 3373 ], "sanctioned_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_stddev_samp_fields": { "player_steam_id": [ - 31 + 32 ], "sanctioned_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 3377 + 3373 ], "sanctioned_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 4063 + 4059 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "deleted_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "reason": [ - 83 + 84 ], "remove_sanction_date": [ - 4958 + 4954 ], "sanctioned_by_steam_id": [ - 268 + 269 ], "type": [ - 1302 + 1303 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_sum_fields": { "player_steam_id": [ - 268 + 269 ], "sanctioned_by_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 3377 + 3373 ], "sanctioned_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 4044 + 4040 ], "_set": [ - 4055 + 4051 ], "where": [ - 4042 + 4038 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_var_pop_fields": { "player_steam_id": [ - 31 + 32 ], "sanctioned_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 3377 + 3373 ], "sanctioned_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_var_samp_fields": { "player_steam_id": [ - 31 + 32 ], "sanctioned_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 3377 + 3373 ], "sanctioned_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_variance_fields": { "player_steam_id": [ - 31 + 32 ], "sanctioned_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 3377 + 3373 ], "sanctioned_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_season_stats": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player": [ - 4335 + 4331 ], "player_steam_id": [ - 268 + 269 ], "season": [ - 4421 + 4417 ], "season_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate": { "aggregate": [ - 4088 + 4084 ], "nodes": [ - 4074 + 4070 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 4077 + 4073 ], "corr": [ - 4078 + 4074 ], "count": [ - 4080 + 4076 ], "covar_samp": [ - 4081 + 4077 ], "max": [ - 4083 + 4079 ], "min": [ - 4084 + 4080 ], "stddev_samp": [ - 4085 + 4081 ], "sum": [ - 4086 + 4082 ], "var_samp": [ - 4087 + 4083 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 4106 + 4102 ], "distinct": [ - 5 + 6 ], "filter": [ - 4093 + 4089 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 4079 + 4075 ], "distinct": [ - 5 + 6 ], "filter": [ - 4093 + 4089 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4107 + 4103 ], "Y": [ - 4107 + 4103 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 4105 + 4101 ], "distinct": [ - 5 + 6 ], "filter": [ - 4093 + 4089 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4082 + 4078 ], "distinct": [ - 5 + 6 ], "filter": [ - 4093 + 4089 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4108 + 4104 ], "Y": [ - 4108 + 4104 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 4109 + 4105 ], "distinct": [ - 5 + 6 ], "filter": [ - 4093 + 4089 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 4110 + 4106 ], "distinct": [ - 5 + 6 ], "filter": [ - 4093 + 4089 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4111 + 4107 ], "distinct": [ - 5 + 6 ], "filter": [ - 4093 + 4089 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 4112 + 4108 ], "distinct": [ - 5 + 6 ], "filter": [ - 4093 + 4089 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4113 + 4109 ], "distinct": [ - 5 + 6 ], "filter": [ - 4093 + 4089 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate_fields": { "avg": [ - 4091 + 4087 ], "count": [ - 40, + 41, { "columns": [ - 4105, + 4101, "[player_season_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4097 + 4093 ], "min": [ - 4099 + 4095 ], "stddev": [ - 4115 + 4111 ], "stddev_pop": [ - 4117 + 4113 ], "stddev_samp": [ - 4119 + 4115 ], "sum": [ - 4123 + 4119 ], "var_pop": [ - 4127 + 4123 ], "var_samp": [ - 4129 + 4125 ], "variance": [ - 4131 + 4127 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_aggregate_order_by": { "avg": [ - 4092 + 4088 ], "count": [ - 3377 + 3373 ], "max": [ - 4098 + 4094 ], "min": [ - 4100 + 4096 ], "stddev": [ - 4116 + 4112 ], "stddev_pop": [ - 4118 + 4114 ], "stddev_samp": [ - 4120 + 4116 ], "sum": [ - 4124 + 4120 ], "var_pop": [ - 4128 + 4124 ], "var_samp": [ - 4130 + 4126 ], "variance": [ - 4132 + 4128 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_arr_rel_insert_input": { "data": [ - 4096 + 4092 ], "on_conflict": [ - 4102 + 4098 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_season_stats_avg_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_bool_exp": { "_and": [ - 4093 + 4089 ], "_not": [ - 4093 + 4089 ], "_or": [ - 4093 + 4089 ], "assists": [ - 270 + 271 ], "deaths": [ - 270 + 271 ], "headshot_percentage": [ - 1842 + 1843 ], "headshots": [ - 270 + 271 ], "kills": [ - 270 + 271 ], "player": [ - 4339 + 4335 ], "player_steam_id": [ - 270 + 271 ], "season": [ - 4425 + 4421 ], "season_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_constraint": {}, "player_season_stats_inc_input": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_insert_input": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player": [ - 4346 + 4342 ], "player_steam_id": [ - 268 + 269 ], "season": [ - 4432 + 4428 ], "season_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_max_fields": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "season_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_max_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "season_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_min_fields": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "season_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_min_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "season_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4074 + 4070 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_on_conflict": { "constraint": [ - 4094 + 4090 ], "update_columns": [ - 4125 + 4121 ], "where": [ - 4093 + 4089 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "player_steam_id": [ - 3377 + 3373 ], "season": [ - 4434 + 4430 ], "season_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_pk_columns_input": { "player_steam_id": [ - 268 + 269 ], "season_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_select_column": {}, @@ -92364,10873 +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": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "season_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_season_stats_stddev_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 4122 + 4118 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_stream_cursor_value_input": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "season_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_sum_fields": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_sum_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 4095 + 4091 ], "_set": [ - 4114 + 4110 ], "where": [ - 4093 + 4089 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_season_stats_var_pop_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_season_stats_var_samp_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_season_stats_variance_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_stats": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player": [ - 4335 + 4331 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_stats_aggregate": { "aggregate": [ - 4135 + 4131 ], "nodes": [ - 4133 + 4129 ], "__typename": [ - 83 + 84 ] }, "player_stats_aggregate_fields": { "avg": [ - 4136 + 4132 ], "count": [ - 40, + 41, { "columns": [ - 4148, + 4144, "[player_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4141 + 4137 ], "min": [ - 4142 + 4138 ], "stddev": [ - 4150 + 4146 ], "stddev_pop": [ - 4151 + 4147 ], "stddev_samp": [ - 4152 + 4148 ], "sum": [ - 4155 + 4151 ], "var_pop": [ - 4158 + 4154 ], "var_samp": [ - 4159 + 4155 ], "variance": [ - 4160 + 4156 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_stats_bool_exp": { "_and": [ - 4137 + 4133 ], "_not": [ - 4137 + 4133 ], "_or": [ - 4137 + 4133 ], "assists": [ - 270 + 271 ], "deaths": [ - 270 + 271 ], "headshot_percentage": [ - 1842 + 1843 ], "headshots": [ - 270 + 271 ], "kills": [ - 270 + 271 ], "player": [ - 4339 + 4335 ], "player_steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "player_stats_constraint": {}, "player_stats_inc_input": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_stats_insert_input": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player": [ - 4346 + 4342 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_stats_max_fields": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_stats_min_fields": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_stats_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4133 + 4129 ], "__typename": [ - 83 + 84 ] }, "player_stats_obj_rel_insert_input": { "data": [ - 4140 + 4136 ], "on_conflict": [ - 4145 + 4141 ], "__typename": [ - 83 + 84 ] }, "player_stats_on_conflict": { "constraint": [ - 4138 + 4134 ], "update_columns": [ - 4156 + 4152 ], "where": [ - 4137 + 4133 ], "__typename": [ - 83 + 84 ] }, "player_stats_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_stats_pk_columns_input": { "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_stats_select_column": {}, "player_stats_set_input": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "player_stats_stream_cursor_input": { "initial_value": [ - 4154 + 4150 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_stats_stream_cursor_value_input": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_stats_sum_fields": { "assists": [ - 268 + 269 ], "deaths": [ - 268 + 269 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 4139 + 4135 ], "_set": [ - 4149 + 4145 ], "where": [ - 4137 + 4133 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 5458 + 5454 ], "bot_steamid64": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "friended_at": [ - 4958 + 4954 ], "last_presence_state": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "player": [ - 4335 + 4331 ], "status": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 4163 + 4159 ], "nodes": [ - 4161 + 4157 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 4165 + 4161 ], "count": [ - 40, + 41, { "columns": [ - 4180, + 4176, "[player_steam_bot_friend_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4173 + 4169 ], "min": [ - 4174 + 4170 ], "stddev": [ - 4182 + 4178 ], "stddev_pop": [ - 4183 + 4179 ], "stddev_samp": [ - 4184 + 4180 ], "sum": [ - 4187 + 4183 ], "var_pop": [ - 4190 + 4186 ], "var_samp": [ - 4191 + 4187 ], "variance": [ - 4192 + 4188 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_avg_fields": { "bot_steamid64": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_bool_exp": { "_and": [ - 4166 + 4162 ], "_not": [ - 4166 + 4162 ], "_or": [ - 4166 + 4162 ], "bot_steam_account_id": [ - 5460 + 5456 ], "bot_steamid64": [ - 270 + 271 ], "created_at": [ - 4959 + 4955 ], "friended_at": [ - 4959 + 4955 ], "last_presence_state": [ - 2193 + 2189 ], "player": [ - 4339 + 4335 ], "status": [ - 85 + 86 ], "steam_id": [ - 270 + 271 ], "updated_at": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_constraint": {}, "player_steam_bot_friend_delete_at_path_input": { "last_presence_state": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_delete_elem_input": { "last_presence_state": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_delete_key_input": { "last_presence_state": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_inc_input": { "bot_steamid64": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 5458 + 5454 ], "bot_steamid64": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "friended_at": [ - 4958 + 4954 ], "last_presence_state": [ - 2191 + 2187 ], "player": [ - 4346 + 4342 ], "status": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 5458 + 5454 ], "bot_steamid64": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "friended_at": [ - 4958 + 4954 ], "status": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 5458 + 5454 ], "bot_steamid64": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "friended_at": [ - 4958 + 4954 ], "status": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4161 + 4157 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 4167 + 4163 ], "update_columns": [ - 4188 + 4184 ], "where": [ - 4166 + 4162 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 3377 + 3373 ], "bot_steamid64": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "friended_at": [ - 3377 + 3373 ], "last_presence_state": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "status": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_pk_columns_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 5458 + 5454 ], "bot_steamid64": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "friended_at": [ - 4958 + 4954 ], "last_presence_state": [ - 2191 + 2187 ], "status": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_stddev_fields": { "bot_steamid64": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_stddev_pop_fields": { "bot_steamid64": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_stddev_samp_fields": { "bot_steamid64": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 4186 + 4182 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 5458 + 5454 ], "bot_steamid64": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "friended_at": [ - 4958 + 4954 ], "last_presence_state": [ - 2191 + 2187 ], "status": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_sum_fields": { "bot_steamid64": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 4164 + 4160 ], "_delete_at_path": [ - 4168 + 4164 ], "_delete_elem": [ - 4169 + 4165 ], "_delete_key": [ - 4170 + 4166 ], "_inc": [ - 4171 + 4167 ], "_prepend": [ - 4179 + 4175 ], "_set": [ - 4181 + 4177 ], "where": [ - 4166 + 4162 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_var_pop_fields": { "bot_steamid64": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_var_samp_fields": { "bot_steamid64": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_steam_bot_friend_variance_fields": { "bot_steamid64": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth": { "auth_code": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "last_error": [ - 83 + 84 ], "last_known_share_code": [ - 83 + 84 ], "last_polled_at": [ - 4958 + 4954 ], "player": [ - 4335 + 4331 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_aggregate": { "aggregate": [ - 4195 + 4191 ], "nodes": [ - 4193 + 4189 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 4196 + 4192 ], "count": [ - 40, + 41, { "columns": [ - 4207, + 4203, "[player_steam_match_auth_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4201 + 4197 ], "min": [ - 4202 + 4198 ], "stddev": [ - 4209 + 4205 ], "stddev_pop": [ - 4210 + 4206 ], "stddev_samp": [ - 4211 + 4207 ], "sum": [ - 4214 + 4210 ], "var_pop": [ - 4217 + 4213 ], "var_samp": [ - 4218 + 4214 ], "variance": [ - 4219 + 4215 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_bool_exp": { "_and": [ - 4197 + 4193 ], "_not": [ - 4197 + 4193 ], "_or": [ - 4197 + 4193 ], "auth_code": [ - 85 + 86 ], "created_at": [ - 4959 + 4955 ], "last_error": [ - 85 + 86 ], "last_known_share_code": [ - 85 + 86 ], "last_polled_at": [ - 4959 + 4955 ], "player": [ - 4339 + 4335 ], "steam_id": [ - 270 + 271 ], "updated_at": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_constraint": {}, "player_steam_match_auth_inc_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_insert_input": { "auth_code": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "last_error": [ - 83 + 84 ], "last_known_share_code": [ - 83 + 84 ], "last_polled_at": [ - 4958 + 4954 ], "player": [ - 4346 + 4342 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_max_fields": { "auth_code": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "last_error": [ - 83 + 84 ], "last_known_share_code": [ - 83 + 84 ], "last_polled_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_min_fields": { "auth_code": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "last_error": [ - 83 + 84 ], "last_known_share_code": [ - 83 + 84 ], "last_polled_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4193 + 4189 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_on_conflict": { "constraint": [ - 4198 + 4194 ], "update_columns": [ - 4215 + 4211 ], "where": [ - 4197 + 4193 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_order_by": { "auth_code": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "last_error": [ - 3377 + 3373 ], "last_known_share_code": [ - 3377 + 3373 ], "last_polled_at": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "steam_id": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_pk_columns_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_select_column": {}, "player_steam_match_auth_set_input": { "auth_code": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "last_error": [ - 83 + 84 ], "last_known_share_code": [ - 83 + 84 ], "last_polled_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 4213 + 4209 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_stream_cursor_value_input": { "auth_code": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "last_error": [ - 83 + 84 ], "last_known_share_code": [ - 83 + 84 ], "last_polled_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 4199 + 4195 ], "_set": [ - 4208 + 4204 ], "where": [ - 4197 + 4193 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_steam_match_auth_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility": { "deleted_at": [ - 4958 + 4954 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4335 + 4331 ], "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_aggregate": { "aggregate": [ - 4224 + 4220 ], "nodes": [ - 4220 + 4216 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 4223 + 4219 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 4241 + 4237 ], "distinct": [ - 5 + 6 ], "filter": [ - 4229 + 4225 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_aggregate_fields": { "avg": [ - 4227 + 4223 ], "count": [ - 40, + 41, { "columns": [ - 4241, + 4237, "[player_unused_utility_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4233 + 4229 ], "min": [ - 4235 + 4231 ], "stddev": [ - 4243 + 4239 ], "stddev_pop": [ - 4245 + 4241 ], "stddev_samp": [ - 4247 + 4243 ], "sum": [ - 4251 + 4247 ], "var_pop": [ - 4255 + 4251 ], "var_samp": [ - 4257 + 4253 ], "variance": [ - 4259 + 4255 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_aggregate_order_by": { "avg": [ - 4228 + 4224 ], "count": [ - 3377 + 3373 ], "max": [ - 4234 + 4230 ], "min": [ - 4236 + 4232 ], "stddev": [ - 4244 + 4240 ], "stddev_pop": [ - 4246 + 4242 ], "stddev_samp": [ - 4248 + 4244 ], "sum": [ - 4252 + 4248 ], "var_pop": [ - 4256 + 4252 ], "var_samp": [ - 4258 + 4254 ], "variance": [ - 4260 + 4256 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 4232 + 4228 ], "on_conflict": [ - 4238 + 4234 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_avg_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "unused": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "unused": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_bool_exp": { "_and": [ - 4229 + 4225 ], "_not": [ - 4229 + 4225 ], "_or": [ - 4229 + 4225 ], "deleted_at": [ - 4959 + 4955 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "player": [ - 4339 + 4335 ], "player_steam_id": [ - 270 + 271 ], "round": [ - 41 + 42 ], "unused": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_constraint": {}, "player_unused_utility_inc_input": { "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_insert_input": { "deleted_at": [ - 4958 + 4954 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4346 + 4342 ], "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_max_fields": { "deleted_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_max_order_by": { "deleted_at": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "unused": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_min_fields": { "deleted_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_min_order_by": { "deleted_at": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "unused": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4220 + 4216 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_on_conflict": { "constraint": [ - 4230 + 4226 ], "update_columns": [ - 4253 + 4249 ], "where": [ - 4229 + 4225 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_order_by": { "deleted_at": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "unused": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_stddev_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "unused": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "unused": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_stddev_pop_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "unused": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "unused": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_stddev_samp_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "unused": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "unused": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 4250 + 4246 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_sum_fields": { "player_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "unused": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "unused": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 4231 + 4227 ], "_set": [ - 4242 + 4238 ], "where": [ - 4229 + 4225 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_var_pop_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "unused": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "unused": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_var_samp_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "unused": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "unused": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_variance_fields": { "player_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "unused": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "unused": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_utility": { "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "deleted_at": [ - 4958 + 4954 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4335 + 4331 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "type": [ - 1527 + 1528 ], "__typename": [ - 83 + 84 ] }, "player_utility_aggregate": { "aggregate": [ - 4265 + 4261 ], "nodes": [ - 4261 + 4257 ], "__typename": [ - 83 + 84 ] }, "player_utility_aggregate_bool_exp": { "count": [ - 4264 + 4260 ], "__typename": [ - 83 + 84 ] }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 4282 + 4278 ], "distinct": [ - 5 + 6 ], "filter": [ - 4270 + 4266 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_utility_aggregate_fields": { "avg": [ - 4268 + 4264 ], "count": [ - 40, + 41, { "columns": [ - 4282, + 4278, "[player_utility_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4274 + 4270 ], "min": [ - 4276 + 4272 ], "stddev": [ - 4284 + 4280 ], "stddev_pop": [ - 4286 + 4282 ], "stddev_samp": [ - 4288 + 4284 ], "sum": [ - 4292 + 4288 ], "var_pop": [ - 4296 + 4292 ], "var_samp": [ - 4298 + 4294 ], "variance": [ - 4300 + 4296 ], "__typename": [ - 83 + 84 ] }, "player_utility_aggregate_order_by": { "avg": [ - 4269 + 4265 ], "count": [ - 3377 + 3373 ], "max": [ - 4275 + 4271 ], "min": [ - 4277 + 4273 ], "stddev": [ - 4285 + 4281 ], "stddev_pop": [ - 4287 + 4283 ], "stddev_samp": [ - 4289 + 4285 ], "sum": [ - 4293 + 4289 ], "var_pop": [ - 4297 + 4293 ], "var_samp": [ - 4299 + 4295 ], "variance": [ - 4301 + 4297 ], "__typename": [ - 83 + 84 ] }, "player_utility_arr_rel_insert_input": { "data": [ - 4273 + 4269 ], "on_conflict": [ - 4279 + 4275 ], "__typename": [ - 83 + 84 ] }, "player_utility_avg_fields": { "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_utility_bool_exp": { "_and": [ - 4270 + 4266 ], "_not": [ - 4270 + 4266 ], "_or": [ - 4270 + 4266 ], "attacker_location_coordinates": [ - 85 + 86 ], "attacker_steam_id": [ - 270 + 271 ], "deleted_at": [ - 4959 + 4955 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "player": [ - 4339 + 4335 ], "round": [ - 41 + 42 ], "time": [ - 4959 + 4955 ], "type": [ - 1528 + 1529 ], "__typename": [ - 83 + 84 ] }, "player_utility_constraint": {}, "player_utility_inc_input": { "attacker_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_utility_insert_input": { "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "deleted_at": [ - 4958 + 4954 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4346 + 4342 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "type": [ - 1527 + 1528 ], "__typename": [ - 83 + 84 ] }, "player_utility_max_fields": { "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "deleted_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_utility_min_fields": { "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "deleted_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_utility_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4261 + 4257 ], "__typename": [ - 83 + 84 ] }, "player_utility_on_conflict": { "constraint": [ - 4271 + 4267 ], "update_columns": [ - 4294 + 4290 ], "where": [ - 4270 + 4266 ], "__typename": [ - 83 + 84 ] }, "player_utility_order_by": { "attacker_location_coordinates": [ - 3377 + 3373 ], "attacker_steam_id": [ - 3377 + 3373 ], "deleted_at": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "round": [ - 3377 + 3373 ], "time": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_utility_pk_columns_input": { "attacker_steam_id": [ - 268 + 269 ], "match_map_id": [ - 5458 + 5454 ], "time": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "player_utility_select_column": {}, "player_utility_set_input": { "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "deleted_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "type": [ - 1527 + 1528 ], "__typename": [ - 83 + 84 ] }, "player_utility_stddev_fields": { "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_utility_stddev_pop_fields": { "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_utility_stddev_samp_fields": { "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_utility_stream_cursor_input": { "initial_value": [ - 4291 + 4287 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "player_utility_stream_cursor_value_input": { "attacker_location_coordinates": [ - 83 + 84 ], "attacker_steam_id": [ - 268 + 269 ], "deleted_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "time": [ - 4958 + 4954 ], "type": [ - 1527 + 1528 ], "__typename": [ - 83 + 84 ] }, "player_utility_sum_fields": { "attacker_steam_id": [ - 268 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 4272 + 4268 ], "_set": [ - 4283 + 4279 ], "where": [ - 4270 + 4266 ], "__typename": [ - 83 + 84 ] }, "player_utility_var_pop_fields": { "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_utility_var_samp_fields": { "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_utility_variance_fields": { "attacker_steam_id": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_weapon_stats_v": { "first_bullet_hits": [ - 40 + 41 ], "first_bullet_shots": [ - 40 + 41 ], "hits": [ - 40 + 41 ], "hits_spotted": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "weapon_class": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 4306 + 4302 ], "nodes": [ - 4302 + 4298 ], "__typename": [ - 83 + 84 ] }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 4305 + 4301 ], "__typename": [ - 83 + 84 ] }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 4318 + 4314 ], "distinct": [ - 5 + 6 ], "filter": [ - 4311 + 4307 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 4309 + 4305 ], "count": [ - 40, + 41, { "columns": [ - 4318, + 4314, "[player_weapon_stats_v_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4313 + 4309 ], "min": [ - 4315 + 4311 ], "stddev": [ - 4319 + 4315 ], "stddev_pop": [ - 4321 + 4317 ], "stddev_samp": [ - 4323 + 4319 ], "sum": [ - 4327 + 4323 ], "var_pop": [ - 4329 + 4325 ], "var_samp": [ - 4331 + 4327 ], "variance": [ - 4333 + 4329 ], "__typename": [ - 83 + 84 ] }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 4310 + 4306 ], "count": [ - 3377 + 3373 ], "max": [ - 4314 + 4310 ], "min": [ - 4316 + 4312 ], "stddev": [ - 4320 + 4316 ], "stddev_pop": [ - 4322 + 4318 ], "stddev_samp": [ - 4324 + 4320 ], "sum": [ - 4328 + 4324 ], "var_pop": [ - 4330 + 4326 ], "var_samp": [ - 4332 + 4328 ], "variance": [ - 4334 + 4330 ], "__typename": [ - 83 + 84 ] }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 4312 + 4308 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_weapon_stats_v_bool_exp": { "_and": [ - 4311 + 4307 ], "_not": [ - 4311 + 4307 ], "_or": [ - 4311 + 4307 ], "first_bullet_hits": [ - 41 + 42 ], "first_bullet_shots": [ - 41 + 42 ], "hits": [ - 41 + 42 ], "hits_spotted": [ - 41 + 42 ], "match_id": [ - 5460 + 5456 ], "shots": [ - 41 + 42 ], "shots_spotted": [ - 41 + 42 ], "steam_id": [ - 270 + 271 ], "weapon_class": [ - 85 + 86 ], "__typename": [ - 83 + 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": [ - 5458 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "weapon_class": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 5458 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "weapon_class": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "weapon_class": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 5458 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "weapon_class": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "weapon_class": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "weapon_class": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 4326 + 4322 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 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": [ - 5458 + 5454 ], "shots": [ - 40 + 41 ], "shots_spotted": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "weapon_class": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 3377 + 3373 ], "first_bullet_shots": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "hits_spotted": [ - 3377 + 3373 ], "shots": [ - 3377 + 3373 ], "shots_spotted": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "players": { "abandoned_matches": [ - 130, + 131, { "distinct_on": [ - 151, + 152, "[abandoned_matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 149, + 150, "[abandoned_matches_order_by!]" ], "where": [ - 139 + 140 ] } ], "abandoned_matches_aggregate": [ - 131, + 132, { "distinct_on": [ - 151, + 152, "[abandoned_matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 149, + 150, "[abandoned_matches_order_by!]" ], "where": [ - 139 + 140 ] } ], "aim_weapon_stats": [ - 3474, + 3470, { "distinct_on": [ - 3495, + 3491, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3493, + 3489, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3483 + 3479 ] } ], "aim_weapon_stats_aggregate": [ - 3475, + 3471, { "distinct_on": [ - 3495, + 3491, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3493, + 3489, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3483 + 3479 ] } ], "assists": [ - 3515, + 3511, { "distinct_on": [ - 3538, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3536, + 3532, "[player_assists_order_by!]" ], "where": [ - 3526 + 3522 ] } ], "assists_aggregate": [ - 3516, + 3512, { "distinct_on": [ - 3538, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3536, + 3532, "[player_assists_order_by!]" ], "where": [ - 3526 + 3522 ] } ], "assited_by_players": [ - 3515, + 3511, { "distinct_on": [ - 3538, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3536, + 3532, "[player_assists_order_by!]" ], "where": [ - 3526 + 3522 ] } ], "assited_by_players_aggregate": [ - 3516, + 3512, { "distinct_on": [ - 3538, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3536, + 3532, "[player_assists_order_by!]" ], "where": [ - 3526 + 3522 ] } ], "avatar_url": [ - 83 + 84 ], "awards": [ - 199, + 200, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "awards_aggregate": [ - 200, + 201, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "banned_until": [ - 4958 + 4954 ], "coach_lineups": [ - 2815, + 2811, { "distinct_on": [ - 2837, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2835, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2824 + 2820 ] } ], "coach_lineups_aggregate": [ - 2816, + 2812, { "distinct_on": [ - 2837, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2835, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2824 + 2820 ] } ], "country": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "current_lobby_id": [ - 5458 + 5454 ], "custom_avatar_url": [ - 83 + 84 ], "damage_dealt": [ - 3578, + 3574, { "distinct_on": [ - 3599, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3597, + 3593, "[player_damages_order_by!]" ], "where": [ - 3587 + 3583 ] } ], "damage_dealt_aggregate": [ - 3579, + 3575, { "distinct_on": [ - 3599, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3597, + 3593, "[player_damages_order_by!]" ], "where": [ - 3587 + 3583 ] } ], "damage_taken": [ - 3578, + 3574, { "distinct_on": [ - 3599, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3597, + 3593, "[player_damages_order_by!]" ], "where": [ - 3587 + 3583 ] } ], "damage_taken_aggregate": [ - 3579, + 3575, { "distinct_on": [ - 3599, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3597, + 3593, "[player_damages_order_by!]" ], "where": [ - 3587 + 3583 ] } ], "days_since_last_ban": [ - 40 + 41 ], "deaths": [ - 3732, + 3728, { "distinct_on": [ - 3796, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3794, + 3790, "[player_kills_order_by!]" ], "where": [ - 3743 + 3739 ] } ], "deaths_aggregate": [ - 3733, + 3729, { "distinct_on": [ - 3796, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3794, + 3790, "[player_kills_order_by!]" ], "where": [ - 3743 + 3739 ] } ], "discord_id": [ - 83 + 84 ], "draft_game_players": [ - 510, + 511, { "distinct_on": [ - 533, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 531, + 532, "[draft_game_players_order_by!]" ], "where": [ - 521 + 522 ] } ], "draft_game_players_aggregate": [ - 511, + 512, { "distinct_on": [ - 533, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 531, + 532, "[draft_game_players_order_by!]" ], "where": [ - 521 + 522 ] } ], "elo": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "elo_history": [ - 5835, + 5831, { "distinct_on": [ - 5861, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5860, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5854 + 5850 ] } ], "elo_history_aggregate": [ - 5836, + 5832, { "distinct_on": [ - 5861, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5860, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5854 + 5850 ] } ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 83 + 84 ], "faceit_player_id": [ - 83 + 84 ], "faceit_rank_history": [ - 3646, + 3642, { "distinct_on": [ - 3667, + 3663, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3665, + 3661, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3655 + 3651 ] } ], "faceit_rank_history_aggregate": [ - 3647, + 3643, { "distinct_on": [ - 3667, + 3663, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3665, + 3661, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3655 + 3651 ] } ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4958 + 4954 ], "faceit_url": [ - 83 + 84 ], "flashed_by_players": [ - 3687, + 3683, { "distinct_on": [ - 3710, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3708, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3698 + 3694 ] } ], "flashed_by_players_aggregate": [ - 3688, + 3684, { "distinct_on": [ - 3710, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3708, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3698 + 3694 ] } ], "flashed_players": [ - 3687, + 3683, { "distinct_on": [ - 3710, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3708, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3698 + 3694 ] } ], "flashed_players_aggregate": [ - 3688, + 3684, { "distinct_on": [ - 3710, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3708, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3698 + 3694 ] } ], "friends": [ - 3225, + 3221, { "distinct_on": [ - 3250, + 3246, "[my_friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3248, + 3244, "[my_friends_order_by!]" ], "where": [ - 3237 + 3233 ] } ], "friends_aggregate": [ - 3226, + 3222, { "distinct_on": [ - 3250, + 3246, "[my_friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3248, + 3244, "[my_friends_order_by!]" ], "where": [ - 3237 + 3233 ] } ], "game_ban_count": [ - 40 + 41 ], "invited_players": [ - 4626, + 4622, { "distinct_on": [ - 4647, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4645, + 4641, "[team_invites_order_by!]" ], "where": [ - 4635 + 4631 ] } ], "invited_players_aggregate": [ - 4627, + 4623, { "distinct_on": [ - 4647, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4645, + 4641, "[team_invites_order_by!]" ], "where": [ - 4635 + 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": [ - 3732, + 3728, { "distinct_on": [ - 3796, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3794, + 3790, "[player_kills_order_by!]" ], "where": [ - 3743 + 3739 ] } ], "kills_aggregate": [ - 3733, + 3729, { "distinct_on": [ - 3796, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3794, + 3790, "[player_kills_order_by!]" ], "where": [ - 3743 + 3739 ] } ], "kills_by_weapons": [ - 3744, + 3740, { "distinct_on": [ - 3765, + 3761, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3763, + 3759, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3753 + 3749 ] } ], "kills_by_weapons_aggregate": [ - 3745, + 3741, { "distinct_on": [ - 3765, + 3761, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3763, + 3759, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3753 + 3749 ] } ], "language": [ - 83 + 84 ], "last_read_news_at": [ - 4958 + 4954 ], "last_sign_in_at": [ - 4958 + 4954 ], "lobby_players": [ - 2589, + 2585, { "distinct_on": [ - 2612, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2610, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2600 + 2596 ] } ], "lobby_players_aggregate": [ - 2590, + 2586, { "distinct_on": [ - 2612, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2610, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2600 + 2596 ] } ], "losses": [ - 40 + 41 ], "losses_competitive": [ - 40 + 41 ], "losses_duel": [ - 40 + 41 ], "losses_wingman": [ - 40 + 41 ], "match_map_hltv": [ - 5940, + 5936, { "distinct_on": [ - 5958, + 5954, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5957, + 5953, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5949 + 5945 ] } ], "match_map_hltv_aggregate": [ - 5941, + 5937, { "distinct_on": [ - 5958, + 5954, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5957, + 5953, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5949 + 5945 ] } ], "match_map_stats": [ - 3841, + 3837, { "distinct_on": [ - 3862, + 3858, "[player_match_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3860, + 3856, "[player_match_map_stats_order_by!]" ], "where": [ - 3850 + 3846 ] } ], "match_map_stats_aggregate": [ - 3842, + 3838, { "distinct_on": [ - 3862, + 3858, "[player_match_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3860, + 3856, "[player_match_map_stats_order_by!]" ], "where": [ - 3850 + 3846 ] } ], "match_stats": [ - 3900, + 3896, { "distinct_on": [ - 3916, + 3912, "[player_match_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3915, + 3911, "[player_match_stats_v_order_by!]" ], "where": [ - 3909 + 3905 ] } ], "match_stats_aggregate": [ - 3901, + 3897, { "distinct_on": [ - 3916, + 3912, "[player_match_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3915, + 3911, "[player_match_stats_v_order_by!]" ], "where": [ - 3909 + 3905 ] } ], "matches": [ - 3161, + 3157, { "distinct_on": [ - 3185, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3183, + 3179, "[matches_order_by!]" ], "where": [ - 3172 + 3168 ] } ], "matchmaking_cooldown": [ - 4958 + 4954 ], "multi_kills": [ - 6031, + 6027, { "distinct_on": [ - 6047, + 6043, "[v_player_multi_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6046, + 6042, "[v_player_multi_kills_order_by!]" ], "where": [ - 6040 + 6036 ] } ], "multi_kills_aggregate": [ - 6032, + 6028, { "distinct_on": [ - 6047, + 6043, "[v_player_multi_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6046, + 6042, "[v_player_multi_kills_order_by!]" ], "where": [ - 6040 + 6036 ] } ], "name": [ - 83 + 84 ], "name_registered": [ - 5 + 6 ], "notification_timezone": [ - 83 + 84 ], "notifications": [ - 3325, + 3321, { "distinct_on": [ - 3353, + 3349, "[notifications_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3350, + 3346, "[notifications_order_by!]" ], "where": [ - 3337 + 3333 ] } ], "notifications_aggregate": [ - 3326, + 3322, { "distinct_on": [ - 3353, + 3349, "[notifications_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3350, + 3346, "[notifications_order_by!]" ], "where": [ - 3337 + 3333 ] } ], "objectives": [ - 3933, + 3929, { "distinct_on": [ - 3954, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3952, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3942 + 3938 ] } ], "objectives_aggregate": [ - 3934, + 3930, { "distinct_on": [ - 3954, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3952, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3942 + 3938 ] } ], "owned_teams": [ - 4909, + 4905, { "distinct_on": [ - 4933, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4931, + 4927, "[teams_order_by!]" ], "where": [ - 4920 + 4916 ] } ], "owned_teams_aggregate": [ - 4910, + 4906, { "distinct_on": [ - 4933, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4931, + 4927, "[teams_order_by!]" ], "where": [ - 4920 + 4916 ] } ], "peak_elo": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "pending_match_imports": [ - 3378, + 3374, { "distinct_on": [ - 3399, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3397, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3387 + 3383 ] } ], "pending_match_imports_aggregate": [ - 3379, + 3375, { "distinct_on": [ - 3399, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3397, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3387 + 3383 ] } ], "player_lineup": [ - 2770, + 2766, { "distinct_on": [ - 2793, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2791, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2781 + 2777 ] } ], "player_lineup_aggregate": [ - 2771, + 2767, { "distinct_on": [ - 2793, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2791, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2781 + 2777 ] } ], "player_unused_utilities": [ - 4220, + 4216, { "distinct_on": [ - 4241, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4239, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 4229 + 4225 ] } ], "player_unused_utilities_aggregate": [ - 4221, + 4217, { "distinct_on": [ - 4241, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4239, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 4229 + 4225 ] } ], "premier_rank": [ - 40 + 41 ], "premier_rank_history": [ - 3992, + 3988, { "distinct_on": [ - 4013, + 4009, "[player_premier_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4011, + 4007, "[player_premier_rank_history_order_by!]" ], "where": [ - 4001 + 3997 ] } ], "premier_rank_history_aggregate": [ - 3993, + 3989, { "distinct_on": [ - 4013, + 4009, "[player_premier_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4011, + 4007, "[player_premier_rank_history_order_by!]" ], "where": [ - 4001 + 3997 ] } ], "premier_rank_updated_at": [ - 4958 + 4954 ], "profile_url": [ - 83 + 84 ], "quiet_hours_end": [ - 4955 + 4951 ], "quiet_hours_start": [ - 4955 + 4951 ], "role": [ - 1242 + 1243 ], "roster_image_url": [ - 83 + 84 ], "sanctions": [ - 4033, + 4029, { "distinct_on": [ - 4054, + 4050, "[player_sanctions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4052, + 4048, "[player_sanctions_order_by!]" ], "where": [ - 4042 + 4038 ] } ], "sanctions_aggregate": [ - 4034, + 4030, { "distinct_on": [ - 4054, + 4050, "[player_sanctions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4052, + 4048, "[player_sanctions_order_by!]" ], "where": [ - 4042 + 4038 ] } ], "season_stats": [ - 4074, + 4070, { "distinct_on": [ - 4105, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4103, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 4093 + 4089 ] } ], "season_stats_aggregate": [ - 4075, + 4071, { "distinct_on": [ - 4105, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4103, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 4093 + 4089 ] } ], "show_match_ready_modal": [ - 5 + 6 ], "stats": [ - 4133 + 4129 ], "steam_bans_checked_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "team_invites": [ - 4626, + 4622, { "distinct_on": [ - 4647, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4645, + 4641, "[team_invites_order_by!]" ], "where": [ - 4635 + 4631 ] } ], "team_invites_aggregate": [ - 4627, + 4623, { "distinct_on": [ - 4647, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4645, + 4641, "[team_invites_order_by!]" ], "where": [ - 4635 + 4631 ] } ], "team_members": [ - 4667, + 4663, { "distinct_on": [ - 4690, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4688, + 4684, "[team_roster_order_by!]" ], "where": [ - 4678 + 4674 ] } ], "team_members_aggregate": [ - 4668, + 4664, { "distinct_on": [ - 4690, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4688, + 4684, "[team_roster_order_by!]" ], "where": [ - 4678 + 4674 ] } ], "teams": [ - 4909, + 4905, { "distinct_on": [ - 4933, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4931, + 4927, "[teams_order_by!]" ], "where": [ - 4920 + 4916 ] } ], "total_matches": [ - 40 + 41 ], "tournament_organizers": [ - 5096, + 5092, { "distinct_on": [ - 5117, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5115, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 5105 + 5101 ] } ], "tournament_organizers_aggregate": [ - 5097, + 5093, { "distinct_on": [ - 5117, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5115, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 5105 + 5101 ] } ], "tournament_rosters": [ - 5311, + 5307, { "distinct_on": [ - 5332, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5330, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5320 + 5316 ] } ], "tournament_rosters_aggregate": [ - 5312, + 5308, { "distinct_on": [ - 5332, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5330, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5320 + 5316 ] } ], "tournaments": [ - 5394, + 5390, { "distinct_on": [ - 5428, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5426, + 5422, "[tournaments_order_by!]" ], "where": [ - 5415 + 5411 ] } ], "tournaments_aggregate": [ - 5395, + 5391, { "distinct_on": [ - 5428, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5426, + 5422, "[tournaments_order_by!]" ], "where": [ - 5415 + 5411 ] } ], "utility_thrown": [ - 4261, + 4257, { "distinct_on": [ - 4282, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4280, + 4276, "[player_utility_order_by!]" ], "where": [ - 4270 + 4266 ] } ], "utility_thrown_aggregate": [ - 4262, + 4258, { "distinct_on": [ - 4282, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4280, + 4276, "[player_utility_order_by!]" ], "where": [ - 4270 + 4266 ] } ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "weapon_stats": [ - 4302, + 4298, { "distinct_on": [ - 4318, + 4314, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4317, + 4313, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4311 + 4307 ] } ], "weapon_stats_aggregate": [ - 4303, + 4299, { "distinct_on": [ - 4318, + 4314, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4317, + 4313, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4311 + 4307 ] } ], "wins": [ - 40 + 41 ], "wins_competitive": [ - 40 + 41 ], "wins_duel": [ - 40 + 41 ], "wins_wingman": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "players_aggregate": { "aggregate": [ - 4337 + 4333 ], "nodes": [ - 4335 + 4331 ], "__typename": [ - 83 + 84 ] }, "players_aggregate_fields": { "avg": [ - 4338 + 4334 ], "count": [ - 40, + 41, { "columns": [ - 4350, + 4346, "[players_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4343 + 4339 ], "min": [ - 4344 + 4340 ], "stddev": [ - 4352 + 4348 ], "stddev_pop": [ - 4353 + 4349 ], "stddev_samp": [ - 4354 + 4350 ], "sum": [ - 4357 + 4353 ], "var_pop": [ - 4360 + 4356 ], "var_samp": [ - 4361 + 4357 ], "variance": [ - 4362 + 4358 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "players_bool_exp": { "_and": [ - 4339 + 4335 ], "_not": [ - 4339 + 4335 ], "_or": [ - 4339 + 4335 ], "abandoned_matches": [ - 139 + 140 ], "abandoned_matches_aggregate": [ - 132 + 133 ], "aim_weapon_stats": [ - 3483 + 3479 ], "aim_weapon_stats_aggregate": [ - 3476 + 3472 ], "assists": [ - 3526 + 3522 ], "assists_aggregate": [ - 3517 + 3513 ], "assited_by_players": [ - 3526 + 3522 ], "assited_by_players_aggregate": [ - 3517 + 3513 ], "avatar_url": [ - 85 + 86 ], "awards": [ - 208 + 209 ], "awards_aggregate": [ - 201 + 202 ], "banned_until": [ - 4959 + 4955 ], "coach_lineups": [ - 2824 + 2820 ], "coach_lineups_aggregate": [ - 2817 + 2813 ], "country": [ - 85 + 86 ], "created_at": [ - 4959 + 4955 ], "current_lobby_id": [ - 5460 + 5456 ], "custom_avatar_url": [ - 85 + 86 ], "damage_dealt": [ - 3587 + 3583 ], "damage_dealt_aggregate": [ - 3580 + 3576 ], "damage_taken": [ - 3587 + 3583 ], "damage_taken_aggregate": [ - 3580 + 3576 ], "days_since_last_ban": [ - 41 + 42 ], "deaths": [ - 3743 + 3739 ], "deaths_aggregate": [ - 3734 + 3730 ], "discord_id": [ - 85 + 86 ], "draft_game_players": [ - 521 + 522 ], "draft_game_players_aggregate": [ - 512 + 513 ], "elo": [ - 2193 + 2189 ], "elo_history": [ - 5854 + 5850 ], "elo_history_aggregate": [ - 5837 + 5833 ], "faceit_elo": [ - 41 + 42 ], "faceit_nickname": [ - 85 + 86 ], "faceit_player_id": [ - 85 + 86 ], "faceit_rank_history": [ - 3655 + 3651 ], "faceit_rank_history_aggregate": [ - 3648 + 3644 ], "faceit_skill_level": [ - 41 + 42 ], "faceit_updated_at": [ - 4959 + 4955 ], "faceit_url": [ - 85 + 86 ], "flashed_by_players": [ - 3698 + 3694 ], "flashed_by_players_aggregate": [ - 3689 + 3685 ], "flashed_players": [ - 3698 + 3694 ], "flashed_players_aggregate": [ - 3689 + 3685 ], "friends": [ - 3237 + 3233 ], "friends_aggregate": [ - 3227 + 3223 ], "game_ban_count": [ - 41 + 42 ], "invited_players": [ - 4635 + 4631 ], "invited_players_aggregate": [ - 4628 + 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": [ - 3743 + 3739 ], "kills_aggregate": [ - 3734 + 3730 ], "kills_by_weapons": [ - 3753 + 3749 ], "kills_by_weapons_aggregate": [ - 3746 + 3742 ], "language": [ - 85 + 86 ], "last_read_news_at": [ - 4959 + 4955 ], "last_sign_in_at": [ - 4959 + 4955 ], "lobby_players": [ - 2600 + 2596 ], "lobby_players_aggregate": [ - 2591 + 2587 ], "losses": [ - 41 + 42 ], "losses_competitive": [ - 41 + 42 ], "losses_duel": [ - 41 + 42 ], "losses_wingman": [ - 41 + 42 ], "match_map_hltv": [ - 5949 + 5945 ], "match_map_hltv_aggregate": [ - 5942 + 5938 ], "match_map_stats": [ - 3850 + 3846 ], "match_map_stats_aggregate": [ - 3843 + 3839 ], "match_stats": [ - 3909 + 3905 ], "match_stats_aggregate": [ - 3902 + 3898 ], "matches": [ - 3172 + 3168 ], "matchmaking_cooldown": [ - 4959 + 4955 ], "multi_kills": [ - 6040 + 6036 ], "multi_kills_aggregate": [ - 6033 + 6029 ], "name": [ - 85 + 86 ], "name_registered": [ - 6 + 7 ], "notification_timezone": [ - 85 + 86 ], "notifications": [ - 3337 + 3333 ], "notifications_aggregate": [ - 3327 + 3323 ], "objectives": [ - 3942 + 3938 ], "objectives_aggregate": [ - 3935 + 3931 ], "owned_teams": [ - 4920 + 4916 ], "owned_teams_aggregate": [ - 4911 + 4907 ], "peak_elo": [ - 2193 + 2189 ], "pending_match_imports": [ - 3387 + 3383 ], "pending_match_imports_aggregate": [ - 3380 + 3376 ], "player_lineup": [ - 2781 + 2777 ], "player_lineup_aggregate": [ - 2772 + 2768 ], "player_unused_utilities": [ - 4229 + 4225 ], "player_unused_utilities_aggregate": [ - 4222 + 4218 ], "premier_rank": [ - 41 + 42 ], "premier_rank_history": [ - 4001 + 3997 ], "premier_rank_history_aggregate": [ - 3994 + 3990 ], "premier_rank_updated_at": [ - 4959 + 4955 ], "profile_url": [ - 85 + 86 ], "quiet_hours_end": [ - 4956 + 4952 ], "quiet_hours_start": [ - 4956 + 4952 ], "role": [ - 1243 + 1244 ], "roster_image_url": [ - 85 + 86 ], "sanctions": [ - 4042 + 4038 ], "sanctions_aggregate": [ - 4035 + 4031 ], "season_stats": [ - 4093 + 4089 ], "season_stats_aggregate": [ - 4076 + 4072 ], "show_match_ready_modal": [ - 6 + 7 ], "stats": [ - 4137 + 4133 ], "steam_bans_checked_at": [ - 4959 + 4955 ], "steam_id": [ - 270 + 271 ], "team_invites": [ - 4635 + 4631 ], "team_invites_aggregate": [ - 4628 + 4624 ], "team_members": [ - 4678 + 4674 ], "team_members_aggregate": [ - 4669 + 4665 ], "teams": [ - 4920 + 4916 ], "total_matches": [ - 41 + 42 ], "tournament_organizers": [ - 5105 + 5101 ], "tournament_organizers_aggregate": [ - 5098 + 5094 ], "tournament_rosters": [ - 5320 + 5316 ], "tournament_rosters_aggregate": [ - 5313 + 5309 ], "tournaments": [ - 5415 + 5411 ], "tournaments_aggregate": [ - 5396 + 5392 ], "utility_thrown": [ - 4270 + 4266 ], "utility_thrown_aggregate": [ - 4263 + 4259 ], "vac_ban_count": [ - 41 + 42 ], "vac_banned": [ - 6 + 7 ], "weapon_stats": [ - 4311 + 4307 ], "weapon_stats_aggregate": [ - 4304 + 4300 ], "wins": [ - 41 + 42 ], "wins_competitive": [ - 41 + 42 ], "wins_duel": [ - 41 + 42 ], "wins_wingman": [ - 41 + 42 ], "__typename": [ - 83 + 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": [ - 268 + 269 ], "vac_ban_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "players_insert_input": { "abandoned_matches": [ - 136 + 137 ], "aim_weapon_stats": [ - 3480 + 3476 ], "assists": [ - 3523 + 3519 ], "assited_by_players": [ - 3523 + 3519 ], "avatar_url": [ - 83 + 84 ], "awards": [ - 205 + 206 ], "coach_lineups": [ - 2821 + 2817 ], "country": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "custom_avatar_url": [ - 83 + 84 ], "damage_dealt": [ - 3584 + 3580 ], "damage_taken": [ - 3584 + 3580 ], "days_since_last_ban": [ - 40 + 41 ], "deaths": [ - 3740 + 3736 ], "discord_id": [ - 83 + 84 ], "draft_game_players": [ - 518 + 519 ], "elo_history": [ - 5851 + 5847 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 83 + 84 ], "faceit_player_id": [ - 83 + 84 ], "faceit_rank_history": [ - 3652 + 3648 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4958 + 4954 ], "faceit_url": [ - 83 + 84 ], "flashed_by_players": [ - 3695 + 3691 ], "flashed_players": [ - 3695 + 3691 ], "friends": [ - 3234 + 3230 ], "game_ban_count": [ - 40 + 41 ], "invited_players": [ - 4632 + 4628 ], "kills": [ - 3740 + 3736 ], "kills_by_weapons": [ - 3750 + 3746 ], "language": [ - 83 + 84 ], "last_read_news_at": [ - 4958 + 4954 ], "last_sign_in_at": [ - 4958 + 4954 ], "lobby_players": [ - 2597 + 2593 ], "match_map_hltv": [ - 5946 + 5942 ], "match_map_stats": [ - 3847 + 3843 ], "match_stats": [ - 3906 + 3902 ], "multi_kills": [ - 6037 + 6033 ], "name": [ - 83 + 84 ], "name_registered": [ - 5 + 6 ], "notification_timezone": [ - 83 + 84 ], "notifications": [ - 3334 + 3330 ], "objectives": [ - 3939 + 3935 ], "owned_teams": [ - 4917 + 4913 ], "pending_match_imports": [ - 3384 + 3380 ], "player_lineup": [ - 2778 + 2774 ], "player_unused_utilities": [ - 4226 + 4222 ], "premier_rank": [ - 40 + 41 ], "premier_rank_history": [ - 3998 + 3994 ], "premier_rank_updated_at": [ - 4958 + 4954 ], "profile_url": [ - 83 + 84 ], "quiet_hours_end": [ - 4955 + 4951 ], "quiet_hours_start": [ - 4955 + 4951 ], "role": [ - 1242 + 1243 ], "roster_image_url": [ - 83 + 84 ], "sanctions": [ - 4039 + 4035 ], "season_stats": [ - 4090 + 4086 ], "show_match_ready_modal": [ - 5 + 6 ], "stats": [ - 4144 + 4140 ], "steam_bans_checked_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "team_invites": [ - 4632 + 4628 ], "team_members": [ - 4675 + 4671 ], "tournament_organizers": [ - 5102 + 5098 ], "tournament_rosters": [ - 5317 + 5313 ], "tournaments": [ - 5412 + 5408 ], "utility_thrown": [ - 4267 + 4263 ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "weapon_stats": [ - 4308 + 4304 ], "__typename": [ - 83 + 84 ] }, "players_max_fields": { "avatar_url": [ - 83 + 84 ], "banned_until": [ - 4958 + 4954 ], "country": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "current_lobby_id": [ - 5458 + 5454 ], "custom_avatar_url": [ - 83 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 83 + 84 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 83 + 84 ], "faceit_player_id": [ - 83 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4958 + 4954 ], "faceit_url": [ - 83 + 84 ], "game_ban_count": [ - 40 + 41 ], "language": [ - 83 + 84 ], "last_read_news_at": [ - 4958 + 4954 ], "last_sign_in_at": [ - 4958 + 4954 ], "losses": [ - 40 + 41 ], "losses_competitive": [ - 40 + 41 ], "losses_duel": [ - 40 + 41 ], "losses_wingman": [ - 40 + 41 ], "matchmaking_cooldown": [ - 4958 + 4954 ], "name": [ - 83 + 84 ], "notification_timezone": [ - 83 + 84 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4958 + 4954 ], "profile_url": [ - 83 + 84 ], "roster_image_url": [ - 83 + 84 ], "steam_bans_checked_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 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": [ - 83 + 84 ] }, "players_min_fields": { "avatar_url": [ - 83 + 84 ], "banned_until": [ - 4958 + 4954 ], "country": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "current_lobby_id": [ - 5458 + 5454 ], "custom_avatar_url": [ - 83 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 83 + 84 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 83 + 84 ], "faceit_player_id": [ - 83 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4958 + 4954 ], "faceit_url": [ - 83 + 84 ], "game_ban_count": [ - 40 + 41 ], "language": [ - 83 + 84 ], "last_read_news_at": [ - 4958 + 4954 ], "last_sign_in_at": [ - 4958 + 4954 ], "losses": [ - 40 + 41 ], "losses_competitive": [ - 40 + 41 ], "losses_duel": [ - 40 + 41 ], "losses_wingman": [ - 40 + 41 ], "matchmaking_cooldown": [ - 4958 + 4954 ], "name": [ - 83 + 84 ], "notification_timezone": [ - 83 + 84 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4958 + 4954 ], "profile_url": [ - 83 + 84 ], "roster_image_url": [ - 83 + 84 ], "steam_bans_checked_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 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": [ - 83 + 84 ] }, "players_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4335 + 4331 ], "__typename": [ - 83 + 84 ] }, "players_obj_rel_insert_input": { "data": [ - 4342 + 4338 ], "on_conflict": [ - 4347 + 4343 ], "__typename": [ - 83 + 84 ] }, "players_on_conflict": { "constraint": [ - 4340 + 4336 ], "update_columns": [ - 4358 + 4354 ], "where": [ - 4339 + 4335 ], "__typename": [ - 83 + 84 ] }, "players_order_by": { "abandoned_matches_aggregate": [ - 135 + 136 ], "aim_weapon_stats_aggregate": [ - 3479 + 3475 ], "assists_aggregate": [ - 3522 + 3518 ], "assited_by_players_aggregate": [ - 3522 + 3518 ], "avatar_url": [ - 3377 + 3373 ], "awards_aggregate": [ - 204 + 205 ], "banned_until": [ - 3377 + 3373 ], "coach_lineups_aggregate": [ - 2820 + 2816 ], "country": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "current_lobby_id": [ - 3377 + 3373 ], "custom_avatar_url": [ - 3377 + 3373 ], "damage_dealt_aggregate": [ - 3583 + 3579 ], "damage_taken_aggregate": [ - 3583 + 3579 ], "days_since_last_ban": [ - 3377 + 3373 ], "deaths_aggregate": [ - 3739 + 3735 ], "discord_id": [ - 3377 + 3373 ], "draft_game_players_aggregate": [ - 517 + 518 ], "elo": [ - 3377 + 3373 ], "elo_history_aggregate": [ - 5850 + 5846 ], "faceit_elo": [ - 3377 + 3373 ], "faceit_nickname": [ - 3377 + 3373 ], "faceit_player_id": [ - 3377 + 3373 ], "faceit_rank_history_aggregate": [ - 3651 + 3647 ], "faceit_skill_level": [ - 3377 + 3373 ], "faceit_updated_at": [ - 3377 + 3373 ], "faceit_url": [ - 3377 + 3373 ], "flashed_by_players_aggregate": [ - 3694 + 3690 ], "flashed_players_aggregate": [ - 3694 + 3690 ], "friends_aggregate": [ - 3232 + 3228 ], "game_ban_count": [ - 3377 + 3373 ], "invited_players_aggregate": [ - 4631 + 4627 ], "is_admin_sanctioned": [ - 3377 + 3373 ], "is_banned": [ - 3377 + 3373 ], "is_gagged": [ - 3377 + 3373 ], "is_in_another_match": [ - 3377 + 3373 ], "is_in_draft": [ - 3377 + 3373 ], "is_in_lobby": [ - 3377 + 3373 ], "is_muted": [ - 3377 + 3373 ], "is_registered": [ - 3377 + 3373 ], "kills_aggregate": [ - 3739 + 3735 ], "kills_by_weapons_aggregate": [ - 3749 + 3745 ], "language": [ - 3377 + 3373 ], "last_read_news_at": [ - 3377 + 3373 ], "last_sign_in_at": [ - 3377 + 3373 ], "lobby_players_aggregate": [ - 2596 + 2592 ], "losses": [ - 3377 + 3373 ], "losses_competitive": [ - 3377 + 3373 ], "losses_duel": [ - 3377 + 3373 ], "losses_wingman": [ - 3377 + 3373 ], "match_map_hltv_aggregate": [ - 5945 + 5941 ], "match_map_stats_aggregate": [ - 3846 + 3842 ], "match_stats_aggregate": [ - 3905 + 3901 ], "matches_aggregate": [ - 3168 + 3164 ], "matchmaking_cooldown": [ - 3377 + 3373 ], "multi_kills_aggregate": [ - 6036 + 6032 ], "name": [ - 3377 + 3373 ], "name_registered": [ - 3377 + 3373 ], "notification_timezone": [ - 3377 + 3373 ], "notifications_aggregate": [ - 3332 + 3328 ], "objectives_aggregate": [ - 3938 + 3934 ], "owned_teams_aggregate": [ - 4916 + 4912 ], "peak_elo": [ - 3377 + 3373 ], "pending_match_imports_aggregate": [ - 3383 + 3379 ], "player_lineup_aggregate": [ - 2777 + 2773 ], "player_unused_utilities_aggregate": [ - 4225 + 4221 ], "premier_rank": [ - 3377 + 3373 ], "premier_rank_history_aggregate": [ - 3997 + 3993 ], "premier_rank_updated_at": [ - 3377 + 3373 ], "profile_url": [ - 3377 + 3373 ], "quiet_hours_end": [ - 3377 + 3373 ], "quiet_hours_start": [ - 3377 + 3373 ], "role": [ - 3377 + 3373 ], "roster_image_url": [ - 3377 + 3373 ], "sanctions_aggregate": [ - 4038 + 4034 ], "season_stats_aggregate": [ - 4089 + 4085 ], "show_match_ready_modal": [ - 3377 + 3373 ], "stats": [ - 4146 + 4142 ], "steam_bans_checked_at": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_invites_aggregate": [ - 4631 + 4627 ], "team_members_aggregate": [ - 4674 + 4670 ], "teams_aggregate": [ - 4916 + 4912 ], "total_matches": [ - 3377 + 3373 ], "tournament_organizers_aggregate": [ - 5101 + 5097 ], "tournament_rosters_aggregate": [ - 5316 + 5312 ], "tournaments_aggregate": [ - 5411 + 5407 ], "utility_thrown_aggregate": [ - 4266 + 4262 ], "vac_ban_count": [ - 3377 + 3373 ], "vac_banned": [ - 3377 + 3373 ], "weapon_stats_aggregate": [ - 4307 + 4303 ], "wins": [ - 3377 + 3373 ], "wins_competitive": [ - 3377 + 3373 ], "wins_duel": [ - 3377 + 3373 ], "wins_wingman": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "players_pk_columns_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "players_select_column": {}, "players_set_input": { "avatar_url": [ - 83 + 84 ], "country": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "custom_avatar_url": [ - 83 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 83 + 84 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 83 + 84 ], "faceit_player_id": [ - 83 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4958 + 4954 ], "faceit_url": [ - 83 + 84 ], "game_ban_count": [ - 40 + 41 ], "language": [ - 83 + 84 ], "last_read_news_at": [ - 4958 + 4954 ], "last_sign_in_at": [ - 4958 + 4954 ], "name": [ - 83 + 84 ], "name_registered": [ - 5 + 6 ], "notification_timezone": [ - 83 + 84 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4958 + 4954 ], "profile_url": [ - 83 + 84 ], "quiet_hours_end": [ - 4955 + 4951 ], "quiet_hours_start": [ - 4955 + 4951 ], "role": [ - 1242 + 1243 ], "roster_image_url": [ - 83 + 84 ], "show_match_ready_modal": [ - 5 + 6 ], "steam_bans_checked_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "players_stream_cursor_input": { "initial_value": [ - 4356 + 4352 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "players_stream_cursor_value_input": { "avatar_url": [ - 83 + 84 ], "country": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "custom_avatar_url": [ - 83 + 84 ], "days_since_last_ban": [ - 40 + 41 ], "discord_id": [ - 83 + 84 ], "faceit_elo": [ - 40 + 41 ], "faceit_nickname": [ - 83 + 84 ], "faceit_player_id": [ - 83 + 84 ], "faceit_skill_level": [ - 40 + 41 ], "faceit_updated_at": [ - 4958 + 4954 ], "faceit_url": [ - 83 + 84 ], "game_ban_count": [ - 40 + 41 ], "language": [ - 83 + 84 ], "last_read_news_at": [ - 4958 + 4954 ], "last_sign_in_at": [ - 4958 + 4954 ], "name": [ - 83 + 84 ], "name_registered": [ - 5 + 6 ], "notification_timezone": [ - 83 + 84 ], "premier_rank": [ - 40 + 41 ], "premier_rank_updated_at": [ - 4958 + 4954 ], "profile_url": [ - 83 + 84 ], "quiet_hours_end": [ - 4955 + 4951 ], "quiet_hours_start": [ - 4955 + 4951 ], "role": [ - 1242 + 1243 ], "roster_image_url": [ - 83 + 84 ], "show_match_ready_modal": [ - 5 + 6 ], "steam_bans_checked_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "vac_ban_count": [ - 40 + 41 ], "vac_banned": [ - 5 + 6 ], "__typename": [ - 83 + 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": [ - 268 + 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": [ - 83 + 84 ] }, "players_update_column": {}, "players_updates": { "_inc": [ - 4341 + 4337 ], "_set": [ - 4351 + 4347 ], "where": [ - 4339 + 4335 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "plugin_versions": { "min_game_build_id": [ - 40 + 41 ], "published_at": [ - 4958 + 4954 ], "runtime": [ - 1262 + 1263 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_aggregate": { "aggregate": [ - 4365 + 4361 ], "nodes": [ - 4363 + 4359 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_aggregate_fields": { "avg": [ - 4366 + 4362 ], "count": [ - 40, + 41, { "columns": [ - 4377, + 4373, "[plugin_versions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4371 + 4367 ], "min": [ - 4372 + 4368 ], "stddev": [ - 4379 + 4375 ], "stddev_pop": [ - 4380 + 4376 ], "stddev_samp": [ - 4381 + 4377 ], "sum": [ - 4384 + 4380 ], "var_pop": [ - 4387 + 4383 ], "var_samp": [ - 4388 + 4384 ], "variance": [ - 4389 + 4385 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_avg_fields": { "min_game_build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_bool_exp": { "_and": [ - 4367 + 4363 ], "_not": [ - 4367 + 4363 ], "_or": [ - 4367 + 4363 ], "min_game_build_id": [ - 41 + 42 ], "published_at": [ - 4959 + 4955 ], "runtime": [ - 1263 + 1264 ], "version": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_constraint": {}, "plugin_versions_inc_input": { "min_game_build_id": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_insert_input": { "min_game_build_id": [ - 40 + 41 ], "published_at": [ - 4958 + 4954 ], "runtime": [ - 1262 + 1263 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_max_fields": { "min_game_build_id": [ - 40 + 41 ], "published_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_min_fields": { "min_game_build_id": [ - 40 + 41 ], "published_at": [ - 4958 + 4954 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4363 + 4359 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_on_conflict": { "constraint": [ - 4368 + 4364 ], "update_columns": [ - 4385 + 4381 ], "where": [ - 4367 + 4363 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_order_by": { "min_game_build_id": [ - 3377 + 3373 ], "published_at": [ - 3377 + 3373 ], "runtime": [ - 3377 + 3373 ], "version": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_pk_columns_input": { "runtime": [ - 1262 + 1263 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_select_column": {}, "plugin_versions_set_input": { "min_game_build_id": [ - 40 + 41 ], "published_at": [ - 4958 + 4954 ], "runtime": [ - 1262 + 1263 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_stddev_fields": { "min_game_build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_stddev_pop_fields": { "min_game_build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_stddev_samp_fields": { "min_game_build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 4383 + 4379 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_stream_cursor_value_input": { "min_game_build_id": [ - 40 + 41 ], "published_at": [ - 4958 + 4954 ], "runtime": [ - 1262 + 1263 ], "version": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_sum_fields": { "min_game_build_id": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 4369 + 4365 ], "_set": [ - 4378 + 4374 ], "where": [ - 4367 + 4363 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_var_pop_fields": { "min_game_build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_var_samp_fields": { "min_game_build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "plugin_versions_variance_fields": { "min_game_build_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions": { "auth": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "endpoint": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "last_used_at": [ - 4958 + 4954 ], "p256dh": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "user_agent": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_aggregate": { "aggregate": [ - 4392 + 4388 ], "nodes": [ - 4390 + 4386 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_aggregate_fields": { "avg": [ - 4393 + 4389 ], "count": [ - 40, + 41, { "columns": [ - 4404, + 4400, "[push_subscriptions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4398 + 4394 ], "min": [ - 4399 + 4395 ], "stddev": [ - 4406 + 4402 ], "stddev_pop": [ - 4407 + 4403 ], "stddev_samp": [ - 4408 + 4404 ], "sum": [ - 4411 + 4407 ], "var_pop": [ - 4414 + 4410 ], "var_samp": [ - 4415 + 4411 ], "variance": [ - 4416 + 4412 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_bool_exp": { "_and": [ - 4394 + 4390 ], "_not": [ - 4394 + 4390 ], "_or": [ - 4394 + 4390 ], "auth": [ - 85 + 86 ], "created_at": [ - 4959 + 4955 ], "endpoint": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "last_used_at": [ - 4959 + 4955 ], "p256dh": [ - 85 + 86 ], "steam_id": [ - 270 + 271 ], "user_agent": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_constraint": {}, "push_subscriptions_inc_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_insert_input": { "auth": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "endpoint": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "last_used_at": [ - 4958 + 4954 ], "p256dh": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "user_agent": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_max_fields": { "auth": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "endpoint": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "last_used_at": [ - 4958 + 4954 ], "p256dh": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "user_agent": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_min_fields": { "auth": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "endpoint": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "last_used_at": [ - 4958 + 4954 ], "p256dh": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "user_agent": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4390 + 4386 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_on_conflict": { "constraint": [ - 4395 + 4391 ], "update_columns": [ - 4412 + 4408 ], "where": [ - 4394 + 4390 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_order_by": { "auth": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "endpoint": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "last_used_at": [ - 3377 + 3373 ], "p256dh": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "user_agent": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_select_column": {}, "push_subscriptions_set_input": { "auth": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "endpoint": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "last_used_at": [ - 4958 + 4954 ], "p256dh": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "user_agent": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_stream_cursor_input": { "initial_value": [ - 4410 + 4406 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_stream_cursor_value_input": { "auth": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "endpoint": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "last_used_at": [ - 4958 + 4954 ], "p256dh": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "user_agent": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_update_column": {}, "push_subscriptions_updates": { "_inc": [ - 4396 + 4392 ], "_set": [ - 4405 + 4401 ], "where": [ - 4394 + 4390 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "push_subscriptions_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "recalculate_tournament_awards_args": { "_tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "reorder_league_divisions_args": { "_division_ids": [ - 129 + 130 ], "__typename": [ - 83 + 84 ] }, "restart_league_season_args": { "_league_season_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "seasons": { "awards": [ - 199, + 200, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "awards_aggregate": [ - 200, + 201, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "ends_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "needs_rebuild": [ - 5 + 6 ], "number": [ - 40 + 41 ], "player_season_stats": [ - 4074, + 4070, { "distinct_on": [ - 4105, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4103, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 4093 + 4089 ] } ], "player_season_stats_aggregate": [ - 4075, + 4071, { "distinct_on": [ - 4105, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4103, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 4093 + 4089 ] } ], "starts_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "seasons_aggregate": { "aggregate": [ - 4423 + 4419 ], "nodes": [ - 4421 + 4417 ], "__typename": [ - 83 + 84 ] }, "seasons_aggregate_fields": { "avg": [ - 4424 + 4420 ], "count": [ - 40, + 41, { "columns": [ - 4436, + 4432, "[seasons_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4429 + 4425 ], "min": [ - 4430 + 4426 ], "stddev": [ - 4438 + 4434 ], "stddev_pop": [ - 4439 + 4435 ], "stddev_samp": [ - 4440 + 4436 ], "sum": [ - 4443 + 4439 ], "var_pop": [ - 4446 + 4442 ], "var_samp": [ - 4447 + 4443 ], "variance": [ - 4448 + 4444 ], "__typename": [ - 83 + 84 ] }, "seasons_avg_fields": { "number": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "seasons_bool_exp": { "_and": [ - 4425 + 4421 ], "_not": [ - 4425 + 4421 ], "_or": [ - 4425 + 4421 ], "awards": [ - 208 + 209 ], "awards_aggregate": [ - 201 + 202 ], "created_at": [ - 4959 + 4955 ], "description": [ - 85 + 86 ], "ends_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "needs_rebuild": [ - 6 + 7 ], "number": [ - 41 + 42 ], "player_season_stats": [ - 4093 + 4089 ], "player_season_stats_aggregate": [ - 4076 + 4072 ], "starts_at": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "seasons_constraint": {}, "seasons_inc_input": { "number": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "seasons_insert_input": { "awards": [ - 205 + 206 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "ends_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "needs_rebuild": [ - 5 + 6 ], "number": [ - 40 + 41 ], "player_season_stats": [ - 4090 + 4086 ], "starts_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "seasons_max_fields": { "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "ends_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "number": [ - 40 + 41 ], "starts_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "seasons_min_fields": { "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "ends_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "number": [ - 40 + 41 ], "starts_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "seasons_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4421 + 4417 ], "__typename": [ - 83 + 84 ] }, "seasons_obj_rel_insert_input": { "data": [ - 4428 + 4424 ], "on_conflict": [ - 4433 + 4429 ], "__typename": [ - 83 + 84 ] }, "seasons_on_conflict": { "constraint": [ - 4426 + 4422 ], "update_columns": [ - 4444 + 4440 ], "where": [ - 4425 + 4421 ], "__typename": [ - 83 + 84 ] }, "seasons_order_by": { "awards_aggregate": [ - 204 + 205 ], "created_at": [ - 3377 + 3373 ], "description": [ - 3377 + 3373 ], "ends_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "needs_rebuild": [ - 3377 + 3373 ], "number": [ - 3377 + 3373 ], "player_season_stats_aggregate": [ - 4089 + 4085 ], "starts_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "seasons_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "ends_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "needs_rebuild": [ - 5 + 6 ], "number": [ - 40 + 41 ], "starts_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "seasons_stddev_fields": { "number": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "seasons_stddev_pop_fields": { "number": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "seasons_stddev_samp_fields": { "number": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "seasons_stream_cursor_input": { "initial_value": [ - 4442 + 4438 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "seasons_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "ends_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "needs_rebuild": [ - 5 + 6 ], "number": [ - 40 + 41 ], "starts_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "seasons_sum_fields": { "number": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 4427 + 4423 ], "_set": [ - 4437 + 4433 ], "where": [ - 4425 + 4421 ], "__typename": [ - 83 + 84 ] }, "seasons_var_pop_fields": { "number": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "seasons_var_samp_fields": { "number": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "seasons_variance_fields": { "number": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "server_regions": { "available_server_count": [ - 40 + 41 ], "description": [ - 83 + 84 ], "game_server_nodes": [ - 2067, + 2063, { "distinct_on": [ - 2096, + 2092, "[game_server_nodes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2093, + 2089, "[game_server_nodes_order_by!]" ], "where": [ - 2079 + 2075 ] } ], "game_server_nodes_aggregate": [ - 2068, + 2064, { "distinct_on": [ - 2096, + 2092, "[game_server_nodes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2093, + 2089, "[game_server_nodes_order_by!]" ], "where": [ - 2079 + 2075 ] } ], "has_node": [ - 5 + 6 ], "is_lan": [ - 5 + 6 ], "status": [ - 83 + 84 ], "steam_relay": [ - 5 + 6 ], "total_server_count": [ - 40 + 41 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "server_regions_aggregate": { "aggregate": [ - 4451 + 4447 ], "nodes": [ - 4449 + 4445 ], "__typename": [ - 83 + 84 ] }, "server_regions_aggregate_fields": { "avg": [ - 4452 + 4448 ], "count": [ - 40, + 41, { "columns": [ - 4463, + 4459, "[server_regions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4456 + 4452 ], "min": [ - 4457 + 4453 ], "stddev": [ - 4465 + 4461 ], "stddev_pop": [ - 4466 + 4462 ], "stddev_samp": [ - 4467 + 4463 ], "sum": [ - 4470 + 4466 ], "var_pop": [ - 4473 + 4469 ], "var_samp": [ - 4474 + 4470 ], "variance": [ - 4475 + 4471 ], "__typename": [ - 83 + 84 ] }, "server_regions_avg_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "server_regions_bool_exp": { "_and": [ - 4453 + 4449 ], "_not": [ - 4453 + 4449 ], "_or": [ - 4453 + 4449 ], "available_server_count": [ - 41 + 42 ], "description": [ - 85 + 86 ], "game_server_nodes": [ - 2079 + 2075 ], "game_server_nodes_aggregate": [ - 2069 + 2065 ], "has_node": [ - 6 + 7 ], "is_lan": [ - 6 + 7 ], "status": [ - 85 + 86 ], "steam_relay": [ - 6 + 7 ], "total_server_count": [ - 41 + 42 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "server_regions_constraint": {}, "server_regions_insert_input": { "description": [ - 83 + 84 ], "game_server_nodes": [ - 2076 + 2072 ], "is_lan": [ - 5 + 6 ], "steam_relay": [ - 5 + 6 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "server_regions_max_fields": { "available_server_count": [ - 40 + 41 ], "description": [ - 83 + 84 ], "status": [ - 83 + 84 ], "total_server_count": [ - 40 + 41 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "server_regions_min_fields": { "available_server_count": [ - 40 + 41 ], "description": [ - 83 + 84 ], "status": [ - 83 + 84 ], "total_server_count": [ - 40 + 41 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "server_regions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4449 + 4445 ], "__typename": [ - 83 + 84 ] }, "server_regions_obj_rel_insert_input": { "data": [ - 4455 + 4451 ], "on_conflict": [ - 4460 + 4456 ], "__typename": [ - 83 + 84 ] }, "server_regions_on_conflict": { "constraint": [ - 4454 + 4450 ], "update_columns": [ - 4471 + 4467 ], "where": [ - 4453 + 4449 ], "__typename": [ - 83 + 84 ] }, "server_regions_order_by": { "available_server_count": [ - 3377 + 3373 ], "description": [ - 3377 + 3373 ], "game_server_nodes_aggregate": [ - 2074 + 2070 ], "has_node": [ - 3377 + 3373 ], "is_lan": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "steam_relay": [ - 3377 + 3373 ], "total_server_count": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "server_regions_pk_columns_input": { "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "server_regions_select_column": {}, "server_regions_set_input": { "description": [ - 83 + 84 ], "is_lan": [ - 5 + 6 ], "steam_relay": [ - 5 + 6 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "server_regions_stddev_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "server_regions_stddev_pop_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "server_regions_stddev_samp_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "server_regions_stream_cursor_input": { "initial_value": [ - 4469 + 4465 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "server_regions_stream_cursor_value_input": { "description": [ - 83 + 84 ], "is_lan": [ - 5 + 6 ], "steam_relay": [ - 5 + 6 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "server_regions_sum_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 4464 + 4460 ], "where": [ - 4453 + 4449 ], "__typename": [ - 83 + 84 ] }, "server_regions_var_pop_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "server_regions_var_samp_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "server_regions_variance_fields": { "available_server_count": [ - 40 + 41 ], "total_server_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "servers": { "api_password": [ - 5458 + 5454 ], "boot_status": [ - 83 + 84 ], "boot_status_detail": [ - 83 + 84 ], "connect_password": [ - 83 + 84 ], "connected": [ - 5 + 6 ], "connection_link": [ - 83 + 84 ], "connection_string": [ - 83 + 84 ], "current_match": [ - 3161 + 3157 ], "enabled": [ - 5 + 6 ], "game": [ - 83 + 84 ], "game_mode": [ - 1920 + 1921 ], "game_mode_id": [ - 5458 + 5454 ], "game_server_node": [ - 2067 + 2063 ], "game_server_node_id": [ - 83 + 84 ], "host": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_dedicated": [ - 5 + 6 ], "label": [ - 83 + 84 ], "loaded_plugins": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "matches": [ - 3161, + 3157, { "distinct_on": [ - 3185, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3183, + 3179, "[matches_order_by!]" ], "where": [ - 3172 + 3168 ] } ], "matches_aggregate": [ - 3162, + 3158, { "distinct_on": [ - 3185, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3183, + 3179, "[matches_order_by!]" ], "where": [ - 3172 + 3168 ] } ], "max_players": [ - 40 + 41 ], "offline_at": [ - 4958 + 4954 ], "plugin_runtime": [ - 1262 + 1263 ], "plugin_version": [ - 83 + 84 ], "plugins_checked_at": [ - 4958 + 4954 ], "port": [ - 40 + 41 ], "rcon_password": [ - 271 + 272 ], "rcon_status": [ - 5 + 6 ], "region": [ - 83 + 84 ], "reserved_by_match_id": [ - 5458 + 5454 ], "server_region": [ - 4449 + 4445 ], "steam_relay": [ - 83 + 84 ], "tv_port": [ - 40 + 41 ], "type": [ - 1343 + 1344 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "servers_aggregate": { "aggregate": [ - 4482 + 4478 ], "nodes": [ - 4476 + 4472 ], "__typename": [ - 83 + 84 ] }, "servers_aggregate_bool_exp": { "bool_and": [ - 4479 + 4475 ], "bool_or": [ - 4480 + 4476 ], "count": [ - 4481 + 4477 ], "__typename": [ - 83 + 84 ] }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 4506 + 4502 ], "distinct": [ - 5 + 6 ], "filter": [ - 4488 + 4484 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 4507 + 4503 ], "distinct": [ - 5 + 6 ], "filter": [ - 4488 + 4484 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "servers_aggregate_bool_exp_count": { "arguments": [ - 4505 + 4501 ], "distinct": [ - 5 + 6 ], "filter": [ - 4488 + 4484 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "servers_aggregate_fields": { "avg": [ - 4486 + 4482 ], "count": [ - 40, + 41, { "columns": [ - 4505, + 4501, "[servers_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4495 + 4491 ], "min": [ - 4497 + 4493 ], "stddev": [ - 4509 + 4505 ], "stddev_pop": [ - 4511 + 4507 ], "stddev_samp": [ - 4513 + 4509 ], "sum": [ - 4517 + 4513 ], "var_pop": [ - 4521 + 4517 ], "var_samp": [ - 4523 + 4519 ], "variance": [ - 4525 + 4521 ], "__typename": [ - 83 + 84 ] }, "servers_aggregate_order_by": { "avg": [ - 4487 + 4483 ], "count": [ - 3377 + 3373 ], "max": [ - 4496 + 4492 ], "min": [ - 4498 + 4494 ], "stddev": [ - 4510 + 4506 ], "stddev_pop": [ - 4512 + 4508 ], "stddev_samp": [ - 4514 + 4510 ], "sum": [ - 4518 + 4514 ], "var_pop": [ - 4522 + 4518 ], "var_samp": [ - 4524 + 4520 ], "variance": [ - 4526 + 4522 ], "__typename": [ - 83 + 84 ] }, "servers_append_input": { "loaded_plugins": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "servers_arr_rel_insert_input": { "data": [ - 4494 + 4490 ], "on_conflict": [ - 4501 + 4497 ], "__typename": [ - 83 + 84 ] }, "servers_avg_fields": { "max_players": [ - 31 + 32 ], "port": [ - 31 + 32 ], "tv_port": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "servers_avg_order_by": { "max_players": [ - 3377 + 3373 ], "port": [ - 3377 + 3373 ], "tv_port": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "servers_bool_exp": { "_and": [ - 4488 + 4484 ], "_not": [ - 4488 + 4484 ], "_or": [ - 4488 + 4484 ], "api_password": [ - 5460 + 5456 ], "boot_status": [ - 85 + 86 ], "boot_status_detail": [ - 85 + 86 ], "connect_password": [ - 85 + 86 ], "connected": [ - 6 + 7 ], "connection_link": [ - 85 + 86 ], "connection_string": [ - 85 + 86 ], "current_match": [ - 3172 + 3168 ], "enabled": [ - 6 + 7 ], "game": [ - 85 + 86 ], "game_mode": [ 1924 ], "game_mode_id": [ - 5460 + 5456 ], "game_server_node": [ - 2079 + 2075 ], "game_server_node_id": [ - 85 + 86 ], "host": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "is_dedicated": [ - 6 + 7 ], "label": [ - 85 + 86 ], "loaded_plugins": [ - 2193 + 2189 ], "matches": [ - 3172 + 3168 ], "matches_aggregate": [ - 3163 + 3159 ], "max_players": [ - 41 + 42 ], "offline_at": [ - 4959 + 4955 ], "plugin_runtime": [ - 1263 + 1264 ], "plugin_version": [ - 85 + 86 ], "plugins_checked_at": [ - 4959 + 4955 ], "port": [ - 41 + 42 ], "rcon_password": [ - 272 + 273 ], "rcon_status": [ - 6 + 7 ], "region": [ - 85 + 86 ], "reserved_by_match_id": [ - 5460 + 5456 ], "server_region": [ - 4453 + 4449 ], "steam_relay": [ - 85 + 86 ], "tv_port": [ - 41 + 42 ], "type": [ - 1344 + 1345 ], "updated_at": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "servers_constraint": {}, "servers_delete_at_path_input": { "loaded_plugins": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "servers_delete_elem_input": { "loaded_plugins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "servers_delete_key_input": { "loaded_plugins": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "servers_inc_input": { "max_players": [ - 40 + 41 ], "port": [ - 40 + 41 ], "tv_port": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "servers_insert_input": { "api_password": [ - 5458 + 5454 ], "boot_status": [ - 83 + 84 ], "boot_status_detail": [ - 83 + 84 ], "connect_password": [ - 83 + 84 ], "connected": [ - 5 + 6 ], "current_match": [ - 3181 + 3177 ], "enabled": [ - 5 + 6 ], "game": [ - 83 + 84 ], "game_mode": [ - 1933 + 1930 ], "game_mode_id": [ - 5458 + 5454 ], "game_server_node": [ - 2091 + 2087 ], "game_server_node_id": [ - 83 + 84 ], "host": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_dedicated": [ - 5 + 6 ], "label": [ - 83 + 84 ], "loaded_plugins": [ - 2191 + 2187 ], "matches": [ - 3169 + 3165 ], "max_players": [ - 40 + 41 ], "offline_at": [ - 4958 + 4954 ], "plugin_runtime": [ - 1262 + 1263 ], "plugin_version": [ - 83 + 84 ], "plugins_checked_at": [ - 4958 + 4954 ], "port": [ - 40 + 41 ], "rcon_password": [ - 271 + 272 ], "rcon_status": [ - 5 + 6 ], "region": [ - 83 + 84 ], "reserved_by_match_id": [ - 5458 + 5454 ], "server_region": [ - 4459 + 4455 ], "steam_relay": [ - 83 + 84 ], "tv_port": [ - 40 + 41 ], "type": [ - 1343 + 1344 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "servers_max_fields": { "api_password": [ - 5458 + 5454 ], "boot_status": [ - 83 + 84 ], "boot_status_detail": [ - 83 + 84 ], "connect_password": [ - 83 + 84 ], "connection_link": [ - 83 + 84 ], "connection_string": [ - 83 + 84 ], "game": [ - 83 + 84 ], "game_mode_id": [ - 5458 + 5454 ], "game_server_node_id": [ - 83 + 84 ], "host": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "max_players": [ - 40 + 41 ], "offline_at": [ - 4958 + 4954 ], "plugin_version": [ - 83 + 84 ], "plugins_checked_at": [ - 4958 + 4954 ], "port": [ - 40 + 41 ], "region": [ - 83 + 84 ], "reserved_by_match_id": [ - 5458 + 5454 ], "steam_relay": [ - 83 + 84 ], "tv_port": [ - 40 + 41 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "servers_max_order_by": { "api_password": [ - 3377 + 3373 ], "boot_status": [ - 3377 + 3373 ], "boot_status_detail": [ - 3377 + 3373 ], "connect_password": [ - 3377 + 3373 ], "game": [ - 3377 + 3373 ], "game_mode_id": [ - 3377 + 3373 ], "game_server_node_id": [ - 3377 + 3373 ], "host": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "max_players": [ - 3377 + 3373 ], "offline_at": [ - 3377 + 3373 ], "plugin_version": [ - 3377 + 3373 ], "plugins_checked_at": [ - 3377 + 3373 ], "port": [ - 3377 + 3373 ], "region": [ - 3377 + 3373 ], "reserved_by_match_id": [ - 3377 + 3373 ], "steam_relay": [ - 3377 + 3373 ], "tv_port": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "servers_min_fields": { "api_password": [ - 5458 + 5454 ], "boot_status": [ - 83 + 84 ], "boot_status_detail": [ - 83 + 84 ], "connect_password": [ - 83 + 84 ], "connection_link": [ - 83 + 84 ], "connection_string": [ - 83 + 84 ], "game": [ - 83 + 84 ], "game_mode_id": [ - 5458 + 5454 ], "game_server_node_id": [ - 83 + 84 ], "host": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "max_players": [ - 40 + 41 ], "offline_at": [ - 4958 + 4954 ], "plugin_version": [ - 83 + 84 ], "plugins_checked_at": [ - 4958 + 4954 ], "port": [ - 40 + 41 ], "region": [ - 83 + 84 ], "reserved_by_match_id": [ - 5458 + 5454 ], "steam_relay": [ - 83 + 84 ], "tv_port": [ - 40 + 41 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "servers_min_order_by": { "api_password": [ - 3377 + 3373 ], "boot_status": [ - 3377 + 3373 ], "boot_status_detail": [ - 3377 + 3373 ], "connect_password": [ - 3377 + 3373 ], "game": [ - 3377 + 3373 ], "game_mode_id": [ - 3377 + 3373 ], "game_server_node_id": [ - 3377 + 3373 ], "host": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "max_players": [ - 3377 + 3373 ], "offline_at": [ - 3377 + 3373 ], "plugin_version": [ - 3377 + 3373 ], "plugins_checked_at": [ - 3377 + 3373 ], "port": [ - 3377 + 3373 ], "region": [ - 3377 + 3373 ], "reserved_by_match_id": [ - 3377 + 3373 ], "steam_relay": [ - 3377 + 3373 ], "tv_port": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "servers_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4476 + 4472 ], "__typename": [ - 83 + 84 ] }, "servers_obj_rel_insert_input": { "data": [ - 4494 + 4490 ], "on_conflict": [ - 4501 + 4497 ], "__typename": [ - 83 + 84 ] }, "servers_on_conflict": { "constraint": [ - 4489 + 4485 ], "update_columns": [ - 4519 + 4515 ], "where": [ - 4488 + 4484 ], "__typename": [ - 83 + 84 ] }, "servers_order_by": { "api_password": [ - 3377 + 3373 ], "boot_status": [ - 3377 + 3373 ], "boot_status_detail": [ - 3377 + 3373 ], "connect_password": [ - 3377 + 3373 ], "connected": [ - 3377 + 3373 ], "connection_link": [ - 3377 + 3373 ], "connection_string": [ - 3377 + 3373 ], "current_match": [ - 3183 + 3179 ], "enabled": [ - 3377 + 3373 ], "game": [ - 3377 + 3373 ], "game_mode": [ - 1935 + 1932 ], "game_mode_id": [ - 3377 + 3373 ], "game_server_node": [ - 2093 + 2089 ], "game_server_node_id": [ - 3377 + 3373 ], "host": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "is_dedicated": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "loaded_plugins": [ - 3377 + 3373 ], "matches_aggregate": [ - 3168 + 3164 ], "max_players": [ - 3377 + 3373 ], "offline_at": [ - 3377 + 3373 ], "plugin_runtime": [ - 3377 + 3373 ], "plugin_version": [ - 3377 + 3373 ], "plugins_checked_at": [ - 3377 + 3373 ], "port": [ - 3377 + 3373 ], "rcon_password": [ - 3377 + 3373 ], "rcon_status": [ - 3377 + 3373 ], "region": [ - 3377 + 3373 ], "reserved_by_match_id": [ - 3377 + 3373 ], "server_region": [ - 4461 + 4457 ], "steam_relay": [ - 3377 + 3373 ], "tv_port": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "servers_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "servers_prepend_input": { "loaded_plugins": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "servers_select_column": {}, @@ -103238,3158 +103201,3158 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 5458 + 5454 ], "boot_status": [ - 83 + 84 ], "boot_status_detail": [ - 83 + 84 ], "connect_password": [ - 83 + 84 ], "connected": [ - 5 + 6 ], "enabled": [ - 5 + 6 ], "game": [ - 83 + 84 ], "game_mode_id": [ - 5458 + 5454 ], "game_server_node_id": [ - 83 + 84 ], "host": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_dedicated": [ - 5 + 6 ], "label": [ - 83 + 84 ], "loaded_plugins": [ - 2191 + 2187 ], "max_players": [ - 40 + 41 ], "offline_at": [ - 4958 + 4954 ], "plugin_runtime": [ - 1262 + 1263 ], "plugin_version": [ - 83 + 84 ], "plugins_checked_at": [ - 4958 + 4954 ], "port": [ - 40 + 41 ], "rcon_password": [ - 271 + 272 ], "rcon_status": [ - 5 + 6 ], "region": [ - 83 + 84 ], "reserved_by_match_id": [ - 5458 + 5454 ], "steam_relay": [ - 83 + 84 ], "tv_port": [ - 40 + 41 ], "type": [ - 1343 + 1344 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "servers_stddev_fields": { "max_players": [ - 31 + 32 ], "port": [ - 31 + 32 ], "tv_port": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "servers_stddev_order_by": { "max_players": [ - 3377 + 3373 ], "port": [ - 3377 + 3373 ], "tv_port": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "servers_stddev_pop_fields": { "max_players": [ - 31 + 32 ], "port": [ - 31 + 32 ], "tv_port": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "servers_stddev_pop_order_by": { "max_players": [ - 3377 + 3373 ], "port": [ - 3377 + 3373 ], "tv_port": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "servers_stddev_samp_fields": { "max_players": [ - 31 + 32 ], "port": [ - 31 + 32 ], "tv_port": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "servers_stddev_samp_order_by": { "max_players": [ - 3377 + 3373 ], "port": [ - 3377 + 3373 ], "tv_port": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "servers_stream_cursor_input": { "initial_value": [ - 4516 + 4512 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "servers_stream_cursor_value_input": { "api_password": [ - 5458 + 5454 ], "boot_status": [ - 83 + 84 ], "boot_status_detail": [ - 83 + 84 ], "connect_password": [ - 83 + 84 ], "connected": [ - 5 + 6 ], "enabled": [ - 5 + 6 ], "game": [ - 83 + 84 ], "game_mode_id": [ - 5458 + 5454 ], "game_server_node_id": [ - 83 + 84 ], "host": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_dedicated": [ - 5 + 6 ], "label": [ - 83 + 84 ], "loaded_plugins": [ - 2191 + 2187 ], "max_players": [ - 40 + 41 ], "offline_at": [ - 4958 + 4954 ], "plugin_runtime": [ - 1262 + 1263 ], "plugin_version": [ - 83 + 84 ], "plugins_checked_at": [ - 4958 + 4954 ], "port": [ - 40 + 41 ], "rcon_password": [ - 271 + 272 ], "rcon_status": [ - 5 + 6 ], "region": [ - 83 + 84 ], "reserved_by_match_id": [ - 5458 + 5454 ], "steam_relay": [ - 83 + 84 ], "tv_port": [ - 40 + 41 ], "type": [ - 1343 + 1344 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "servers_sum_fields": { "max_players": [ - 40 + 41 ], "port": [ - 40 + 41 ], "tv_port": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "servers_sum_order_by": { "max_players": [ - 3377 + 3373 ], "port": [ - 3377 + 3373 ], "tv_port": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "servers_update_column": {}, "servers_updates": { "_append": [ - 4484 + 4480 ], "_delete_at_path": [ - 4490 + 4486 ], "_delete_elem": [ - 4491 + 4487 ], "_delete_key": [ - 4492 + 4488 ], "_inc": [ - 4493 + 4489 ], "_prepend": [ - 4504 + 4500 ], "_set": [ - 4508 + 4504 ], "where": [ - 4488 + 4484 ], "__typename": [ - 83 + 84 ] }, "servers_var_pop_fields": { "max_players": [ - 31 + 32 ], "port": [ - 31 + 32 ], "tv_port": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "servers_var_pop_order_by": { "max_players": [ - 3377 + 3373 ], "port": [ - 3377 + 3373 ], "tv_port": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "servers_var_samp_fields": { "max_players": [ - 31 + 32 ], "port": [ - 31 + 32 ], "tv_port": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "servers_var_samp_order_by": { "max_players": [ - 3377 + 3373 ], "port": [ - 3377 + 3373 ], "tv_port": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "servers_variance_fields": { "max_players": [ - 31 + 32 ], "port": [ - 31 + 32 ], "tv_port": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "servers_variance_order_by": { "max_players": [ - 3377 + 3373 ], "port": [ - 3377 + 3373 ], "tv_port": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "settings": { "name": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "settings_aggregate": { "aggregate": [ - 4529 + 4525 ], "nodes": [ - 4527 + 4523 ], "__typename": [ - 83 + 84 ] }, "settings_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 4539, + 4535, "[settings_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4533 + 4529 ], "min": [ - 4534 + 4530 ], "__typename": [ - 83 + 84 ] }, "settings_bool_exp": { "_and": [ - 4530 + 4526 ], "_not": [ - 4530 + 4526 ], "_or": [ - 4530 + 4526 ], "name": [ - 85 + 86 ], "value": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "settings_constraint": {}, "settings_insert_input": { "name": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "settings_max_fields": { "name": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "settings_min_fields": { "name": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "settings_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4527 + 4523 ], "__typename": [ - 83 + 84 ] }, "settings_on_conflict": { "constraint": [ - 4531 + 4527 ], "update_columns": [ - 4543 + 4539 ], "where": [ - 4530 + 4526 ], "__typename": [ - 83 + 84 ] }, "settings_order_by": { "name": [ - 3377 + 3373 ], "value": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "settings_pk_columns_input": { "name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "settings_select_column": {}, "settings_set_input": { "name": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "settings_stream_cursor_input": { "initial_value": [ - 4542 + 4538 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "settings_stream_cursor_value_input": { "name": [ - 83 + 84 ], "value": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "settings_update_column": {}, "settings_updates": { "_set": [ - 4540 + 4536 ], "where": [ - 4530 + 4526 ], "__typename": [ - 83 + 84 ] }, "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 4545 + 4541 ], "_gt": [ - 4545 + 4541 ], "_gte": [ - 4545 + 4541 ], "_in": [ - 4545 + 4541 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 4545 + 4541 ], "_lte": [ - 4545 + 4541 ], "_neq": [ - 4545 + 4541 ], "_nin": [ - 4545 + 4541 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "node": [ - 2067 + 2063 ], "node_id": [ - 83 + 84 ], "purpose": [ - 83 + 84 ], "steam_account": [ - 4571 + 4567 ], "steam_account_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_aggregate": { "aggregate": [ - 4551 + 4547 ], "nodes": [ - 4547 + 4543 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 4550 + 4546 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 4565 + 4561 ], "distinct": [ - 5 + 6 ], "filter": [ - 4554 + 4550 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 4565, + 4561, "[steam_account_claims_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4557 + 4553 ], "min": [ - 4559 + 4555 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_aggregate_order_by": { "count": [ - 3377 + 3373 ], "max": [ - 4558 + 4554 ], "min": [ - 4560 + 4556 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 4556 + 4552 ], "on_conflict": [ - 4562 + 4558 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_bool_exp": { "_and": [ - 4554 + 4550 ], "_not": [ - 4554 + 4550 ], "_or": [ - 4554 + 4550 ], "created_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "k8s_job_name": [ - 85 + 86 ], "node": [ - 2079 + 2075 ], "node_id": [ - 85 + 86 ], "purpose": [ - 85 + 86 ], "steam_account": [ - 4575 + 4571 ], "steam_account_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "node": [ - 2091 + 2087 ], "node_id": [ - 83 + 84 ], "purpose": [ - 83 + 84 ], "steam_account": [ - 4582 + 4578 ], "steam_account_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_max_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "node_id": [ - 83 + 84 ], "purpose": [ - 83 + 84 ], "steam_account_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_max_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "k8s_job_name": [ - 3377 + 3373 ], "node_id": [ - 3377 + 3373 ], "purpose": [ - 3377 + 3373 ], "steam_account_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_min_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "node_id": [ - 83 + 84 ], "purpose": [ - 83 + 84 ], "steam_account_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_min_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "k8s_job_name": [ - 3377 + 3373 ], "node_id": [ - 3377 + 3373 ], "purpose": [ - 3377 + 3373 ], "steam_account_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4547 + 4543 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_on_conflict": { "constraint": [ - 4555 + 4551 ], "update_columns": [ - 4569 + 4565 ], "where": [ - 4554 + 4550 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "k8s_job_name": [ - 3377 + 3373 ], "node": [ - 2093 + 2089 ], "node_id": [ - 3377 + 3373 ], "purpose": [ - 3377 + 3373 ], "steam_account": [ - 4584 + 4580 ], "steam_account_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "node_id": [ - 83 + 84 ], "purpose": [ - 83 + 84 ], "steam_account_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 4568 + 4564 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "k8s_job_name": [ - 83 + 84 ], "node_id": [ - 83 + 84 ], "purpose": [ - 83 + 84 ], "steam_account_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 4566 + 4562 ], "where": [ - 4554 + 4550 ], "__typename": [ - 83 + 84 ] }, "steam_accounts": { "claims": [ - 4547, + 4543, { "distinct_on": [ - 4565, + 4561, "[steam_account_claims_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4563, + 4559, "[steam_account_claims_order_by!]" ], "where": [ - 4554 + 4550 ] } ], "claims_aggregate": [ - 4548, + 4544, { "distinct_on": [ - 4565, + 4561, "[steam_account_claims_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4563, + 4559, "[steam_account_claims_order_by!]" ], "where": [ - 4554 + 4550 ] } ], "created_at": [ - 4958 + 4954 ], "friend_capacity": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "last_node": [ - 2067 + 2063 ], "last_node_id": [ - 83 + 84 ], "password": [ - 83 + 84 ], "role": [ - 83 + 84 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "username": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_aggregate": { "aggregate": [ - 4573 + 4569 ], "nodes": [ - 4571 + 4567 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_aggregate_fields": { "avg": [ - 4574 + 4570 ], "count": [ - 40, + 41, { "columns": [ - 4586, + 4582, "[steam_accounts_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4579 + 4575 ], "min": [ - 4580 + 4576 ], "stddev": [ - 4588 + 4584 ], "stddev_pop": [ - 4589 + 4585 ], "stddev_samp": [ - 4590 + 4586 ], "sum": [ - 4593 + 4589 ], "var_pop": [ - 4596 + 4592 ], "var_samp": [ - 4597 + 4593 ], "variance": [ - 4598 + 4594 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_avg_fields": { "friend_capacity": [ - 31 + 32 ], "steam_level": [ - 31 + 32 ], "steamid64": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_bool_exp": { "_and": [ - 4575 + 4571 ], "_not": [ - 4575 + 4571 ], "_or": [ - 4575 + 4571 ], "claims": [ - 4554 + 4550 ], "claims_aggregate": [ - 4549 + 4545 ], "created_at": [ - 4959 + 4955 ], "friend_capacity": [ - 41 + 42 ], "id": [ - 5460 + 5456 ], "last_node": [ - 2079 + 2075 ], "last_node_id": [ - 85 + 86 ], "password": [ - 85 + 86 ], "role": [ - 85 + 86 ], "steam_level": [ - 41 + 42 ], "steamid64": [ - 270 + 271 ], "updated_at": [ - 4959 + 4955 ], "username": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_constraint": {}, "steam_accounts_inc_input": { "friend_capacity": [ - 40 + 41 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_insert_input": { "claims": [ - 4553 + 4549 ], "created_at": [ - 4958 + 4954 ], "friend_capacity": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "last_node": [ - 2091 + 2087 ], "last_node_id": [ - 83 + 84 ], "password": [ - 83 + 84 ], "role": [ - 83 + 84 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "username": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_max_fields": { "created_at": [ - 4958 + 4954 ], "friend_capacity": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "last_node_id": [ - 83 + 84 ], "password": [ - 83 + 84 ], "role": [ - 83 + 84 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "username": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_min_fields": { "created_at": [ - 4958 + 4954 ], "friend_capacity": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "last_node_id": [ - 83 + 84 ], "password": [ - 83 + 84 ], "role": [ - 83 + 84 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "username": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4571 + 4567 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_obj_rel_insert_input": { "data": [ - 4578 + 4574 ], "on_conflict": [ - 4583 + 4579 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_on_conflict": { "constraint": [ - 4576 + 4572 ], "update_columns": [ - 4594 + 4590 ], "where": [ - 4575 + 4571 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_order_by": { "claims_aggregate": [ - 4552 + 4548 ], "created_at": [ - 3377 + 3373 ], "friend_capacity": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "last_node": [ - 2093 + 2089 ], "last_node_id": [ - 3377 + 3373 ], "password": [ - 3377 + 3373 ], "role": [ - 3377 + 3373 ], "steam_level": [ - 3377 + 3373 ], "steamid64": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "username": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4958 + 4954 ], "friend_capacity": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "last_node_id": [ - 83 + 84 ], "password": [ - 83 + 84 ], "role": [ - 83 + 84 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "username": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_stddev_fields": { "friend_capacity": [ - 31 + 32 ], "steam_level": [ - 31 + 32 ], "steamid64": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_stddev_pop_fields": { "friend_capacity": [ - 31 + 32 ], "steam_level": [ - 31 + 32 ], "steamid64": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_stddev_samp_fields": { "friend_capacity": [ - 31 + 32 ], "steam_level": [ - 31 + 32 ], "steamid64": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 4592 + 4588 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "friend_capacity": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "last_node_id": [ - 83 + 84 ], "password": [ - 83 + 84 ], "role": [ - 83 + 84 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 268 + 269 ], "updated_at": [ - 4958 + 4954 ], "username": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_sum_fields": { "friend_capacity": [ - 40 + 41 ], "steam_level": [ - 40 + 41 ], "steamid64": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 4577 + 4573 ], "_set": [ - 4587 + 4583 ], "where": [ - 4575 + 4571 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_var_pop_fields": { "friend_capacity": [ - 31 + 32 ], "steam_level": [ - 31 + 32 ], "steamid64": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_var_samp_fields": { "friend_capacity": [ - 31 + 32 ], "steam_level": [ - 31 + 32 ], "steamid64": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "steam_accounts_variance_fields": { "friend_capacity": [ - 31 + 32 ], "steam_level": [ - 31 + 32 ], "steamid64": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "system_alerts": { "created_at": [ - 4958 + 4954 ], "created_by": [ - 268 + 269 ], "dismissible": [ - 5 + 6 ], "expires_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "is_active": [ - 5 + 6 ], "message": [ - 83 + 84 ], "title": [ - 83 + 84 ], "type": [ - 1383 + 1384 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "system_alerts_aggregate": { "aggregate": [ - 4601 + 4597 ], "nodes": [ - 4599 + 4595 ], "__typename": [ - 83 + 84 ] }, "system_alerts_aggregate_fields": { "avg": [ - 4602 + 4598 ], "count": [ - 40, + 41, { "columns": [ - 4613, + 4609, "[system_alerts_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4607 + 4603 ], "min": [ - 4608 + 4604 ], "stddev": [ - 4615 + 4611 ], "stddev_pop": [ - 4616 + 4612 ], "stddev_samp": [ - 4617 + 4613 ], "sum": [ - 4620 + 4616 ], "var_pop": [ - 4623 + 4619 ], "var_samp": [ - 4624 + 4620 ], "variance": [ - 4625 + 4621 ], "__typename": [ - 83 + 84 ] }, "system_alerts_avg_fields": { "created_by": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "system_alerts_bool_exp": { "_and": [ - 4603 + 4599 ], "_not": [ - 4603 + 4599 ], "_or": [ - 4603 + 4599 ], "created_at": [ - 4959 + 4955 ], "created_by": [ - 270 + 271 ], "dismissible": [ - 6 + 7 ], "expires_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "is_active": [ - 6 + 7 ], "message": [ - 85 + 86 ], "title": [ - 85 + 86 ], "type": [ - 1384 + 1385 ], "updated_at": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "system_alerts_constraint": {}, "system_alerts_inc_input": { "created_by": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "system_alerts_insert_input": { "created_at": [ - 4958 + 4954 ], "created_by": [ - 268 + 269 ], "dismissible": [ - 5 + 6 ], "expires_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "is_active": [ - 5 + 6 ], "message": [ - 83 + 84 ], "title": [ - 83 + 84 ], "type": [ - 1383 + 1384 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "system_alerts_max_fields": { "created_at": [ - 4958 + 4954 ], "created_by": [ - 268 + 269 ], "expires_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "system_alerts_min_fields": { "created_at": [ - 4958 + 4954 ], "created_by": [ - 268 + 269 ], "expires_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "message": [ - 83 + 84 ], "title": [ - 83 + 84 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "system_alerts_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4599 + 4595 ], "__typename": [ - 83 + 84 ] }, "system_alerts_on_conflict": { "constraint": [ - 4604 + 4600 ], "update_columns": [ - 4621 + 4617 ], "where": [ - 4603 + 4599 ], "__typename": [ - 83 + 84 ] }, "system_alerts_order_by": { "created_at": [ - 3377 + 3373 ], "created_by": [ - 3377 + 3373 ], "dismissible": [ - 3377 + 3373 ], "expires_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "is_active": [ - 3377 + 3373 ], "message": [ - 3377 + 3373 ], "title": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "system_alerts_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4958 + 4954 ], "created_by": [ - 268 + 269 ], "dismissible": [ - 5 + 6 ], "expires_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "is_active": [ - 5 + 6 ], "message": [ - 83 + 84 ], "title": [ - 83 + 84 ], "type": [ - 1383 + 1384 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "system_alerts_stddev_fields": { "created_by": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "system_alerts_stddev_pop_fields": { "created_by": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "system_alerts_stddev_samp_fields": { "created_by": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "system_alerts_stream_cursor_input": { "initial_value": [ - 4619 + 4615 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "created_by": [ - 268 + 269 ], "dismissible": [ - 5 + 6 ], "expires_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "is_active": [ - 5 + 6 ], "message": [ - 83 + 84 ], "title": [ - 83 + 84 ], "type": [ - 1383 + 1384 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "system_alerts_sum_fields": { "created_by": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 4605 + 4601 ], "_set": [ - 4614 + 4610 ], "where": [ - 4603 + 4599 ], "__typename": [ - 83 + 84 ] }, "system_alerts_var_pop_fields": { "created_by": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "system_alerts_var_samp_fields": { "created_by": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "system_alerts_variance_fields": { "created_by": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_invites": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "invited_by": [ - 4335 + 4331 ], "invited_by_player_steam_id": [ - 268 + 269 ], "player": [ - 4335 + 4331 ], "steam_id": [ - 268 + 269 ], "team": [ - 4909 + 4905 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_invites_aggregate": { "aggregate": [ - 4630 + 4626 ], "nodes": [ - 4626 + 4622 ], "__typename": [ - 83 + 84 ] }, "team_invites_aggregate_bool_exp": { "count": [ - 4629 + 4625 ], "__typename": [ - 83 + 84 ] }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 4647 + 4643 ], "distinct": [ - 5 + 6 ], "filter": [ - 4635 + 4631 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "team_invites_aggregate_fields": { "avg": [ - 4633 + 4629 ], "count": [ - 40, + 41, { "columns": [ - 4647, + 4643, "[team_invites_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4639 + 4635 ], "min": [ - 4641 + 4637 ], "stddev": [ - 4649 + 4645 ], "stddev_pop": [ - 4651 + 4647 ], "stddev_samp": [ - 4653 + 4649 ], "sum": [ - 4657 + 4653 ], "var_pop": [ - 4661 + 4657 ], "var_samp": [ - 4663 + 4659 ], "variance": [ - 4665 + 4661 ], "__typename": [ - 83 + 84 ] }, "team_invites_aggregate_order_by": { "avg": [ - 4634 + 4630 ], "count": [ - 3377 + 3373 ], "max": [ - 4640 + 4636 ], "min": [ - 4642 + 4638 ], "stddev": [ - 4650 + 4646 ], "stddev_pop": [ - 4652 + 4648 ], "stddev_samp": [ - 4654 + 4650 ], "sum": [ - 4658 + 4654 ], "var_pop": [ - 4662 + 4658 ], "var_samp": [ - 4664 + 4660 ], "variance": [ - 4666 + 4662 ], "__typename": [ - 83 + 84 ] }, "team_invites_arr_rel_insert_input": { "data": [ - 4638 + 4634 ], "on_conflict": [ - 4644 + 4640 ], "__typename": [ - 83 + 84 ] }, "team_invites_avg_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_invites_bool_exp": { "_and": [ - 4635 + 4631 ], "_not": [ - 4635 + 4631 ], "_or": [ - 4635 + 4631 ], "created_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "invited_by": [ - 4339 + 4335 ], "invited_by_player_steam_id": [ - 270 + 271 ], "player": [ - 4339 + 4335 ], "steam_id": [ - 270 + 271 ], "team": [ - 4920 + 4916 ], "team_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "team_invites_constraint": {}, "team_invites_inc_input": { "invited_by_player_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "team_invites_insert_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "invited_by": [ - 4346 + 4342 ], "invited_by_player_steam_id": [ - 268 + 269 ], "player": [ - 4346 + 4342 ], "steam_id": [ - 268 + 269 ], "team": [ - 4929 + 4925 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_invites_max_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "invited_by_player_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_invites_max_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_invites_min_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "invited_by_player_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_invites_min_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_invites_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4626 + 4622 ], "__typename": [ - 83 + 84 ] }, "team_invites_on_conflict": { "constraint": [ - 4636 + 4632 ], "update_columns": [ - 4659 + 4655 ], "where": [ - 4635 + 4631 ], "__typename": [ - 83 + 84 ] }, "team_invites_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "invited_by": [ - 4348 + 4344 ], "invited_by_player_steam_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "steam_id": [ - 3377 + 3373 ], "team": [ - 4931 + 4927 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_invites_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "invited_by_player_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_invites_stddev_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_invites_stddev_pop_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_invites_stddev_samp_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_invites_stream_cursor_input": { "initial_value": [ - 4656 + 4652 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "invited_by_player_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_invites_sum_fields": { "invited_by_player_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 4637 + 4633 ], "_set": [ - 4648 + 4644 ], "where": [ - 4635 + 4631 ], "__typename": [ - 83 + 84 ] }, "team_invites_var_pop_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_invites_var_samp_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_invites_variance_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_roster": { "coach": [ - 5 + 6 ], "player": [ - 4335 + 4331 ], "player_steam_id": [ - 268 + 269 ], "role": [ - 1403 + 1404 ], "roster_image_url": [ - 83 + 84 ], "status": [ - 1424 + 1425 ], "team": [ - 4909 + 4905 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_roster_aggregate": { "aggregate": [ - 4673 + 4669 ], "nodes": [ - 4667 + 4663 ], "__typename": [ - 83 + 84 ] }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 4670 + 4666 ], "bool_or": [ - 4671 + 4667 ], "count": [ - 4672 + 4668 ], "__typename": [ - 83 + 84 ] }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 4691 + 4687 ], "distinct": [ - 5 + 6 ], "filter": [ - 4678 + 4674 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 4692 + 4688 ], "distinct": [ - 5 + 6 ], "filter": [ - 4678 + 4674 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 4690 + 4686 ], "distinct": [ - 5 + 6 ], "filter": [ - 4678 + 4674 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "team_roster_aggregate_fields": { "avg": [ - 4676 + 4672 ], "count": [ - 40, + 41, { "columns": [ - 4690, + 4686, "[team_roster_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4682 + 4678 ], "min": [ - 4684 + 4680 ], "stddev": [ - 4694 + 4690 ], "stddev_pop": [ - 4696 + 4692 ], "stddev_samp": [ - 4698 + 4694 ], "sum": [ - 4702 + 4698 ], "var_pop": [ - 4706 + 4702 ], "var_samp": [ - 4708 + 4704 ], "variance": [ - 4710 + 4706 ], "__typename": [ - 83 + 84 ] }, "team_roster_aggregate_order_by": { "avg": [ - 4677 + 4673 ], "count": [ - 3377 + 3373 ], "max": [ - 4683 + 4679 ], "min": [ - 4685 + 4681 ], "stddev": [ - 4695 + 4691 ], "stddev_pop": [ - 4697 + 4693 ], "stddev_samp": [ - 4699 + 4695 ], "sum": [ - 4703 + 4699 ], "var_pop": [ - 4707 + 4703 ], "var_samp": [ - 4709 + 4705 ], "variance": [ - 4711 + 4707 ], "__typename": [ - 83 + 84 ] }, "team_roster_arr_rel_insert_input": { "data": [ - 4681 + 4677 ], "on_conflict": [ - 4687 + 4683 ], "__typename": [ - 83 + 84 ] }, "team_roster_avg_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_roster_avg_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_roster_bool_exp": { "_and": [ - 4678 + 4674 ], "_not": [ - 4678 + 4674 ], "_or": [ - 4678 + 4674 ], "coach": [ - 6 + 7 ], "player": [ - 4339 + 4335 ], "player_steam_id": [ - 270 + 271 ], "role": [ - 1404 + 1405 ], "roster_image_url": [ - 85 + 86 ], "status": [ - 1425 + 1426 ], "team": [ - 4920 + 4916 ], "team_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "team_roster_constraint": {}, "team_roster_inc_input": { "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "team_roster_insert_input": { "coach": [ - 5 + 6 ], "player": [ - 4346 + 4342 ], "player_steam_id": [ - 268 + 269 ], "role": [ - 1403 + 1404 ], "roster_image_url": [ - 83 + 84 ], "status": [ - 1424 + 1425 ], "team": [ - 4929 + 4925 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_roster_max_fields": { "player_steam_id": [ - 268 + 269 ], "roster_image_url": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_roster_max_order_by": { "player_steam_id": [ - 3377 + 3373 ], "roster_image_url": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_roster_min_fields": { "player_steam_id": [ - 268 + 269 ], "roster_image_url": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_roster_min_order_by": { "player_steam_id": [ - 3377 + 3373 ], "roster_image_url": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_roster_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4667 + 4663 ], "__typename": [ - 83 + 84 ] }, "team_roster_on_conflict": { "constraint": [ - 4679 + 4675 ], "update_columns": [ - 4704 + 4700 ], "where": [ - 4678 + 4674 ], "__typename": [ - 83 + 84 ] }, "team_roster_order_by": { "coach": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "player_steam_id": [ - 3377 + 3373 ], "role": [ - 3377 + 3373 ], "roster_image_url": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "team": [ - 4931 + 4927 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_roster_pk_columns_input": { "player_steam_id": [ - 268 + 269 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_roster_select_column": {}, @@ -106397,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": [ - 268 + 269 ], "role": [ - 1403 + 1404 ], "roster_image_url": [ - 83 + 84 ], "status": [ - 1424 + 1425 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_roster_stddev_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_roster_stddev_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_roster_stddev_pop_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_roster_stddev_samp_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_roster_stream_cursor_input": { "initial_value": [ - 4701 + 4697 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "team_roster_stream_cursor_value_input": { "coach": [ - 5 + 6 ], "player_steam_id": [ - 268 + 269 ], "role": [ - 1403 + 1404 ], "roster_image_url": [ - 83 + 84 ], "status": [ - 1424 + 1425 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_roster_sum_fields": { "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "team_roster_sum_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 4680 + 4676 ], "_set": [ - 4693 + 4689 ], "where": [ - 4678 + 4674 ], "__typename": [ - 83 + 84 ] }, "team_roster_var_pop_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_roster_var_samp_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_roster_variance_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_roster_variance_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts": { "created_at": [ - 4958 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "last_notified_at": [ - 4958 + 4954 ], "regions": [ - 83 + 84 ], "team": [ - 4909 + 4905 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_aggregate": { "aggregate": [ - 4714 + 4710 ], "nodes": [ - 4712 + 4708 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 4715 + 4711 ], "count": [ - 40, + 41, { "columns": [ - 4726, + 4722, "[team_scrim_alerts_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4720 + 4716 ], "min": [ - 4721 + 4717 ], "stddev": [ - 4728 + 4724 ], "stddev_pop": [ - 4729 + 4725 ], "stddev_samp": [ - 4730 + 4726 ], "sum": [ - 4733 + 4729 ], "var_pop": [ - 4736 + 4732 ], "var_samp": [ - 4737 + 4733 ], "variance": [ - 4738 + 4734 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_avg_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_bool_exp": { "_and": [ - 4716 + 4712 ], "_not": [ - 4716 + 4712 ], "_or": [ - 4716 + 4712 ], "created_at": [ - 4959 + 4955 ], "elo_max": [ - 41 + 42 ], "elo_min": [ - 41 + 42 ], "enabled": [ - 6 + 7 ], "id": [ - 5460 + 5456 ], "last_notified_at": [ - 4959 + 4955 ], "regions": [ - 84 + 85 ], "team": [ - 4920 + 4916 ], "team_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_constraint": {}, "team_scrim_alerts_inc_input": { "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_insert_input": { "created_at": [ - 4958 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "last_notified_at": [ - 4958 + 4954 ], "regions": [ - 83 + 84 ], "team": [ - 4929 + 4925 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_max_fields": { "created_at": [ - 4958 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "last_notified_at": [ - 4958 + 4954 ], "regions": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_min_fields": { "created_at": [ - 4958 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "last_notified_at": [ - 4958 + 4954 ], "regions": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4712 + 4708 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_on_conflict": { "constraint": [ - 4717 + 4713 ], "update_columns": [ - 4734 + 4730 ], "where": [ - 4716 + 4712 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_order_by": { "created_at": [ - 3377 + 3373 ], "elo_max": [ - 3377 + 3373 ], "elo_min": [ - 3377 + 3373 ], "enabled": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "last_notified_at": [ - 3377 + 3373 ], "regions": [ - 3377 + 3373 ], "team": [ - 4931 + 4927 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4958 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "last_notified_at": [ - 4958 + 4954 ], "regions": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_stddev_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_stddev_pop_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_stddev_samp_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 4732 + 4728 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "last_notified_at": [ - 4958 + 4954 ], "regions": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_sum_fields": { "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 4718 + 4714 ], "_set": [ - 4727 + 4723 ], "where": [ - 4716 + 4712 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_var_pop_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_var_samp_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_alerts_variance_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability": { "created_at": [ - 4958 + 4954 ], "ends_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "recurring_weekly": [ - 5 + 6 ], "starts_at": [ - 4958 + 4954 ], "team": [ - 4909 + 4905 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_aggregate": { "aggregate": [ - 4745 + 4741 ], "nodes": [ - 4739 + 4735 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 4742 + 4738 ], "bool_or": [ - 4743 + 4739 ], "count": [ - 4744 + 4740 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 4760 + 4756 ], "distinct": [ - 5 + 6 ], "filter": [ - 4748 + 4744 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 4761 + 4757 ], "distinct": [ - 5 + 6 ], "filter": [ - 4748 + 4744 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 4759 + 4755 ], "distinct": [ - 5 + 6 ], "filter": [ - 4748 + 4744 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 4759, + 4755, "[team_scrim_availability_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4751 + 4747 ], "min": [ - 4753 + 4749 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_aggregate_order_by": { "count": [ - 3377 + 3373 ], "max": [ - 4752 + 4748 ], "min": [ - 4754 + 4750 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 4750 + 4746 ], "on_conflict": [ - 4756 + 4752 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_bool_exp": { "_and": [ - 4748 + 4744 ], "_not": [ - 4748 + 4744 ], "_or": [ - 4748 + 4744 ], "created_at": [ - 4959 + 4955 ], "ends_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "recurring_weekly": [ - 6 + 7 ], "starts_at": [ - 4959 + 4955 ], "team": [ - 4920 + 4916 ], "team_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4958 + 4954 ], "ends_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "recurring_weekly": [ - 5 + 6 ], "starts_at": [ - 4958 + 4954 ], "team": [ - 4929 + 4925 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_max_fields": { "created_at": [ - 4958 + 4954 ], "ends_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "starts_at": [ - 4958 + 4954 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_max_order_by": { "created_at": [ - 3377 + 3373 ], "ends_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "starts_at": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_min_fields": { "created_at": [ - 4958 + 4954 ], "ends_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "starts_at": [ - 4958 + 4954 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_min_order_by": { "created_at": [ - 3377 + 3373 ], "ends_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "starts_at": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4739 + 4735 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_on_conflict": { "constraint": [ - 4749 + 4745 ], "update_columns": [ - 4765 + 4761 ], "where": [ - 4748 + 4744 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_order_by": { "created_at": [ - 3377 + 3373 ], "ends_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "recurring_weekly": [ - 3377 + 3373 ], "starts_at": [ - 3377 + 3373 ], "team": [ - 4931 + 4927 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_select_column": {}, @@ -107400,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": [ - 4958 + 4954 ], "ends_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "recurring_weekly": [ - 5 + 6 ], "starts_at": [ - 4958 + 4954 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 4764 + 4760 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "ends_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "recurring_weekly": [ - 5 + 6 ], "starts_at": [ - 4958 + 4954 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 4762 + 4758 ], "where": [ - 4748 + 4744 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "proposed_by": [ - 4335 + 4331 ], "proposed_by_steam_id": [ - 268 + 269 ], "proposed_by_team": [ - 4909 + 4905 ], "proposed_by_team_id": [ - 5458 + 5454 ], "proposed_scheduled_at": [ - 4958 + 4954 ], "request": [ - 4808 + 4804 ], "request_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 4771 + 4767 ], "nodes": [ - 4767 + 4763 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 4770 + 4766 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 4788 + 4784 ], "distinct": [ - 5 + 6 ], "filter": [ - 4776 + 4772 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 4774 + 4770 ], "count": [ - 40, + 41, { "columns": [ - 4788, + 4784, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4780 + 4776 ], "min": [ - 4782 + 4778 ], "stddev": [ - 4790 + 4786 ], "stddev_pop": [ - 4792 + 4788 ], "stddev_samp": [ - 4794 + 4790 ], "sum": [ - 4798 + 4794 ], "var_pop": [ - 4802 + 4798 ], "var_samp": [ - 4804 + 4800 ], "variance": [ - 4806 + 4802 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 4775 + 4771 ], "count": [ - 3377 + 3373 ], "max": [ - 4781 + 4777 ], "min": [ - 4783 + 4779 ], "stddev": [ - 4791 + 4787 ], "stddev_pop": [ - 4793 + 4789 ], "stddev_samp": [ - 4795 + 4791 ], "sum": [ - 4799 + 4795 ], "var_pop": [ - 4803 + 4799 ], "var_samp": [ - 4805 + 4801 ], "variance": [ - 4807 + 4803 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 4779 + 4775 ], "on_conflict": [ - 4785 + 4781 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_avg_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 4776 + 4772 ], "_not": [ - 4776 + 4772 ], "_or": [ - 4776 + 4772 ], "created_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "proposed_by": [ - 4339 + 4335 ], "proposed_by_steam_id": [ - 270 + 271 ], "proposed_by_team": [ - 4920 + 4916 ], "proposed_by_team_id": [ - 5460 + 5456 ], "proposed_scheduled_at": [ - 4959 + 4955 ], "request": [ - 4819 + 4815 ], "request_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_constraint": {}, "team_scrim_request_proposals_inc_input": { "proposed_by_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "proposed_by": [ - 4346 + 4342 ], "proposed_by_steam_id": [ - 268 + 269 ], "proposed_by_team": [ - 4929 + 4925 ], "proposed_by_team_id": [ - 5458 + 5454 ], "proposed_scheduled_at": [ - 4958 + 4954 ], "request": [ - 4828 + 4824 ], "request_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "proposed_by_steam_id": [ - 268 + 269 ], "proposed_by_team_id": [ - 5458 + 5454 ], "proposed_scheduled_at": [ - 4958 + 4954 ], "request_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "proposed_by_steam_id": [ - 3377 + 3373 ], "proposed_by_team_id": [ - 3377 + 3373 ], "proposed_scheduled_at": [ - 3377 + 3373 ], "request_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "proposed_by_steam_id": [ - 268 + 269 ], "proposed_by_team_id": [ - 5458 + 5454 ], "proposed_scheduled_at": [ - 4958 + 4954 ], "request_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "proposed_by_steam_id": [ - 3377 + 3373 ], "proposed_by_team_id": [ - 3377 + 3373 ], "proposed_scheduled_at": [ - 3377 + 3373 ], "request_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4767 + 4763 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 4777 + 4773 ], "update_columns": [ - 4800 + 4796 ], "where": [ - 4776 + 4772 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "proposed_by": [ - 4348 + 4344 ], "proposed_by_steam_id": [ - 3377 + 3373 ], "proposed_by_team": [ - 4931 + 4927 ], "proposed_by_team_id": [ - 3377 + 3373 ], "proposed_scheduled_at": [ - 3377 + 3373 ], "request": [ - 4830 + 4826 ], "request_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "proposed_by_steam_id": [ - 268 + 269 ], "proposed_by_team_id": [ - 5458 + 5454 ], "proposed_scheduled_at": [ - 4958 + 4954 ], "request_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_stddev_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_stddev_pop_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_stddev_samp_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 4797 + 4793 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "proposed_by_steam_id": [ - 268 + 269 ], "proposed_by_team_id": [ - 5458 + 5454 ], "proposed_scheduled_at": [ - 4958 + 4954 ], "request_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_sum_fields": { "proposed_by_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 4778 + 4774 ], "_set": [ - 4789 + 4785 ], "where": [ - 4776 + 4772 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_var_pop_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_var_samp_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_variance_fields": { "proposed_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests": { "auto_generated": [ - 5 + 6 ], "awaiting_team": [ - 4909 + 4905 ], "awaiting_team_id": [ - 5458 + 5454 ], "canceled_by_team_id": [ - 5458 + 5454 ], "canceled_late": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "expires_at": [ - 4958 + 4954 ], "from_team": [ - 4909 + 4905 ], "from_team_checked_in": [ - 5 + 6 ], "from_team_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_options": [ - 3019 + 3015 ], "match_options_id": [ - 5458 + 5454 ], "match_outcome": [ - 83 + 84 ], "proposals": [ - 4767, + 4763, { "distinct_on": [ - 4788, + 4784, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4786, + 4782, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4776 + 4772 ] } ], "proposals_aggregate": [ - 4768, + 4764, { "distinct_on": [ - 4788, + 4784, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4786, + 4782, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4776 + 4772 ] } ], "proposed_scheduled_at": [ - 4958 + 4954 ], "region": [ - 83 + 84 ], "requested_by": [ - 4335 + 4331 ], "requested_by_steam_id": [ - 268 + 269 ], "responded_at": [ - 4958 + 4954 ], "status": [ - 1323 + 1324 ], "to_team": [ - 4909 + 4905 ], "to_team_checked_in": [ - 5 + 6 ], "to_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_aggregate": { "aggregate": [ - 4814 + 4810 ], "nodes": [ - 4808 + 4804 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 4811 + 4807 ], "bool_or": [ - 4812 + 4808 ], "count": [ - 4813 + 4809 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 4833 + 4829 ], "distinct": [ - 5 + 6 ], "filter": [ - 4819 + 4815 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 4834 + 4830 ], "distinct": [ - 5 + 6 ], "filter": [ - 4819 + 4815 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 4832 + 4828 ], "distinct": [ - 5 + 6 ], "filter": [ - 4819 + 4815 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_aggregate_fields": { "avg": [ - 4817 + 4813 ], "count": [ - 40, + 41, { "columns": [ - 4832, + 4828, "[team_scrim_requests_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4823 + 4819 ], "min": [ - 4825 + 4821 ], "stddev": [ - 4836 + 4832 ], "stddev_pop": [ - 4838 + 4834 ], "stddev_samp": [ - 4840 + 4836 ], "sum": [ - 4844 + 4840 ], "var_pop": [ - 4848 + 4844 ], "var_samp": [ - 4850 + 4846 ], "variance": [ - 4852 + 4848 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 4818 + 4814 ], "count": [ - 3377 + 3373 ], "max": [ - 4824 + 4820 ], "min": [ - 4826 + 4822 ], "stddev": [ - 4837 + 4833 ], "stddev_pop": [ - 4839 + 4835 ], "stddev_samp": [ - 4841 + 4837 ], "sum": [ - 4845 + 4841 ], "var_pop": [ - 4849 + 4845 ], "var_samp": [ - 4851 + 4847 ], "variance": [ - 4853 + 4849 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 4822 + 4818 ], "on_conflict": [ - 4829 + 4825 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_avg_fields": { "requested_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_bool_exp": { "_and": [ - 4819 + 4815 ], "_not": [ - 4819 + 4815 ], "_or": [ - 4819 + 4815 ], "auto_generated": [ - 6 + 7 ], "awaiting_team": [ - 4920 + 4916 ], "awaiting_team_id": [ - 5460 + 5456 ], "canceled_by_team_id": [ - 5460 + 5456 ], "canceled_late": [ - 6 + 7 ], "created_at": [ - 4959 + 4955 ], "expires_at": [ - 4959 + 4955 ], "from_team": [ - 4920 + 4916 ], "from_team_checked_in": [ - 6 + 7 ], "from_team_id": [ - 5460 + 5456 ], "id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_options": [ - 3030 + 3026 ], "match_options_id": [ - 5460 + 5456 ], "match_outcome": [ - 85 + 86 ], "proposals": [ - 4776 + 4772 ], "proposals_aggregate": [ - 4769 + 4765 ], "proposed_scheduled_at": [ - 4959 + 4955 ], "region": [ - 85 + 86 ], "requested_by": [ - 4339 + 4335 ], "requested_by_steam_id": [ - 270 + 271 ], "responded_at": [ - 4959 + 4955 ], "status": [ - 1324 + 1325 ], "to_team": [ - 4920 + 4916 ], "to_team_checked_in": [ - 6 + 7 ], "to_team_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_constraint": {}, "team_scrim_requests_inc_input": { "requested_by_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_insert_input": { "auto_generated": [ - 5 + 6 ], "awaiting_team": [ - 4929 + 4925 ], "awaiting_team_id": [ - 5458 + 5454 ], "canceled_by_team_id": [ - 5458 + 5454 ], "canceled_late": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "expires_at": [ - 4958 + 4954 ], "from_team": [ - 4929 + 4925 ], "from_team_checked_in": [ - 5 + 6 ], "from_team_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_options": [ - 3039 + 3035 ], "match_options_id": [ - 5458 + 5454 ], "match_outcome": [ - 83 + 84 ], "proposals": [ - 4773 + 4769 ], "proposed_scheduled_at": [ - 4958 + 4954 ], "region": [ - 83 + 84 ], "requested_by": [ - 4346 + 4342 ], "requested_by_steam_id": [ - 268 + 269 ], "responded_at": [ - 4958 + 4954 ], "status": [ - 1323 + 1324 ], "to_team": [ - 4929 + 4925 ], "to_team_checked_in": [ - 5 + 6 ], "to_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 5458 + 5454 ], "canceled_by_team_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "expires_at": [ - 4958 + 4954 ], "from_team_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "match_outcome": [ - 83 + 84 ], "proposed_scheduled_at": [ - 4958 + 4954 ], "region": [ - 83 + 84 ], "requested_by_steam_id": [ - 268 + 269 ], "responded_at": [ - 4958 + 4954 ], "to_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 3377 + 3373 ], "canceled_by_team_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "expires_at": [ - 3377 + 3373 ], "from_team_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "match_outcome": [ - 3377 + 3373 ], "proposed_scheduled_at": [ - 3377 + 3373 ], "region": [ - 3377 + 3373 ], "requested_by_steam_id": [ - 3377 + 3373 ], "responded_at": [ - 3377 + 3373 ], "to_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 5458 + 5454 ], "canceled_by_team_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "expires_at": [ - 4958 + 4954 ], "from_team_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "match_outcome": [ - 83 + 84 ], "proposed_scheduled_at": [ - 4958 + 4954 ], "region": [ - 83 + 84 ], "requested_by_steam_id": [ - 268 + 269 ], "responded_at": [ - 4958 + 4954 ], "to_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 3377 + 3373 ], "canceled_by_team_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "expires_at": [ - 3377 + 3373 ], "from_team_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "match_outcome": [ - 3377 + 3373 ], "proposed_scheduled_at": [ - 3377 + 3373 ], "region": [ - 3377 + 3373 ], "requested_by_steam_id": [ - 3377 + 3373 ], "responded_at": [ - 3377 + 3373 ], "to_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4808 + 4804 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 4822 + 4818 ], "on_conflict": [ - 4829 + 4825 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_on_conflict": { "constraint": [ - 4820 + 4816 ], "update_columns": [ - 4846 + 4842 ], "where": [ - 4819 + 4815 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_order_by": { "auto_generated": [ - 3377 + 3373 ], "awaiting_team": [ - 4931 + 4927 ], "awaiting_team_id": [ - 3377 + 3373 ], "canceled_by_team_id": [ - 3377 + 3373 ], "canceled_late": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "expires_at": [ - 3377 + 3373 ], "from_team": [ - 4931 + 4927 ], "from_team_checked_in": [ - 3377 + 3373 ], "from_team_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_options": [ - 3041 + 3037 ], "match_options_id": [ - 3377 + 3373 ], "match_outcome": [ - 3377 + 3373 ], "proposals_aggregate": [ - 4772 + 4768 ], "proposed_scheduled_at": [ - 3377 + 3373 ], "region": [ - 3377 + 3373 ], "requested_by": [ - 4348 + 4344 ], "requested_by_steam_id": [ - 3377 + 3373 ], "responded_at": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "to_team": [ - 4931 + 4927 ], "to_team_checked_in": [ - 3377 + 3373 ], "to_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_select_column": {}, @@ -108890,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": [ - 5458 + 5454 ], "canceled_by_team_id": [ - 5458 + 5454 ], "canceled_late": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "expires_at": [ - 4958 + 4954 ], "from_team_checked_in": [ - 5 + 6 ], "from_team_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "match_outcome": [ - 83 + 84 ], "proposed_scheduled_at": [ - 4958 + 4954 ], "region": [ - 83 + 84 ], "requested_by_steam_id": [ - 268 + 269 ], "responded_at": [ - 4958 + 4954 ], "status": [ - 1323 + 1324 ], "to_team_checked_in": [ - 5 + 6 ], "to_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_stddev_fields": { "requested_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_stddev_pop_fields": { "requested_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_stddev_samp_fields": { "requested_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 4843 + 4839 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_stream_cursor_value_input": { "auto_generated": [ - 5 + 6 ], "awaiting_team_id": [ - 5458 + 5454 ], "canceled_by_team_id": [ - 5458 + 5454 ], "canceled_late": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "expires_at": [ - 4958 + 4954 ], "from_team_checked_in": [ - 5 + 6 ], "from_team_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "match_outcome": [ - 83 + 84 ], "proposed_scheduled_at": [ - 4958 + 4954 ], "region": [ - 83 + 84 ], "requested_by_steam_id": [ - 268 + 269 ], "responded_at": [ - 4958 + 4954 ], "status": [ - 1323 + 1324 ], "to_team_checked_in": [ - 5 + 6 ], "to_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_sum_fields": { "requested_by_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 4821 + 4817 ], "_set": [ - 4835 + 4831 ], "where": [ - 4819 + 4815 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_var_pop_fields": { "requested_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_var_samp_fields": { "requested_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_variance_fields": { "requested_by_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings": { "allow_outside_availability": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "map_ids": [ - 5458 + 5454 ], "notes": [ - 83 + 84 ], "regions": [ - 83 + 84 ], "team": [ - 4909 + 4905 ], "team_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_aggregate": { "aggregate": [ - 4856 + 4852 ], "nodes": [ - 4854 + 4850 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_aggregate_fields": { "avg": [ - 4857 + 4853 ], "count": [ - 40, + 41, { "columns": [ - 4869, + 4865, "[team_scrim_settings_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4862 + 4858 ], "min": [ - 4863 + 4859 ], "stddev": [ - 4871 + 4867 ], "stddev_pop": [ - 4872 + 4868 ], "stddev_samp": [ - 4873 + 4869 ], "sum": [ - 4876 + 4872 ], "var_pop": [ - 4879 + 4875 ], "var_samp": [ - 4880 + 4876 ], "variance": [ - 4881 + 4877 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_avg_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_bool_exp": { "_and": [ - 4858 + 4854 ], "_not": [ - 4858 + 4854 ], "_or": [ - 4858 + 4854 ], "allow_outside_availability": [ - 6 + 7 ], "created_at": [ - 4959 + 4955 ], "elo_max": [ - 41 + 42 ], "elo_min": [ - 41 + 42 ], "enabled": [ - 6 + 7 ], "id": [ - 5460 + 5456 ], "map_ids": [ - 5459 + 5455 ], "notes": [ - 85 + 86 ], "regions": [ - 84 + 85 ], "team": [ - 4920 + 4916 ], "team_id": [ - 5460 + 5456 ], "updated_at": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_constraint": {}, "team_scrim_settings_inc_input": { "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_insert_input": { "allow_outside_availability": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "map_ids": [ - 5458 + 5454 ], "notes": [ - 83 + 84 ], "regions": [ - 83 + 84 ], "team": [ - 4929 + 4925 ], "team_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_max_fields": { "created_at": [ - 4958 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "map_ids": [ - 5458 + 5454 ], "notes": [ - 83 + 84 ], "regions": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_min_fields": { "created_at": [ - 4958 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "map_ids": [ - 5458 + 5454 ], "notes": [ - 83 + 84 ], "regions": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4854 + 4850 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 4861 + 4857 ], "on_conflict": [ - 4866 + 4862 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_on_conflict": { "constraint": [ - 4859 + 4855 ], "update_columns": [ - 4877 + 4873 ], "where": [ - 4858 + 4854 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "elo_max": [ - 3377 + 3373 ], "elo_min": [ - 3377 + 3373 ], "enabled": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "map_ids": [ - 3377 + 3373 ], "notes": [ - 3377 + 3373 ], "regions": [ - 3377 + 3373 ], "team": [ - 4931 + 4927 ], "team_id": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_select_column": {}, "team_scrim_settings_set_input": { "allow_outside_availability": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "map_ids": [ - 5458 + 5454 ], "notes": [ - 83 + 84 ], "regions": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_stddev_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_stddev_pop_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_stddev_samp_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 4875 + 4871 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_stream_cursor_value_input": { "allow_outside_availability": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "enabled": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "map_ids": [ - 5458 + 5454 ], "notes": [ - 83 + 84 ], "regions": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_sum_fields": { "elo_max": [ - 40 + 41 ], "elo_min": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 4860 + 4856 ], "_set": [ - 4870 + 4866 ], "where": [ - 4858 + 4854 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_var_pop_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_var_samp_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_scrim_settings_variance_fields": { "elo_max": [ - 31 + 32 ], "elo_min": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_suggestions": { "created_at": [ - 4958 + 4954 ], "group_hash": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "last_notified_at": [ - 4958 + 4954 ], "member_steam_ids": [ - 268 + 269 ], "status": [ - 83 + 84 ], "together_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_aggregate": { "aggregate": [ - 4884 + 4880 ], "nodes": [ - 4882 + 4878 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_aggregate_fields": { "avg": [ - 4885 + 4881 ], "count": [ - 40, + 41, { "columns": [ - 4896, + 4892, "[team_suggestions_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4890 + 4886 ], "min": [ - 4891 + 4887 ], "stddev": [ - 4898 + 4894 ], "stddev_pop": [ - 4899 + 4895 ], "stddev_samp": [ - 4900 + 4896 ], "sum": [ - 4903 + 4899 ], "var_pop": [ - 4906 + 4902 ], "var_samp": [ - 4907 + 4903 ], "variance": [ - 4908 + 4904 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_avg_fields": { "together_count": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_bool_exp": { "_and": [ - 4886 + 4882 ], "_not": [ - 4886 + 4882 ], "_or": [ - 4886 + 4882 ], "created_at": [ - 4959 + 4955 ], "group_hash": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "last_notified_at": [ - 4959 + 4955 ], "member_steam_ids": [ - 269 + 270 ], "status": [ - 85 + 86 ], "together_count": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_constraint": {}, "team_suggestions_inc_input": { "together_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_insert_input": { "created_at": [ - 4958 + 4954 ], "group_hash": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "last_notified_at": [ - 4958 + 4954 ], "member_steam_ids": [ - 268 + 269 ], "status": [ - 83 + 84 ], "together_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_max_fields": { "created_at": [ - 4958 + 4954 ], "group_hash": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "last_notified_at": [ - 4958 + 4954 ], "member_steam_ids": [ - 268 + 269 ], "status": [ - 83 + 84 ], "together_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_min_fields": { "created_at": [ - 4958 + 4954 ], "group_hash": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "last_notified_at": [ - 4958 + 4954 ], "member_steam_ids": [ - 268 + 269 ], "status": [ - 83 + 84 ], "together_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4882 + 4878 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_on_conflict": { "constraint": [ - 4887 + 4883 ], "update_columns": [ - 4904 + 4900 ], "where": [ - 4886 + 4882 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_order_by": { "created_at": [ - 3377 + 3373 ], "group_hash": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "last_notified_at": [ - 3377 + 3373 ], "member_steam_ids": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "together_count": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4958 + 4954 ], "group_hash": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "last_notified_at": [ - 4958 + 4954 ], "member_steam_ids": [ - 268 + 269 ], "status": [ - 83 + 84 ], "together_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_stddev_fields": { "together_count": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_stddev_pop_fields": { "together_count": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_stddev_samp_fields": { "together_count": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 4902 + 4898 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "group_hash": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "last_notified_at": [ - 4958 + 4954 ], "member_steam_ids": [ - 268 + 269 ], "status": [ - 83 + 84 ], "together_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_sum_fields": { "together_count": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 4888 + 4884 ], "_set": [ - 4897 + 4893 ], "where": [ - 4886 + 4882 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_var_pop_fields": { "together_count": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_var_samp_fields": { "together_count": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "team_suggestions_variance_fields": { "together_count": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "teams": { "avatar_url": [ - 83 + 84 ], "awards": [ - 199, + 200, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "awards_aggregate": [ - 200, + 201, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "can_change_role": [ - 5 + 6 ], "can_invite": [ - 5 + 6 ], "can_manage_scrims": [ - 5 + 6 ], "can_remove": [ - 5 + 6 ], "captain": [ - 4335 + 4331 ], "captain_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "invites": [ - 4626, + 4622, { "distinct_on": [ - 4647, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4645, + 4641, "[team_invites_order_by!]" ], "where": [ - 4635 + 4631 ] } ], "invites_aggregate": [ - 4627, + 4623, { "distinct_on": [ - 4647, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4645, + 4641, "[team_invites_order_by!]" ], "where": [ - 4635 + 4631 ] } ], "is_organization": [ - 5 + 6 ], "match_lineups": [ - 2815, + 2811, { "distinct_on": [ - 2837, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2835, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2824 + 2820 ] } ], "match_lineups_aggregate": [ - 2816, + 2812, { "distinct_on": [ - 2837, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2835, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2824 + 2820 ] } ], "matches": [ - 3161, + 3157, { "distinct_on": [ - 3185, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3183, + 3179, "[matches_order_by!]" ], "where": [ - 3172 + 3168 ] } ], "name": [ - 83 + 84 ], "owner": [ - 4335 + 4331 ], "owner_steam_id": [ - 268 + 269 ], "ranks": [ - 6160 + 6156 ], "reputation": [ - 6180 + 6176 ], "role": [ - 83 + 84 ], "roster": [ - 4667, + 4663, { "distinct_on": [ - 4690, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4688, + 4684, "[team_roster_order_by!]" ], "where": [ - 4678 + 4674 ] } ], "roster_aggregate": [ - 4668, + 4664, { "distinct_on": [ - 4690, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4688, + 4684, "[team_roster_order_by!]" ], "where": [ - 4678 + 4674 ] } ], "scrim_availability": [ - 4739, + 4735, { "distinct_on": [ - 4759, + 4755, "[team_scrim_availability_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4757, + 4753, "[team_scrim_availability_order_by!]" ], "where": [ - 4748 + 4744 ] } ], "scrim_availability_aggregate": [ - 4740, + 4736, { "distinct_on": [ - 4759, + 4755, "[team_scrim_availability_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4757, + 4753, "[team_scrim_availability_order_by!]" ], "where": [ - 4748 + 4744 ] } ], "scrim_settings": [ - 4854 + 4850 ], "short_name": [ - 83 + 84 ], "tournament_teams": [ - 5352, + 5348, { "distinct_on": [ - 5374, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5372, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5361 + 5357 ] } ], "tournament_teams_aggregate": [ - 5353, + 5349, { "distinct_on": [ - 5374, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5372, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5361 + 5357 ] } ], "__typename": [ - 83 + 84 ] }, "teams_aggregate": { "aggregate": [ - 4915 + 4911 ], "nodes": [ - 4909 + 4905 ], "__typename": [ - 83 + 84 ] }, "teams_aggregate_bool_exp": { "bool_and": [ - 4912 + 4908 ], "bool_or": [ - 4913 + 4909 ], "count": [ - 4914 + 4910 ], "__typename": [ - 83 + 84 ] }, "teams_aggregate_bool_exp_bool_and": { "arguments": [ - 4934 + 4930 ], "distinct": [ - 5 + 6 ], "filter": [ - 4920 + 4916 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "teams_aggregate_bool_exp_bool_or": { "arguments": [ - 4935 + 4931 ], "distinct": [ - 5 + 6 ], "filter": [ - 4920 + 4916 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4933 + 4929 ], "distinct": [ - 5 + 6 ], "filter": [ - 4920 + 4916 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "teams_aggregate_fields": { "avg": [ - 4918 + 4914 ], "count": [ - 40, + 41, { "columns": [ - 4933, + 4929, "[teams_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4924 + 4920 ], "min": [ - 4926 + 4922 ], "stddev": [ - 4937 + 4933 ], "stddev_pop": [ - 4939 + 4935 ], "stddev_samp": [ - 4941 + 4937 ], "sum": [ - 4945 + 4941 ], "var_pop": [ - 4949 + 4945 ], "var_samp": [ - 4951 + 4947 ], "variance": [ - 4953 + 4949 ], "__typename": [ - 83 + 84 ] }, "teams_aggregate_order_by": { "avg": [ - 4919 + 4915 ], "count": [ - 3377 + 3373 ], "max": [ - 4925 + 4921 ], "min": [ - 4927 + 4923 ], "stddev": [ - 4938 + 4934 ], "stddev_pop": [ - 4940 + 4936 ], "stddev_samp": [ - 4942 + 4938 ], "sum": [ - 4946 + 4942 ], "var_pop": [ - 4950 + 4946 ], "var_samp": [ - 4952 + 4948 ], "variance": [ - 4954 + 4950 ], "__typename": [ - 83 + 84 ] }, "teams_arr_rel_insert_input": { "data": [ - 4923 + 4919 ], "on_conflict": [ - 4930 + 4926 ], "__typename": [ - 83 + 84 ] }, "teams_avg_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "teams_avg_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "teams_bool_exp": { "_and": [ - 4920 + 4916 ], "_not": [ - 4920 + 4916 ], "_or": [ - 4920 + 4916 ], "avatar_url": [ - 85 + 86 ], "awards": [ - 208 + 209 ], "awards_aggregate": [ - 201 + 202 ], "can_change_role": [ - 6 + 7 ], "can_invite": [ - 6 + 7 ], "can_manage_scrims": [ - 6 + 7 ], "can_remove": [ - 6 + 7 ], "captain": [ - 4339 + 4335 ], "captain_steam_id": [ - 270 + 271 ], "id": [ - 5460 + 5456 ], "invites": [ - 4635 + 4631 ], "invites_aggregate": [ - 4628 + 4624 ], "is_organization": [ - 6 + 7 ], "match_lineups": [ - 2824 + 2820 ], "match_lineups_aggregate": [ - 2817 + 2813 ], "matches": [ - 3172 + 3168 ], "name": [ - 85 + 86 ], "owner": [ - 4339 + 4335 ], "owner_steam_id": [ - 270 + 271 ], "ranks": [ - 6164 + 6160 ], "reputation": [ - 6184 + 6180 ], "role": [ - 85 + 86 ], "roster": [ - 4678 + 4674 ], "roster_aggregate": [ - 4669 + 4665 ], "scrim_availability": [ - 4748 + 4744 ], "scrim_availability_aggregate": [ - 4741 + 4737 ], "scrim_settings": [ - 4858 + 4854 ], "short_name": [ - 85 + 86 ], "tournament_teams": [ - 5361 + 5357 ], "tournament_teams_aggregate": [ - 5354 + 5350 ], "__typename": [ - 83 + 84 ] }, "teams_constraint": {}, "teams_inc_input": { "captain_steam_id": [ - 268 + 269 ], "owner_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "teams_insert_input": { "avatar_url": [ - 83 + 84 ], "awards": [ - 205 + 206 ], "captain": [ - 4346 + 4342 ], "captain_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "invites": [ - 4632 + 4628 ], "is_organization": [ - 5 + 6 ], "match_lineups": [ - 2821 + 2817 ], "name": [ - 83 + 84 ], "owner": [ - 4346 + 4342 ], "owner_steam_id": [ - 268 + 269 ], "ranks": [ - 6168 + 6164 ], "reputation": [ - 6188 + 6184 ], "roster": [ - 4675 + 4671 ], "scrim_availability": [ - 4747 + 4743 ], "scrim_settings": [ - 4865 + 4861 ], "short_name": [ - 83 + 84 ], "tournament_teams": [ - 5358 + 5354 ], "__typename": [ - 83 + 84 ] }, "teams_max_fields": { "avatar_url": [ - 83 + 84 ], "captain_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "owner_steam_id": [ - 268 + 269 ], "role": [ - 83 + 84 ], "short_name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "teams_max_order_by": { "avatar_url": [ - 3377 + 3373 ], "captain_steam_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "short_name": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "teams_min_fields": { "avatar_url": [ - 83 + 84 ], "captain_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "owner_steam_id": [ - 268 + 269 ], "role": [ - 83 + 84 ], "short_name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "teams_min_order_by": { "avatar_url": [ - 3377 + 3373 ], "captain_steam_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "short_name": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "teams_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4909 + 4905 ], "__typename": [ - 83 + 84 ] }, "teams_obj_rel_insert_input": { "data": [ - 4923 + 4919 ], "on_conflict": [ - 4930 + 4926 ], "__typename": [ - 83 + 84 ] }, "teams_on_conflict": { "constraint": [ - 4921 + 4917 ], "update_columns": [ - 4947 + 4943 ], "where": [ - 4920 + 4916 ], "__typename": [ - 83 + 84 ] }, "teams_order_by": { "avatar_url": [ - 3377 + 3373 ], "awards_aggregate": [ - 204 + 205 ], "can_change_role": [ - 3377 + 3373 ], "can_invite": [ - 3377 + 3373 ], "can_manage_scrims": [ - 3377 + 3373 ], "can_remove": [ - 3377 + 3373 ], "captain": [ - 4348 + 4344 ], "captain_steam_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "invites_aggregate": [ - 4631 + 4627 ], "is_organization": [ - 3377 + 3373 ], "match_lineups_aggregate": [ - 2820 + 2816 ], "matches_aggregate": [ - 3168 + 3164 ], "name": [ - 3377 + 3373 ], "owner": [ - 4348 + 4344 ], "owner_steam_id": [ - 3377 + 3373 ], "ranks": [ - 6169 + 6165 ], "reputation": [ - 6189 + 6185 ], "role": [ - 3377 + 3373 ], "roster_aggregate": [ - 4674 + 4670 ], "scrim_availability_aggregate": [ - 4746 + 4742 ], "scrim_settings": [ - 4867 + 4863 ], "short_name": [ - 3377 + 3373 ], "tournament_teams_aggregate": [ - 5357 + 5353 ], "__typename": [ - 83 + 84 ] }, "teams_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "teams_select_column": {}, @@ -111035,1971 +110998,1971 @@ export default { "teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns": {}, "teams_set_input": { "avatar_url": [ - 83 + 84 ], "captain_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "is_organization": [ - 5 + 6 ], "name": [ - 83 + 84 ], "owner_steam_id": [ - 268 + 269 ], "short_name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "teams_stddev_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "teams_stddev_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "teams_stddev_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "teams_stddev_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "teams_stream_cursor_input": { "initial_value": [ - 4944 + 4940 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "teams_stream_cursor_value_input": { "avatar_url": [ - 83 + 84 ], "captain_steam_id": [ - 268 + 269 ], "id": [ - 5458 + 5454 ], "is_organization": [ - 5 + 6 ], "name": [ - 83 + 84 ], "owner_steam_id": [ - 268 + 269 ], "short_name": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "teams_sum_fields": { "captain_steam_id": [ - 268 + 269 ], "owner_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "teams_sum_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "teams_update_column": {}, "teams_updates": { "_inc": [ - 4922 + 4918 ], "_set": [ - 4936 + 4932 ], "where": [ - 4920 + 4916 ], "__typename": [ - 83 + 84 ] }, "teams_var_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "teams_var_pop_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "teams_var_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "teams_var_samp_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "teams_variance_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "teams_variance_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "time": {}, "time_comparison_exp": { "_eq": [ - 4955 + 4951 ], "_gt": [ - 4955 + 4951 ], "_gte": [ - 4955 + 4951 ], "_in": [ - 4955 + 4951 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 4955 + 4951 ], "_lte": [ - 4955 + 4951 ], "_neq": [ - 4955 + 4951 ], "_nin": [ - 4955 + 4951 ], "__typename": [ - 83 + 84 ] }, "timestamp": {}, "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4958 + 4954 ], "_gt": [ - 4958 + 4954 ], "_gte": [ - 4958 + 4954 ], "_in": [ - 4958 + 4954 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 4958 + 4954 ], "_lte": [ - 4958 + 4954 ], "_neq": [ - 4958 + 4954 ], "_nin": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "tournament_awards": { "award": [ - 240 + 241 ], "award_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "custom_name": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "image_url": [ - 83 + 84 ], "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "tournament": [ - 5394 + 5390 ], "tournament_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_aggregate": { "aggregate": [ - 4964 + 4960 ], "nodes": [ - 4960 + 4956 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_aggregate_bool_exp": { "count": [ - 4963 + 4959 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_aggregate_bool_exp_count": { "arguments": [ - 4982 + 4978 ], "distinct": [ - 5 + 6 ], "filter": [ - 4969 + 4965 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_aggregate_fields": { "avg": [ - 4967 + 4963 ], "count": [ - 40, + 41, { "columns": [ - 4982, + 4978, "[tournament_awards_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 4973 + 4969 ], "min": [ - 4975 + 4971 ], "stddev": [ - 4984 + 4980 ], "stddev_pop": [ - 4986 + 4982 ], "stddev_samp": [ - 4988 + 4984 ], "sum": [ - 4992 + 4988 ], "var_pop": [ - 4996 + 4992 ], "var_samp": [ - 4998 + 4994 ], "variance": [ - 5000 + 4996 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_aggregate_order_by": { "avg": [ - 4968 + 4964 ], "count": [ - 3377 + 3373 ], "max": [ - 4974 + 4970 ], "min": [ - 4976 + 4972 ], "stddev": [ - 4985 + 4981 ], "stddev_pop": [ - 4987 + 4983 ], "stddev_samp": [ - 4989 + 4985 ], "sum": [ - 4993 + 4989 ], "var_pop": [ - 4997 + 4993 ], "var_samp": [ - 4999 + 4995 ], "variance": [ - 5001 + 4997 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_arr_rel_insert_input": { "data": [ - 4972 + 4968 ], "on_conflict": [ - 4979 + 4975 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_avg_fields": { "placement": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_avg_order_by": { "placement": [ - 3377 + 3373 ], "silhouette": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_bool_exp": { "_and": [ - 4969 + 4965 ], "_not": [ - 4969 + 4965 ], "_or": [ - 4969 + 4965 ], "award": [ - 244 + 245 ], "award_id": [ - 5460 + 5456 ], "created_at": [ - 4959 + 4955 ], "custom_name": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "image_url": [ - 85 + 86 ], "placement": [ - 41 + 42 ], "silhouette": [ - 41 + 42 ], "tournament": [ - 5415 + 5411 ], "tournament_id": [ - 5460 + 5456 ], "updated_at": [ - 4959 + 4955 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_constraint": {}, "tournament_awards_inc_input": { "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_insert_input": { "award": [ - 251 + 252 ], "award_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "custom_name": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "image_url": [ - 83 + 84 ], "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "tournament": [ - 5424 + 5420 ], "tournament_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_max_fields": { "award_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "custom_name": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "image_url": [ - 83 + 84 ], "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "tournament_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_max_order_by": { "award_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "custom_name": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "image_url": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "silhouette": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_min_fields": { "award_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "custom_name": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "image_url": [ - 83 + 84 ], "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "tournament_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_min_order_by": { "award_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "custom_name": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "image_url": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "silhouette": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 4960 + 4956 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_obj_rel_insert_input": { "data": [ - 4972 + 4968 ], "on_conflict": [ - 4979 + 4975 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_on_conflict": { "constraint": [ - 4970 + 4966 ], "update_columns": [ - 4994 + 4990 ], "where": [ - 4969 + 4965 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_order_by": { "award": [ - 253 + 254 ], "award_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "custom_name": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "image_url": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "silhouette": [ - 3377 + 3373 ], "tournament": [ - 5426 + 5422 ], "tournament_id": [ - 3377 + 3373 ], "updated_at": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_select_column": {}, "tournament_awards_set_input": { "award_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "custom_name": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "image_url": [ - 83 + 84 ], "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "tournament_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_stddev_fields": { "placement": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_stddev_order_by": { "placement": [ - 3377 + 3373 ], "silhouette": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_stddev_pop_fields": { "placement": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_stddev_pop_order_by": { "placement": [ - 3377 + 3373 ], "silhouette": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_stddev_samp_fields": { "placement": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_stddev_samp_order_by": { "placement": [ - 3377 + 3373 ], "silhouette": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_stream_cursor_input": { "initial_value": [ - 4991 + 4987 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_stream_cursor_value_input": { "award_id": [ - 5458 + 5454 ], "created_at": [ - 4958 + 4954 ], "custom_name": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "image_url": [ - 83 + 84 ], "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "tournament_id": [ - 5458 + 5454 ], "updated_at": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_sum_fields": { "placement": [ - 40 + 41 ], "silhouette": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_sum_order_by": { "placement": [ - 3377 + 3373 ], "silhouette": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_update_column": {}, "tournament_awards_updates": { "_inc": [ - 4971 + 4967 ], "_set": [ - 4983 + 4979 ], "where": [ - 4969 + 4965 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_var_pop_fields": { "placement": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_var_pop_order_by": { "placement": [ - 3377 + 3373 ], "silhouette": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_var_samp_fields": { "placement": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_var_samp_order_by": { "placement": [ - 3377 + 3373 ], "silhouette": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_variance_fields": { "placement": [ - 31 + 32 ], "silhouette": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_awards_variance_order_by": { "placement": [ - 3377 + 3373 ], "silhouette": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets": { "bye": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "feeding_brackets": [ - 5002, + 4998, { "distinct_on": [ - 5026, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5024, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 5013 + 5009 ] } ], "finished": [ - 5 + 6 ], "group": [ - 3375 + 3371 ], "id": [ - 5458 + 5454 ], "loser_bracket": [ - 5002 + 4998 ], "loser_parent_bracket_id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_number": [ - 40 + 41 ], "match_options_id": [ - 5458 + 5454 ], "options": [ - 3019 + 3015 ], "parent_bracket": [ - 5002 + 4998 ], "parent_bracket_id": [ - 5458 + 5454 ], "path": [ - 83 + 84 ], "round": [ - 40 + 41 ], "scheduled_at": [ - 4958 + 4954 ], "scheduled_eta": [ - 4958 + 4954 ], "scheduling_proposals": [ - 2328, + 2324, { "distinct_on": [ - 2349, + 2345, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2347, + 2343, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2337 + 2333 ] } ], "scheduling_proposals_aggregate": [ - 2329, + 2325, { "distinct_on": [ - 2349, + 2345, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2347, + 2343, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2337 + 2333 ] } ], "stage": [ - 5219 + 5215 ], "team_1": [ - 5352 + 5348 ], "team_1_seed": [ - 40 + 41 ], "team_2": [ - 5352 + 5348 ], "team_2_seed": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "tournament_team_id_1": [ - 5458 + 5454 ], "tournament_team_id_2": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_aggregate": { "aggregate": [ - 5008 + 5004 ], "nodes": [ - 5002 + 4998 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 5005 + 5001 ], "bool_or": [ - 5006 + 5002 ], "count": [ - 5007 + 5003 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 5027 + 5023 ], "distinct": [ - 5 + 6 ], "filter": [ - 5013 + 5009 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 5028 + 5024 ], "distinct": [ - 5 + 6 ], "filter": [ - 5013 + 5009 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 5026 + 5022 ], "distinct": [ - 5 + 6 ], "filter": [ - 5013 + 5009 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_aggregate_fields": { "avg": [ - 5011 + 5007 ], "count": [ - 40, + 41, { "columns": [ - 5026, + 5022, "[tournament_brackets_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5017 + 5013 ], "min": [ - 5019 + 5015 ], "stddev": [ - 5030 + 5026 ], "stddev_pop": [ - 5032 + 5028 ], "stddev_samp": [ - 5034 + 5030 ], "sum": [ - 5038 + 5034 ], "var_pop": [ - 5042 + 5038 ], "var_samp": [ - 5044 + 5040 ], "variance": [ - 5046 + 5042 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_aggregate_order_by": { "avg": [ - 5012 + 5008 ], "count": [ - 3377 + 3373 ], "max": [ - 5018 + 5014 ], "min": [ - 5020 + 5016 ], "stddev": [ - 5031 + 5027 ], "stddev_pop": [ - 5033 + 5029 ], "stddev_samp": [ - 5035 + 5031 ], "sum": [ - 5039 + 5035 ], "var_pop": [ - 5043 + 5039 ], "var_samp": [ - 5045 + 5041 ], "variance": [ - 5047 + 5043 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 5016 + 5012 ], "on_conflict": [ - 5023 + 5019 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_brackets_avg_order_by": { "group": [ - 3377 + 3373 ], "match_number": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "team_1_seed": [ - 3377 + 3373 ], "team_2_seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_bool_exp": { "_and": [ - 5013 + 5009 ], "_not": [ - 5013 + 5009 ], "_or": [ - 5013 + 5009 ], "bye": [ - 6 + 7 ], "created_at": [ - 4959 + 4955 ], "feeding_brackets": [ - 5013 + 5009 ], "finished": [ - 6 + 7 ], "group": [ - 3376 + 3372 ], "id": [ - 5460 + 5456 ], "loser_bracket": [ - 5013 + 5009 ], "loser_parent_bracket_id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_number": [ - 41 + 42 ], "match_options_id": [ - 5460 + 5456 ], "options": [ - 3030 + 3026 ], "parent_bracket": [ - 5013 + 5009 ], "parent_bracket_id": [ - 5460 + 5456 ], "path": [ - 85 + 86 ], "round": [ - 41 + 42 ], "scheduled_at": [ - 4959 + 4955 ], "scheduled_eta": [ - 4959 + 4955 ], "scheduling_proposals": [ - 2337 + 2333 ], "scheduling_proposals_aggregate": [ - 2330 + 2326 ], "stage": [ - 5231 + 5227 ], "team_1": [ - 5361 + 5357 ], "team_1_seed": [ - 41 + 42 ], "team_2": [ - 5361 + 5357 ], "team_2_seed": [ - 41 + 42 ], "tournament_stage_id": [ - 5460 + 5456 ], "tournament_team_id_1": [ - 5460 + 5456 ], "tournament_team_id_2": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 3375 + 3371 ], "match_number": [ - 40 + 41 ], "round": [ - 40 + 41 ], "team_1_seed": [ - 40 + 41 ], "team_2_seed": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_insert_input": { "bye": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "finished": [ - 5 + 6 ], "group": [ - 3375 + 3371 ], "id": [ - 5458 + 5454 ], "loser_bracket": [ - 5022 + 5018 ], "loser_parent_bracket_id": [ - 5458 + 5454 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_number": [ - 40 + 41 ], "match_options_id": [ - 5458 + 5454 ], "options": [ - 3039 + 3035 ], "parent_bracket": [ - 5022 + 5018 ], "parent_bracket_id": [ - 5458 + 5454 ], "path": [ - 83 + 84 ], "round": [ - 40 + 41 ], "scheduled_at": [ - 4958 + 4954 ], "scheduled_eta": [ - 4958 + 4954 ], "scheduling_proposals": [ - 2334 + 2330 ], "stage": [ - 5243 + 5239 ], "team_1": [ - 5370 + 5366 ], "team_1_seed": [ - 40 + 41 ], "team_2": [ - 5370 + 5366 ], "team_2_seed": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "tournament_team_id_1": [ - 5458 + 5454 ], "tournament_team_id_2": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_max_fields": { "created_at": [ - 4958 + 4954 ], "group": [ - 3375 + 3371 ], "id": [ - 5458 + 5454 ], "loser_parent_bracket_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_number": [ - 40 + 41 ], "match_options_id": [ - 5458 + 5454 ], "parent_bracket_id": [ - 5458 + 5454 ], "path": [ - 83 + 84 ], "round": [ - 40 + 41 ], "scheduled_at": [ - 4958 + 4954 ], "scheduled_eta": [ - 4958 + 4954 ], "team_1_seed": [ - 40 + 41 ], "team_2_seed": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "tournament_team_id_1": [ - 5458 + 5454 ], "tournament_team_id_2": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_max_order_by": { "created_at": [ - 3377 + 3373 ], "group": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "loser_parent_bracket_id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_number": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "parent_bracket_id": [ - 3377 + 3373 ], "path": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "scheduled_at": [ - 3377 + 3373 ], "scheduled_eta": [ - 3377 + 3373 ], "team_1_seed": [ - 3377 + 3373 ], "team_2_seed": [ - 3377 + 3373 ], "tournament_stage_id": [ - 3377 + 3373 ], "tournament_team_id_1": [ - 3377 + 3373 ], "tournament_team_id_2": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_min_fields": { "created_at": [ - 4958 + 4954 ], "group": [ - 3375 + 3371 ], "id": [ - 5458 + 5454 ], "loser_parent_bracket_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_number": [ - 40 + 41 ], "match_options_id": [ - 5458 + 5454 ], "parent_bracket_id": [ - 5458 + 5454 ], "path": [ - 83 + 84 ], "round": [ - 40 + 41 ], "scheduled_at": [ - 4958 + 4954 ], "scheduled_eta": [ - 4958 + 4954 ], "team_1_seed": [ - 40 + 41 ], "team_2_seed": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "tournament_team_id_1": [ - 5458 + 5454 ], "tournament_team_id_2": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_min_order_by": { "created_at": [ - 3377 + 3373 ], "group": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "loser_parent_bracket_id": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_number": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "parent_bracket_id": [ - 3377 + 3373 ], "path": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "scheduled_at": [ - 3377 + 3373 ], "scheduled_eta": [ - 3377 + 3373 ], "team_1_seed": [ - 3377 + 3373 ], "team_2_seed": [ - 3377 + 3373 ], "tournament_stage_id": [ - 3377 + 3373 ], "tournament_team_id_1": [ - 3377 + 3373 ], "tournament_team_id_2": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5002 + 4998 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 5016 + 5012 ], "on_conflict": [ - 5023 + 5019 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_on_conflict": { "constraint": [ - 5014 + 5010 ], "update_columns": [ - 5040 + 5036 ], "where": [ - 5013 + 5009 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_order_by": { "bye": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "feeding_brackets_aggregate": [ - 5009 + 5005 ], "finished": [ - 3377 + 3373 ], "group": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "loser_bracket": [ - 5024 + 5020 ], "loser_parent_bracket_id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_number": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "options": [ - 3041 + 3037 ], "parent_bracket": [ - 5024 + 5020 ], "parent_bracket_id": [ - 3377 + 3373 ], "path": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "scheduled_at": [ - 3377 + 3373 ], "scheduled_eta": [ - 3377 + 3373 ], "scheduling_proposals_aggregate": [ - 2333 + 2329 ], "stage": [ - 5245 + 5241 ], "team_1": [ - 5372 + 5368 ], "team_1_seed": [ - 3377 + 3373 ], "team_2": [ - 5372 + 5368 ], "team_2_seed": [ - 3377 + 3373 ], "tournament_stage_id": [ - 3377 + 3373 ], "tournament_team_id_1": [ - 3377 + 3373 ], "tournament_team_id_2": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_select_column": {}, @@ -113007,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": [ - 4958 + 4954 ], "finished": [ - 5 + 6 ], "group": [ - 3375 + 3371 ], "id": [ - 5458 + 5454 ], "loser_parent_bracket_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_number": [ - 40 + 41 ], "match_options_id": [ - 5458 + 5454 ], "parent_bracket_id": [ - 5458 + 5454 ], "path": [ - 83 + 84 ], "round": [ - 40 + 41 ], "scheduled_at": [ - 4958 + 4954 ], "scheduled_eta": [ - 4958 + 4954 ], "team_1_seed": [ - 40 + 41 ], "team_2_seed": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "tournament_team_id_1": [ - 5458 + 5454 ], "tournament_team_id_2": [ - 5458 + 5454 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_brackets_stddev_order_by": { "group": [ - 3377 + 3373 ], "match_number": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "team_1_seed": [ - 3377 + 3373 ], "team_2_seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 3377 + 3373 ], "match_number": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "team_1_seed": [ - 3377 + 3373 ], "team_2_seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 3377 + 3373 ], "match_number": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "team_1_seed": [ - 3377 + 3373 ], "team_2_seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 5037 + 5033 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_stream_cursor_value_input": { "bye": [ - 5 + 6 ], "created_at": [ - 4958 + 4954 ], "finished": [ - 5 + 6 ], "group": [ - 3375 + 3371 ], "id": [ - 5458 + 5454 ], "loser_parent_bracket_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_number": [ - 40 + 41 ], "match_options_id": [ - 5458 + 5454 ], "parent_bracket_id": [ - 5458 + 5454 ], "path": [ - 83 + 84 ], "round": [ - 40 + 41 ], "scheduled_at": [ - 4958 + 4954 ], "scheduled_eta": [ - 4958 + 4954 ], "team_1_seed": [ - 40 + 41 ], "team_2_seed": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "tournament_team_id_1": [ - 5458 + 5454 ], "tournament_team_id_2": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_sum_fields": { "group": [ - 3375 + 3371 ], "match_number": [ - 40 + 41 ], "round": [ - 40 + 41 ], "team_1_seed": [ - 40 + 41 ], "team_2_seed": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_sum_order_by": { "group": [ - 3377 + 3373 ], "match_number": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "team_1_seed": [ - 3377 + 3373 ], "team_2_seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 5015 + 5011 ], "_set": [ - 5029 + 5025 ], "where": [ - 5013 + 5009 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_brackets_var_pop_order_by": { "group": [ - 3377 + 3373 ], "match_number": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "team_1_seed": [ - 3377 + 3373 ], "team_2_seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_brackets_var_samp_order_by": { "group": [ - 3377 + 3373 ], "match_number": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "team_1_seed": [ - 3377 + 3373 ], "team_2_seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_brackets_variance_order_by": { "group": [ - 3377 + 3373 ], "match_number": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "team_1_seed": [ - 3377 + 3373 ], "team_2_seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_categories": { "category": [ - 1464 + 1465 ], "e_tournament_category": [ - 1459 + 1460 ], "tournament": [ - 5394 + 5390 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_aggregate": { "aggregate": [ - 5052 + 5048 ], "nodes": [ - 5048 + 5044 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_aggregate_bool_exp": { "count": [ - 5051 + 5047 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_aggregate_bool_exp_count": { "arguments": [ - 5066 + 5062 ], "distinct": [ - 5 + 6 ], "filter": [ - 5055 + 5051 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 5066, + 5062, "[tournament_categories_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5058 + 5054 ], "min": [ - 5060 + 5056 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_aggregate_order_by": { "count": [ - 3377 + 3373 ], "max": [ - 5059 + 5055 ], "min": [ - 5061 + 5057 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_arr_rel_insert_input": { "data": [ - 5057 + 5053 ], "on_conflict": [ - 5063 + 5059 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_bool_exp": { "_and": [ - 5055 + 5051 ], "_not": [ - 5055 + 5051 ], "_or": [ - 5055 + 5051 ], "category": [ - 1465 + 1466 ], "e_tournament_category": [ - 1462 + 1463 ], "tournament": [ - 5415 + 5411 ], "tournament_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_constraint": {}, "tournament_categories_insert_input": { "category": [ - 1464 + 1465 ], "e_tournament_category": [ - 1470 + 1471 ], "tournament": [ - 5424 + 5420 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_max_fields": { "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_max_order_by": { "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_min_fields": { "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_min_order_by": { "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5048 + 5044 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_on_conflict": { "constraint": [ - 5056 + 5052 ], "update_columns": [ - 5070 + 5066 ], "where": [ - 5055 + 5051 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_order_by": { "category": [ - 3377 + 3373 ], "e_tournament_category": [ - 1472 + 1473 ], "tournament": [ - 5426 + 5422 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_pk_columns_input": { "category": [ - 1464 + 1465 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_select_column": {}, "tournament_categories_set_input": { "category": [ - 1464 + 1465 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_stream_cursor_input": { "initial_value": [ - 5069 + 5065 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_stream_cursor_value_input": { "category": [ - 1464 + 1465 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_categories_update_column": {}, "tournament_categories_updates": { "_set": [ - 5067 + 5063 ], "where": [ - 5055 + 5051 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams": { "created_at": [ - 4958 + 4954 ], "team": [ - 4909 + 4905 ], "team_id": [ - 5458 + 5454 ], "tournament": [ - 5394 + 5390 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_aggregate": { "aggregate": [ - 5076 + 5072 ], "nodes": [ - 5072 + 5068 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_aggregate_bool_exp": { "count": [ - 5075 + 5071 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_aggregate_bool_exp_count": { "arguments": [ - 5090 + 5086 ], "distinct": [ - 5 + 6 ], "filter": [ - 5079 + 5075 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 5090, + 5086, "[tournament_organizer_teams_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5082 + 5078 ], "min": [ - 5084 + 5080 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_aggregate_order_by": { "count": [ - 3377 + 3373 ], "max": [ - 5083 + 5079 ], "min": [ - 5085 + 5081 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_arr_rel_insert_input": { "data": [ - 5081 + 5077 ], "on_conflict": [ - 5087 + 5083 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_bool_exp": { "_and": [ - 5079 + 5075 ], "_not": [ - 5079 + 5075 ], "_or": [ - 5079 + 5075 ], "created_at": [ - 4959 + 4955 ], "team": [ - 4920 + 4916 ], "team_id": [ - 5460 + 5456 ], "tournament": [ - 5415 + 5411 ], "tournament_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_constraint": {}, "tournament_organizer_teams_insert_input": { "created_at": [ - 4958 + 4954 ], "team": [ - 4929 + 4925 ], "team_id": [ - 5458 + 5454 ], "tournament": [ - 5424 + 5420 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_max_fields": { "created_at": [ - 4958 + 4954 ], "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_max_order_by": { "created_at": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_min_fields": { "created_at": [ - 4958 + 4954 ], "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_min_order_by": { "created_at": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5072 + 5068 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_on_conflict": { "constraint": [ - 5080 + 5076 ], "update_columns": [ - 5094 + 5090 ], "where": [ - 5079 + 5075 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_order_by": { "created_at": [ - 3377 + 3373 ], "team": [ - 4931 + 4927 ], "team_id": [ - 3377 + 3373 ], "tournament": [ - 5426 + 5422 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_pk_columns_input": { "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_select_column": {}, "tournament_organizer_teams_set_input": { "created_at": [ - 4958 + 4954 ], "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_stream_cursor_input": { "initial_value": [ - 5093 + 5089 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_organizer_teams_update_column": {}, "tournament_organizer_teams_updates": { "_set": [ - 5091 + 5087 ], "where": [ - 5079 + 5075 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers": { "organization_team": [ - 4909 + 4905 ], "organization_team_id": [ - 5458 + 5454 ], "organizer": [ - 4335 + 4331 ], "steam_id": [ - 268 + 269 ], "tournament": [ - 5394 + 5390 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_aggregate": { "aggregate": [ - 5100 + 5096 ], "nodes": [ - 5096 + 5092 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 5099 + 5095 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 5117 + 5113 ], "distinct": [ - 5 + 6 ], "filter": [ - 5105 + 5101 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_aggregate_fields": { "avg": [ - 5103 + 5099 ], "count": [ - 40, + 41, { "columns": [ - 5117, + 5113, "[tournament_organizers_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5109 + 5105 ], "min": [ - 5111 + 5107 ], "stddev": [ - 5119 + 5115 ], "stddev_pop": [ - 5121 + 5117 ], "stddev_samp": [ - 5123 + 5119 ], "sum": [ - 5127 + 5123 ], "var_pop": [ - 5131 + 5127 ], "var_samp": [ - 5133 + 5129 ], "variance": [ - 5135 + 5131 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_aggregate_order_by": { "avg": [ - 5104 + 5100 ], "count": [ - 3377 + 3373 ], "max": [ - 5110 + 5106 ], "min": [ - 5112 + 5108 ], "stddev": [ - 5120 + 5116 ], "stddev_pop": [ - 5122 + 5118 ], "stddev_samp": [ - 5124 + 5120 ], "sum": [ - 5128 + 5124 ], "var_pop": [ - 5132 + 5128 ], "var_samp": [ - 5134 + 5130 ], "variance": [ - 5136 + 5132 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 5108 + 5104 ], "on_conflict": [ - 5114 + 5110 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_avg_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_bool_exp": { "_and": [ - 5105 + 5101 ], "_not": [ - 5105 + 5101 ], "_or": [ - 5105 + 5101 ], "organization_team": [ - 4920 + 4916 ], "organization_team_id": [ - 5460 + 5456 ], "organizer": [ - 4339 + 4335 ], "steam_id": [ - 270 + 271 ], "tournament": [ - 5415 + 5411 ], "tournament_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_constraint": {}, "tournament_organizers_inc_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_insert_input": { "organization_team": [ - 4929 + 4925 ], "organization_team_id": [ - 5458 + 5454 ], "organizer": [ - 4346 + 4342 ], "steam_id": [ - 268 + 269 ], "tournament": [ - 5424 + 5420 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_max_fields": { "organization_team_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_max_order_by": { "organization_team_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_min_fields": { "organization_team_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_min_order_by": { "organization_team_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5096 + 5092 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_on_conflict": { "constraint": [ - 5106 + 5102 ], "update_columns": [ - 5129 + 5125 ], "where": [ - 5105 + 5101 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_order_by": { "organization_team": [ - 4931 + 4927 ], "organization_team_id": [ - 3377 + 3373 ], "organizer": [ - 4348 + 4344 ], "steam_id": [ - 3377 + 3373 ], "tournament": [ - 5426 + 5422 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_pk_columns_input": { "steam_id": [ - 268 + 269 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "organization_team_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 5126 + 5122 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_stream_cursor_value_input": { "organization_team_id": [ - 5458 + 5454 ], "steam_id": [ - 268 + 269 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_sum_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 5107 + 5103 ], "_set": [ - 5118 + 5114 ], "where": [ - 5105 + 5101 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_organizers_variance_order_by": { "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "order": [ - 40 + 41 ], "place": [ - 83 + 84 ], "prize": [ - 83 + 84 ], "tournament": [ - 5394 + 5390 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_aggregate": { "aggregate": [ - 5141 + 5137 ], "nodes": [ - 5137 + 5133 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_aggregate_bool_exp": { "count": [ - 5140 + 5136 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_aggregate_bool_exp_count": { "arguments": [ - 5158 + 5154 ], "distinct": [ - 5 + 6 ], "filter": [ - 5146 + 5142 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_aggregate_fields": { "avg": [ - 5144 + 5140 ], "count": [ - 40, + 41, { "columns": [ - 5158, + 5154, "[tournament_prizes_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5150 + 5146 ], "min": [ - 5152 + 5148 ], "stddev": [ - 5160 + 5156 ], "stddev_pop": [ - 5162 + 5158 ], "stddev_samp": [ - 5164 + 5160 ], "sum": [ - 5168 + 5164 ], "var_pop": [ - 5172 + 5168 ], "var_samp": [ - 5174 + 5170 ], "variance": [ - 5176 + 5172 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_aggregate_order_by": { "avg": [ - 5145 + 5141 ], "count": [ - 3377 + 3373 ], "max": [ - 5151 + 5147 ], "min": [ - 5153 + 5149 ], "stddev": [ - 5161 + 5157 ], "stddev_pop": [ - 5163 + 5159 ], "stddev_samp": [ - 5165 + 5161 ], "sum": [ - 5169 + 5165 ], "var_pop": [ - 5173 + 5169 ], "var_samp": [ - 5175 + 5171 ], "variance": [ - 5177 + 5173 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_arr_rel_insert_input": { "data": [ - 5149 + 5145 ], "on_conflict": [ - 5155 + 5151 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_avg_fields": { "order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_avg_order_by": { "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_bool_exp": { "_and": [ - 5146 + 5142 ], "_not": [ - 5146 + 5142 ], "_or": [ - 5146 + 5142 ], "created_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "order": [ - 41 + 42 ], "place": [ - 85 + 86 ], "prize": [ - 85 + 86 ], "tournament": [ - 5415 + 5411 ], "tournament_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_constraint": {}, "tournament_prizes_inc_input": { "order": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_insert_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "order": [ - 40 + 41 ], "place": [ - 83 + 84 ], "prize": [ - 83 + 84 ], "tournament": [ - 5424 + 5420 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_max_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "order": [ - 40 + 41 ], "place": [ - 83 + 84 ], "prize": [ - 83 + 84 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_max_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "place": [ - 3377 + 3373 ], "prize": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_min_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "order": [ - 40 + 41 ], "place": [ - 83 + 84 ], "prize": [ - 83 + 84 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_min_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "place": [ - 3377 + 3373 ], "prize": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5137 + 5133 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_on_conflict": { "constraint": [ - 5147 + 5143 ], "update_columns": [ - 5170 + 5166 ], "where": [ - 5146 + 5142 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "place": [ - 3377 + 3373 ], "prize": [ - 3377 + 3373 ], "tournament": [ - 5426 + 5422 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_select_column": {}, "tournament_prizes_set_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "order": [ - 40 + 41 ], "place": [ - 83 + 84 ], "prize": [ - 83 + 84 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_stddev_fields": { "order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_stddev_order_by": { "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_stddev_pop_fields": { "order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_stddev_pop_order_by": { "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_stddev_samp_fields": { "order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_stddev_samp_order_by": { "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_stream_cursor_input": { "initial_value": [ - 5167 + 5163 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "order": [ - 40 + 41 ], "place": [ - 83 + 84 ], "prize": [ - 83 + 84 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_sum_fields": { "order": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_sum_order_by": { "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_update_column": {}, "tournament_prizes_updates": { "_inc": [ - 5148 + 5144 ], "_set": [ - 5159 + 5155 ], "where": [ - 5146 + 5142 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_var_pop_fields": { "order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_var_pop_order_by": { "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_var_samp_fields": { "order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_var_samp_order_by": { "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_variance_fields": { "order": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_prizes_variance_order_by": { "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows": { "closes_at": [ - 4958 + 4954 ], "created_at": [ - 4958 + 4954 ], "default_match_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "opens_at": [ - 4958 + 4954 ], "round": [ - 40 + 41 ], "stage": [ - 5219 + 5215 ], "tournament_stage_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_aggregate": { "aggregate": [ - 5182 + 5178 ], "nodes": [ - 5178 + 5174 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 5181 + 5177 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 5199 + 5195 ], "distinct": [ - 5 + 6 ], "filter": [ - 5187 + 5183 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 5185 + 5181 ], "count": [ - 40, + 41, { "columns": [ - 5199, + 5195, "[tournament_stage_windows_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5191 + 5187 ], "min": [ - 5193 + 5189 ], "stddev": [ - 5201 + 5197 ], "stddev_pop": [ - 5203 + 5199 ], "stddev_samp": [ - 5205 + 5201 ], "sum": [ - 5209 + 5205 ], "var_pop": [ - 5213 + 5209 ], "var_samp": [ - 5215 + 5211 ], "variance": [ - 5217 + 5213 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 5186 + 5182 ], "count": [ - 3377 + 3373 ], "max": [ - 5192 + 5188 ], "min": [ - 5194 + 5190 ], "stddev": [ - 5202 + 5198 ], "stddev_pop": [ - 5204 + 5200 ], "stddev_samp": [ - 5206 + 5202 ], "sum": [ - 5210 + 5206 ], "var_pop": [ - 5214 + 5210 ], "var_samp": [ - 5216 + 5212 ], "variance": [ - 5218 + 5214 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 5190 + 5186 ], "on_conflict": [ - 5196 + 5192 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_avg_fields": { "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_avg_order_by": { "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_bool_exp": { "_and": [ - 5187 + 5183 ], "_not": [ - 5187 + 5183 ], "_or": [ - 5187 + 5183 ], "closes_at": [ - 4959 + 4955 ], "created_at": [ - 4959 + 4955 ], "default_match_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "opens_at": [ - 4959 + 4955 ], "round": [ - 41 + 42 ], "stage": [ - 5231 + 5227 ], "tournament_stage_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_constraint": {}, "tournament_stage_windows_inc_input": { "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4958 + 4954 ], "created_at": [ - 4958 + 4954 ], "default_match_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "opens_at": [ - 4958 + 4954 ], "round": [ - 40 + 41 ], "stage": [ - 5243 + 5239 ], "tournament_stage_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4958 + 4954 ], "created_at": [ - 4958 + 4954 ], "default_match_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "opens_at": [ - 4958 + 4954 ], "round": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "default_match_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "opens_at": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "tournament_stage_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4958 + 4954 ], "created_at": [ - 4958 + 4954 ], "default_match_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "opens_at": [ - 4958 + 4954 ], "round": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "default_match_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "opens_at": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "tournament_stage_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5178 + 5174 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_on_conflict": { "constraint": [ - 5188 + 5184 ], "update_columns": [ - 5211 + 5207 ], "where": [ - 5187 + 5183 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_order_by": { "closes_at": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "default_match_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "opens_at": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "stage": [ - 5245 + 5241 ], "tournament_stage_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4958 + 4954 ], "created_at": [ - 4958 + 4954 ], "default_match_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "opens_at": [ - 4958 + 4954 ], "round": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_stddev_fields": { "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_stddev_order_by": { "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_stddev_pop_fields": { "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_stddev_samp_fields": { "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 5208 + 5204 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4958 + 4954 ], "created_at": [ - 4958 + 4954 ], "default_match_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "opens_at": [ - 4958 + 4954 ], "round": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_sum_fields": { "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_sum_order_by": { "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 5189 + 5185 ], "_set": [ - 5200 + 5196 ], "where": [ - 5187 + 5183 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_var_pop_fields": { "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_var_samp_fields": { "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_variance_fields": { "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_stage_windows_variance_order_by": { "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stages": { "brackets": [ - 5002, + 4998, { "distinct_on": [ - 5026, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5024, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 5013 + 5009 ] } ], "brackets_aggregate": [ - 5003, + 4999, { "distinct_on": [ - 5026, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5024, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 5013 + 5009 ] } ], "decider_best_of": [ - 40 + 41 ], "default_best_of": [ - 40 + 41 ], "e_tournament_stage_type": [ - 1480 + 1481 ], "final_map_advantage": [ - 40 + 41 ], "groups": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "max_rounds": [ - 40 + 41 ], "max_teams": [ - 40 + 41 ], "min_teams": [ - 40 + 41 ], "options": [ - 3019 + 3015 ], "order": [ - 40 + 41 ], "results": [ - 6200, + 6196, { "distinct_on": [ - 6232, + 6228, "[v_team_stage_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6230, + 6226, "[v_team_stage_results_order_by!]" ], "where": [ - 6219 + 6215 ] } ], "results_aggregate": [ - 6201, + 6197, { "distinct_on": [ - 6232, + 6228, "[v_team_stage_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6230, + 6226, "[v_team_stage_results_order_by!]" ], "where": [ - 6219 + 6215 ] } ], "settings": [ - 2191, + 2187, { "path": [ - 83 + 84 ] } ], "swiss_no_elimination": [ - 5 + 6 ], "third_place_match": [ - 5 + 6 ], "tournament": [ - 5394 + 5390 ], "tournament_id": [ - 5458 + 5454 ], "type": [ - 1485 + 1486 ], "windows": [ - 5178, + 5174, { "distinct_on": [ - 5199, + 5195, "[tournament_stage_windows_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5197, + 5193, "[tournament_stage_windows_order_by!]" ], "where": [ - 5187 + 5183 ] } ], "windows_aggregate": [ - 5179, + 5175, { "distinct_on": [ - 5199, + 5195, "[tournament_stage_windows_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5197, + 5193, "[tournament_stage_windows_order_by!]" ], "where": [ - 5187 + 5183 ] } ], "__typename": [ - 83 + 84 ] }, "tournament_stages_aggregate": { "aggregate": [ - 5225 + 5221 ], "nodes": [ - 5219 + 5215 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 5222 + 5218 ], "bool_or": [ - 5223 + 5219 ], "count": [ - 5224 + 5220 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 5249 + 5245 ], "distinct": [ - 5 + 6 ], "filter": [ - 5231 + 5227 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 5250 + 5246 ], "distinct": [ - 5 + 6 ], "filter": [ - 5231 + 5227 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 5248 + 5244 ], "distinct": [ - 5 + 6 ], "filter": [ - 5231 + 5227 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_aggregate_fields": { "avg": [ - 5229 + 5225 ], "count": [ - 40, + 41, { "columns": [ - 5248, + 5244, "[tournament_stages_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5238 + 5234 ], "min": [ - 5240 + 5236 ], "stddev": [ - 5252 + 5248 ], "stddev_pop": [ - 5254 + 5250 ], "stddev_samp": [ - 5256 + 5252 ], "sum": [ - 5260 + 5256 ], "var_pop": [ - 5264 + 5260 ], "var_samp": [ - 5266 + 5262 ], "variance": [ - 5268 + 5264 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_aggregate_order_by": { "avg": [ - 5230 + 5226 ], "count": [ - 3377 + 3373 ], "max": [ - 5239 + 5235 ], "min": [ - 5241 + 5237 ], "stddev": [ - 5253 + 5249 ], "stddev_pop": [ - 5255 + 5251 ], "stddev_samp": [ - 5257 + 5253 ], "sum": [ - 5261 + 5257 ], "var_pop": [ - 5265 + 5261 ], "var_samp": [ - 5267 + 5263 ], "variance": [ - 5269 + 5265 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_append_input": { "settings": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_arr_rel_insert_input": { "data": [ - 5237 + 5233 ], "on_conflict": [ - 5244 + 5240 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 3377 + 3373 ], "default_best_of": [ - 3377 + 3373 ], "final_map_advantage": [ - 3377 + 3373 ], "groups": [ - 3377 + 3373 ], "max_rounds": [ - 3377 + 3373 ], "max_teams": [ - 3377 + 3373 ], "min_teams": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_bool_exp": { "_and": [ - 5231 + 5227 ], "_not": [ - 5231 + 5227 ], "_or": [ - 5231 + 5227 ], "brackets": [ - 5013 + 5009 ], "brackets_aggregate": [ - 5004 + 5000 ], "decider_best_of": [ - 41 + 42 ], "default_best_of": [ - 41 + 42 ], "e_tournament_stage_type": [ - 1483 + 1484 ], "final_map_advantage": [ - 41 + 42 ], "groups": [ - 41 + 42 ], "id": [ - 5460 + 5456 ], "match_options_id": [ - 5460 + 5456 ], "max_rounds": [ - 41 + 42 ], "max_teams": [ - 41 + 42 ], "min_teams": [ - 41 + 42 ], "options": [ - 3030 + 3026 ], "order": [ - 41 + 42 ], "results": [ - 6219 + 6215 ], "results_aggregate": [ - 6202 + 6198 ], "settings": [ - 2193 + 2189 ], "swiss_no_elimination": [ - 6 + 7 ], "third_place_match": [ - 6 + 7 ], "tournament": [ - 5415 + 5411 ], "tournament_id": [ - 5460 + 5456 ], "type": [ - 1486 + 1487 ], "windows": [ - 5187 + 5183 ], "windows_aggregate": [ - 5180 + 5176 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_constraint": {}, "tournament_stages_delete_at_path_input": { "settings": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_delete_elem_input": { "settings": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_delete_key_input": { "settings": [ - 83 + 84 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_stages_insert_input": { "brackets": [ - 5010 + 5006 ], "decider_best_of": [ - 40 + 41 ], "default_best_of": [ - 40 + 41 ], "e_tournament_stage_type": [ - 1491 + 1492 ], "final_map_advantage": [ - 40 + 41 ], "groups": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "max_rounds": [ - 40 + 41 ], "max_teams": [ - 40 + 41 ], "min_teams": [ - 40 + 41 ], "options": [ - 3039 + 3035 ], "order": [ - 40 + 41 ], "results": [ - 6216 + 6212 ], "settings": [ - 2191 + 2187 ], "swiss_no_elimination": [ - 5 + 6 ], "third_place_match": [ - 5 + 6 ], "tournament": [ - 5424 + 5420 ], "tournament_id": [ - 5458 + 5454 ], "type": [ - 1485 + 1486 ], "windows": [ - 5184 + 5180 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_max_fields": { "decider_best_of": [ - 40 + 41 ], "default_best_of": [ - 40 + 41 ], "final_map_advantage": [ - 40 + 41 ], "groups": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "max_rounds": [ - 40 + 41 ], "max_teams": [ - 40 + 41 ], "min_teams": [ - 40 + 41 ], "order": [ - 40 + 41 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_max_order_by": { "decider_best_of": [ - 3377 + 3373 ], "default_best_of": [ - 3377 + 3373 ], "final_map_advantage": [ - 3377 + 3373 ], "groups": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "max_rounds": [ - 3377 + 3373 ], "max_teams": [ - 3377 + 3373 ], "min_teams": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_min_fields": { "decider_best_of": [ - 40 + 41 ], "default_best_of": [ - 40 + 41 ], "final_map_advantage": [ - 40 + 41 ], "groups": [ - 40 + 41 ], "id": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "max_rounds": [ - 40 + 41 ], "max_teams": [ - 40 + 41 ], "min_teams": [ - 40 + 41 ], "order": [ - 40 + 41 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_min_order_by": { "decider_best_of": [ - 3377 + 3373 ], "default_best_of": [ - 3377 + 3373 ], "final_map_advantage": [ - 3377 + 3373 ], "groups": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "max_rounds": [ - 3377 + 3373 ], "max_teams": [ - 3377 + 3373 ], "min_teams": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5219 + 5215 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_obj_rel_insert_input": { "data": [ - 5237 + 5233 ], "on_conflict": [ - 5244 + 5240 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_on_conflict": { "constraint": [ - 5232 + 5228 ], "update_columns": [ - 5262 + 5258 ], "where": [ - 5231 + 5227 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_order_by": { "brackets_aggregate": [ - 5009 + 5005 ], "decider_best_of": [ - 3377 + 3373 ], "default_best_of": [ - 3377 + 3373 ], "e_tournament_stage_type": [ - 1493 + 1494 ], "final_map_advantage": [ - 3377 + 3373 ], "groups": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "max_rounds": [ - 3377 + 3373 ], "max_teams": [ - 3377 + 3373 ], "min_teams": [ - 3377 + 3373 ], "options": [ - 3041 + 3037 ], "order": [ - 3377 + 3373 ], "results_aggregate": [ - 6215 + 6211 ], "settings": [ - 3377 + 3373 ], "swiss_no_elimination": [ - 3377 + 3373 ], "third_place_match": [ - 3377 + 3373 ], "tournament": [ - 5426 + 5422 ], "tournament_id": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "windows_aggregate": [ - 5183 + 5179 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_prepend_input": { "settings": [ - 2191 + 2187 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_select_column": {}, @@ -116655,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": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "max_rounds": [ - 40 + 41 ], "max_teams": [ - 40 + 41 ], "min_teams": [ - 40 + 41 ], "order": [ - 40 + 41 ], "settings": [ - 2191 + 2187 ], "swiss_no_elimination": [ - 5 + 6 ], "third_place_match": [ - 5 + 6 ], "tournament_id": [ - 5458 + 5454 ], "type": [ - 1485 + 1486 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 3377 + 3373 ], "default_best_of": [ - 3377 + 3373 ], "final_map_advantage": [ - 3377 + 3373 ], "groups": [ - 3377 + 3373 ], "max_rounds": [ - 3377 + 3373 ], "max_teams": [ - 3377 + 3373 ], "min_teams": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 3377 + 3373 ], "default_best_of": [ - 3377 + 3373 ], "final_map_advantage": [ - 3377 + 3373 ], "groups": [ - 3377 + 3373 ], "max_rounds": [ - 3377 + 3373 ], "max_teams": [ - 3377 + 3373 ], "min_teams": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 3377 + 3373 ], "default_best_of": [ - 3377 + 3373 ], "final_map_advantage": [ - 3377 + 3373 ], "groups": [ - 3377 + 3373 ], "max_rounds": [ - 3377 + 3373 ], "max_teams": [ - 3377 + 3373 ], "min_teams": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 5259 + 5255 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 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": [ - 5458 + 5454 ], "match_options_id": [ - 5458 + 5454 ], "max_rounds": [ - 40 + 41 ], "max_teams": [ - 40 + 41 ], "min_teams": [ - 40 + 41 ], "order": [ - 40 + 41 ], "settings": [ - 2191 + 2187 ], "swiss_no_elimination": [ - 5 + 6 ], "third_place_match": [ - 5 + 6 ], "tournament_id": [ - 5458 + 5454 ], "type": [ - 1485 + 1486 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 3377 + 3373 ], "default_best_of": [ - 3377 + 3373 ], "final_map_advantage": [ - 3377 + 3373 ], "groups": [ - 3377 + 3373 ], "max_rounds": [ - 3377 + 3373 ], "max_teams": [ - 3377 + 3373 ], "min_teams": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 5227 + 5223 ], "_delete_at_path": [ - 5233 + 5229 ], "_delete_elem": [ - 5234 + 5230 ], "_delete_key": [ - 5235 + 5231 ], "_inc": [ - 5236 + 5232 ], "_prepend": [ - 5247 + 5243 ], "_set": [ - 5251 + 5247 ], "where": [ - 5231 + 5227 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 3377 + 3373 ], "default_best_of": [ - 3377 + 3373 ], "final_map_advantage": [ - 3377 + 3373 ], "groups": [ - 3377 + 3373 ], "max_rounds": [ - 3377 + 3373 ], "max_teams": [ - 3377 + 3373 ], "min_teams": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 3377 + 3373 ], "default_best_of": [ - 3377 + 3373 ], "final_map_advantage": [ - 3377 + 3373 ], "groups": [ - 3377 + 3373 ], "max_rounds": [ - 3377 + 3373 ], "max_teams": [ - 3377 + 3373 ], "min_teams": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 3377 + 3373 ], "default_best_of": [ - 3377 + 3373 ], "final_map_advantage": [ - 3377 + 3373 ], "groups": [ - 3377 + 3373 ], "max_rounds": [ - 3377 + 3373 ], "max_teams": [ - 3377 + 3373 ], "min_teams": [ - 3377 + 3373 ], "order": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "invited_by": [ - 4335 + 4331 ], "invited_by_player_steam_id": [ - 268 + 269 ], "player": [ - 4335 + 4331 ], "steam_id": [ - 268 + 269 ], "team": [ - 5352 + 5348 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_aggregate": { "aggregate": [ - 5274 + 5270 ], "nodes": [ - 5270 + 5266 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 5273 + 5269 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 5291 + 5287 ], "distinct": [ - 5 + 6 ], "filter": [ - 5279 + 5275 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_aggregate_fields": { "avg": [ - 5277 + 5273 ], "count": [ - 40, + 41, { "columns": [ - 5291, + 5287, "[tournament_team_invites_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5283 + 5279 ], "min": [ - 5285 + 5281 ], "stddev": [ - 5293 + 5289 ], "stddev_pop": [ - 5295 + 5291 ], "stddev_samp": [ - 5297 + 5293 ], "sum": [ - 5301 + 5297 ], "var_pop": [ - 5305 + 5301 ], "var_samp": [ - 5307 + 5303 ], "variance": [ - 5309 + 5305 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 5278 + 5274 ], "count": [ - 3377 + 3373 ], "max": [ - 5284 + 5280 ], "min": [ - 5286 + 5282 ], "stddev": [ - 5294 + 5290 ], "stddev_pop": [ - 5296 + 5292 ], "stddev_samp": [ - 5298 + 5294 ], "sum": [ - 5302 + 5298 ], "var_pop": [ - 5306 + 5302 ], "var_samp": [ - 5308 + 5304 ], "variance": [ - 5310 + 5306 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 5282 + 5278 ], "on_conflict": [ - 5288 + 5284 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_avg_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_bool_exp": { "_and": [ - 5279 + 5275 ], "_not": [ - 5279 + 5275 ], "_or": [ - 5279 + 5275 ], "created_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "invited_by": [ - 4339 + 4335 ], "invited_by_player_steam_id": [ - 270 + 271 ], "player": [ - 4339 + 4335 ], "steam_id": [ - 270 + 271 ], "team": [ - 5361 + 5357 ], "tournament_team_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_constraint": {}, "tournament_team_invites_inc_input": { "invited_by_player_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_insert_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "invited_by": [ - 4346 + 4342 ], "invited_by_player_steam_id": [ - 268 + 269 ], "player": [ - 4346 + 4342 ], "steam_id": [ - 268 + 269 ], "team": [ - 5370 + 5366 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_max_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "invited_by_player_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_max_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_min_fields": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "invited_by_player_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_min_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5270 + 5266 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_on_conflict": { "constraint": [ - 5280 + 5276 ], "update_columns": [ - 5303 + 5299 ], "where": [ - 5279 + 5275 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_order_by": { "created_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "invited_by": [ - 4348 + 4344 ], "invited_by_player_steam_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "steam_id": [ - 3377 + 3373 ], "team": [ - 5372 + 5368 ], "tournament_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "invited_by_player_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_stddev_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_stddev_pop_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_stddev_samp_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 5300 + 5296 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "invited_by_player_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_sum_fields": { "invited_by_player_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 5281 + 5277 ], "_set": [ - 5292 + 5288 ], "where": [ - 5279 + 5275 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_var_pop_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_var_samp_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_variance_fields": { "invited_by_player_steam_id": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster": { "e_team_role": [ - 1398 + 1399 ], "player": [ - 4335 + 4331 ], "player_steam_id": [ - 268 + 269 ], "role": [ - 1403 + 1404 ], "tournament": [ - 5394 + 5390 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team": [ - 5352 + 5348 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_aggregate": { "aggregate": [ - 5315 + 5311 ], "nodes": [ - 5311 + 5307 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 5314 + 5310 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 5332 + 5328 ], "distinct": [ - 5 + 6 ], "filter": [ - 5320 + 5316 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_aggregate_fields": { "avg": [ - 5318 + 5314 ], "count": [ - 40, + 41, { "columns": [ - 5332, + 5328, "[tournament_team_roster_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5324 + 5320 ], "min": [ - 5326 + 5322 ], "stddev": [ - 5334 + 5330 ], "stddev_pop": [ - 5336 + 5332 ], "stddev_samp": [ - 5338 + 5334 ], "sum": [ - 5342 + 5338 ], "var_pop": [ - 5346 + 5342 ], "var_samp": [ - 5348 + 5344 ], "variance": [ - 5350 + 5346 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 5319 + 5315 ], "count": [ - 3377 + 3373 ], "max": [ - 5325 + 5321 ], "min": [ - 5327 + 5323 ], "stddev": [ - 5335 + 5331 ], "stddev_pop": [ - 5337 + 5333 ], "stddev_samp": [ - 5339 + 5335 ], "sum": [ - 5343 + 5339 ], "var_pop": [ - 5347 + 5343 ], "var_samp": [ - 5349 + 5345 ], "variance": [ - 5351 + 5347 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 5323 + 5319 ], "on_conflict": [ - 5329 + 5325 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_avg_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_bool_exp": { "_and": [ - 5320 + 5316 ], "_not": [ - 5320 + 5316 ], "_or": [ - 5320 + 5316 ], "e_team_role": [ - 1401 + 1402 ], "player": [ - 4339 + 4335 ], "player_steam_id": [ - 270 + 271 ], "role": [ - 1404 + 1405 ], "tournament": [ - 5415 + 5411 ], "tournament_id": [ - 5460 + 5456 ], "tournament_team": [ - 5361 + 5357 ], "tournament_team_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_constraint": {}, "tournament_team_roster_inc_input": { "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_insert_input": { "e_team_role": [ - 1409 + 1410 ], "player": [ - 4346 + 4342 ], "player_steam_id": [ - 268 + 269 ], "role": [ - 1403 + 1404 ], "tournament": [ - 5424 + 5420 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team": [ - 5370 + 5366 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_max_fields": { "player_steam_id": [ - 268 + 269 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_min_fields": { "player_steam_id": [ - 268 + 269 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5311 + 5307 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_on_conflict": { "constraint": [ - 5321 + 5317 ], "update_columns": [ - 5344 + 5340 ], "where": [ - 5320 + 5316 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_order_by": { "e_team_role": [ - 1411 + 1412 ], "player": [ - 4348 + 4344 ], "player_steam_id": [ - 3377 + 3373 ], "role": [ - 3377 + 3373 ], "tournament": [ - 5426 + 5422 ], "tournament_id": [ - 3377 + 3373 ], "tournament_team": [ - 5372 + 5368 ], "tournament_team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_pk_columns_input": { "player_steam_id": [ - 268 + 269 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_select_column": {}, "tournament_team_roster_set_input": { "player_steam_id": [ - 268 + 269 ], "role": [ - 1403 + 1404 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_stddev_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_stddev_pop_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_stddev_samp_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 5341 + 5337 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_stream_cursor_value_input": { "player_steam_id": [ - 268 + 269 ], "role": [ - 1403 + 1404 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_sum_fields": { "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 5322 + 5318 ], "_set": [ - 5333 + 5329 ], "where": [ - 5320 + 5316 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_var_pop_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_var_samp_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_variance_fields": { "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_teams": { "can_manage": [ - 5 + 6 ], "captain": [ - 4335 + 4331 ], "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "creator": [ - 4335 + 4331 ], "eligible_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "invites": [ - 5270, + 5266, { "distinct_on": [ - 5291, + 5287, "[tournament_team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5289, + 5285, "[tournament_team_invites_order_by!]" ], "where": [ - 5279 + 5275 ] } ], "invites_aggregate": [ - 5271, + 5267, { "distinct_on": [ - 5291, + 5287, "[tournament_team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5289, + 5285, "[tournament_team_invites_order_by!]" ], "where": [ - 5279 + 5275 ] } ], "name": [ - 83 + 84 ], "owner_steam_id": [ - 268 + 269 ], "results": [ - 6200 + 6196 ], "roster": [ - 5311, + 5307, { "distinct_on": [ - 5332, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5330, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5320 + 5316 ] } ], "roster_aggregate": [ - 5312, + 5308, { "distinct_on": [ - 5332, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5330, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5320 + 5316 ] } ], "seed": [ - 40 + 41 ], "short_name": [ - 83 + 84 ], "team": [ - 4909 + 4905 ], "team_id": [ - 5458 + 5454 ], "tournament": [ - 5394 + 5390 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_aggregate": { "aggregate": [ - 5356 + 5352 ], "nodes": [ - 5352 + 5348 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_aggregate_bool_exp": { "count": [ - 5355 + 5351 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 5374 + 5370 ], "distinct": [ - 5 + 6 ], "filter": [ - 5361 + 5357 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_aggregate_fields": { "avg": [ - 5359 + 5355 ], "count": [ - 40, + 41, { "columns": [ - 5374, + 5370, "[tournament_teams_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5365 + 5361 ], "min": [ - 5367 + 5363 ], "stddev": [ - 5376 + 5372 ], "stddev_pop": [ - 5378 + 5374 ], "stddev_samp": [ - 5380 + 5376 ], "sum": [ - 5384 + 5380 ], "var_pop": [ - 5388 + 5384 ], "var_samp": [ - 5390 + 5386 ], "variance": [ - 5392 + 5388 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_aggregate_order_by": { "avg": [ - 5360 + 5356 ], "count": [ - 3377 + 3373 ], "max": [ - 5366 + 5362 ], "min": [ - 5368 + 5364 ], "stddev": [ - 5377 + 5373 ], "stddev_pop": [ - 5379 + 5375 ], "stddev_samp": [ - 5381 + 5377 ], "sum": [ - 5385 + 5381 ], "var_pop": [ - 5389 + 5385 ], "var_samp": [ - 5391 + 5387 ], "variance": [ - 5393 + 5389 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_arr_rel_insert_input": { "data": [ - 5364 + 5360 ], "on_conflict": [ - 5371 + 5367 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_avg_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_bool_exp": { "_and": [ - 5361 + 5357 ], "_not": [ - 5361 + 5357 ], "_or": [ - 5361 + 5357 ], "can_manage": [ - 6 + 7 ], "captain": [ - 4339 + 4335 ], "captain_steam_id": [ - 270 + 271 ], "created_at": [ - 4959 + 4955 ], "creator": [ - 4339 + 4335 ], "eligible_at": [ - 4959 + 4955 ], "id": [ - 5460 + 5456 ], "invites": [ - 5279 + 5275 ], "invites_aggregate": [ - 5272 + 5268 ], "name": [ - 85 + 86 ], "owner_steam_id": [ - 270 + 271 ], "results": [ - 6219 + 6215 ], "roster": [ - 5320 + 5316 ], "roster_aggregate": [ - 5313 + 5309 ], "seed": [ - 41 + 42 ], "short_name": [ - 85 + 86 ], "team": [ - 4920 + 4916 ], "team_id": [ - 5460 + 5456 ], "tournament": [ - 5415 + 5411 ], "tournament_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_constraint": {}, "tournament_teams_inc_input": { "captain_steam_id": [ - 268 + 269 ], "owner_steam_id": [ - 268 + 269 ], "seed": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_insert_input": { "captain": [ - 4346 + 4342 ], "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "creator": [ - 4346 + 4342 ], "eligible_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "invites": [ - 5276 + 5272 ], "name": [ - 83 + 84 ], "owner_steam_id": [ - 268 + 269 ], "results": [ - 6228 + 6224 ], "roster": [ - 5317 + 5313 ], "seed": [ - 40 + 41 ], "short_name": [ - 83 + 84 ], "team": [ - 4929 + 4925 ], "team_id": [ - 5458 + 5454 ], "tournament": [ - 5424 + 5420 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_max_fields": { "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "eligible_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "owner_steam_id": [ - 268 + 269 ], "seed": [ - 40 + 41 ], "short_name": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "eligible_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "short_name": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_min_fields": { "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "eligible_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "owner_steam_id": [ - 268 + 269 ], "seed": [ - 40 + 41 ], "short_name": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "eligible_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "short_name": [ - 3377 + 3373 ], "team_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5352 + 5348 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_obj_rel_insert_input": { "data": [ - 5364 + 5360 ], "on_conflict": [ - 5371 + 5367 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_on_conflict": { "constraint": [ - 5362 + 5358 ], "update_columns": [ - 5386 + 5382 ], "where": [ - 5361 + 5357 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_order_by": { "can_manage": [ - 3377 + 3373 ], "captain": [ - 4348 + 4344 ], "captain_steam_id": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "creator": [ - 4348 + 4344 ], "eligible_at": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "invites_aggregate": [ - 5275 + 5271 ], "name": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "results": [ - 6230 + 6226 ], "roster_aggregate": [ - 5316 + 5312 ], "seed": [ - 3377 + 3373 ], "short_name": [ - 3377 + 3373 ], "team": [ - 4931 + 4927 ], "team_id": [ - 3377 + 3373 ], "tournament": [ - 5426 + 5422 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_select_column": {}, "tournament_teams_set_input": { "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "eligible_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "owner_steam_id": [ - 268 + 269 ], "seed": [ - 40 + 41 ], "short_name": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_stddev_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_stddev_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_stddev_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 5383 + 5379 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_stream_cursor_value_input": { "captain_steam_id": [ - 268 + 269 ], "created_at": [ - 4958 + 4954 ], "eligible_at": [ - 4958 + 4954 ], "id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "owner_steam_id": [ - 268 + 269 ], "seed": [ - 40 + 41 ], "short_name": [ - 83 + 84 ], "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_sum_fields": { "captain_steam_id": [ - 268 + 269 ], "owner_steam_id": [ - 268 + 269 ], "seed": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 5363 + 5359 ], "_set": [ - 5375 + 5371 ], "where": [ - 5361 + 5357 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_var_pop_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_var_samp_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_variance_fields": { "captain_steam_id": [ - 31 + 32 ], "owner_steam_id": [ - 31 + 32 ], "seed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 3377 + 3373 ], "owner_steam_id": [ - 3377 + 3373 ], "seed": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournaments": { "admin": [ - 4335 + 4331 ], "auto_start": [ - 5 + 6 ], "award_configs": [ - 4960, + 4956, { "distinct_on": [ - 4982, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4980, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4969 + 4965 ] } ], "award_configs_aggregate": [ - 4961, + 4957, { "distinct_on": [ - 4982, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4980, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4969 + 4965 ] } ], "awards": [ - 199, + 200, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "awards_aggregate": [ - 200, + 201, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "awards_enabled": [ - 5 + 6 ], "banner": [ - 83 + 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": [ - 5048, + 5044, { "distinct_on": [ - 5066, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5064, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 5055 + 5051 ] } ], "categories_aggregate": [ - 5049, + 5045, { "distinct_on": [ - 5066, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5064, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 5055 + 5051 ] } ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "discord_guild_id": [ - 83 + 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": [ - 83 + 84 ], "discord_voice_enabled": [ - 5 + 6 ], "discord_webhook": [ - 83 + 84 ], "e_tournament_status": [ - 1501 + 1502 ], "has_min_teams": [ - 5 + 6 ], "homepage": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_league": [ - 5 + 6 ], "is_organizer": [ - 5 + 6 ], "joined_tournament": [ - 5 + 6 ], "latitude": [ - 1841 + 1842 ], "league_season_division": [ - 2369 + 2365 ], "location": [ - 83 + 84 ], "logo": [ - 83 + 84 ], "longitude": [ - 1841 + 1842 ], "match_options_id": [ - 5458 + 5454 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "name": [ - 83 + 84 ], "options": [ - 3019 + 3015 ], "organizer_steam_id": [ - 268 + 269 ], "organizer_teams": [ - 5072, + 5068, { "distinct_on": [ - 5090, + 5086, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5088, + 5084, "[tournament_organizer_teams_order_by!]" ], "where": [ - 5079 + 5075 ] } ], "organizer_teams_aggregate": [ - 5073, + 5069, { "distinct_on": [ - 5090, + 5086, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5088, + 5084, "[tournament_organizer_teams_order_by!]" ], "where": [ - 5079 + 5075 ] } ], "organizers": [ - 5096, + 5092, { "distinct_on": [ - 5117, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5115, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 5105 + 5101 ] } ], "organizers_aggregate": [ - 5097, + 5093, { "distinct_on": [ - 5117, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5115, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 5105 + 5101 ] } ], "player_stats": [ - 6311, + 6307, { "distinct_on": [ - 6337, + 6333, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6336, + 6332, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6330 + 6326 ] } ], "player_stats_aggregate": [ - 6312, + 6308, { "distinct_on": [ - 6337, + 6333, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6336, + 6332, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6330 + 6326 ] } ], "prizes": [ - 5137, + 5133, { "distinct_on": [ - 5158, + 5154, "[tournament_prizes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5156, + 5152, "[tournament_prizes_order_by!]" ], "where": [ - 5146 + 5142 ] } ], "prizes_aggregate": [ - 5138, + 5134, { "distinct_on": [ - 5158, + 5154, "[tournament_prizes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5156, + 5152, "[tournament_prizes_order_by!]" ], "where": [ - 5146 + 5142 ] } ], "results": [ - 6260, + 6256, { "distinct_on": [ - 6286, + 6282, "[v_team_tournament_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6285, + 6281, "[v_team_tournament_results_order_by!]" ], "where": [ - 6279 + 6275 ] } ], "results_aggregate": [ - 6261, + 6257, { "distinct_on": [ - 6286, + 6282, "[v_team_tournament_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6285, + 6281, "[v_team_tournament_results_order_by!]" ], "where": [ - 6279 + 6275 ] } ], "rosters": [ - 5311, + 5307, { "distinct_on": [ - 5332, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5330, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5320 + 5316 ] } ], "rosters_aggregate": [ - 5312, + 5308, { "distinct_on": [ - 5332, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5330, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5320 + 5316 ] } ], "scheduling_mode": [ - 83 + 84 ], "stages": [ - 5219, + 5215, { "distinct_on": [ - 5248, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5245, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 5231 + 5227 ] } ], "stages_aggregate": [ - 5220, + 5216, { "distinct_on": [ - 5248, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5245, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 5231 + 5227 ] } ], "start": [ - 4958 + 4954 ], "status": [ - 1506 + 1507 ], "teams": [ - 5352, + 5348, { "distinct_on": [ - 5374, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5372, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5361 + 5357 ] } ], "teams_aggregate": [ - 5353, + 5349, { "distinct_on": [ - 5374, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5372, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5361 + 5357 ] } ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate": { "aggregate": [ - 5410 + 5406 ], "nodes": [ - 5394 + 5390 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_bool_exp": { "avg": [ - 5397 + 5393 ], "bool_and": [ - 5398 + 5394 ], "bool_or": [ - 5399 + 5395 ], "corr": [ - 5400 + 5396 ], "count": [ - 5402 + 5398 ], "covar_samp": [ - 5403 + 5399 ], "max": [ - 5405 + 5401 ], "min": [ - 5406 + 5402 ], "stddev_samp": [ - 5407 + 5403 ], "sum": [ - 5408 + 5404 ], "var_samp": [ - 5409 + 5405 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_bool_exp_avg": { "arguments": [ - 5429 + 5425 ], "distinct": [ - 5 + 6 ], "filter": [ - 5415 + 5411 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 5430 + 5426 ], "distinct": [ - 5 + 6 ], "filter": [ - 5415 + 5411 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 5431 + 5427 ], "distinct": [ - 5 + 6 ], "filter": [ - 5415 + 5411 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_bool_exp_corr": { "arguments": [ - 5401 + 5397 ], "distinct": [ - 5 + 6 ], "filter": [ - 5415 + 5411 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_bool_exp_corr_arguments": { "X": [ - 5432 + 5428 ], "Y": [ - 5432 + 5428 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 5428 + 5424 ], "distinct": [ - 5 + 6 ], "filter": [ - 5415 + 5411 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_bool_exp_covar_samp": { "arguments": [ - 5404 + 5400 ], "distinct": [ - 5 + 6 ], "filter": [ - 5415 + 5411 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5433 + 5429 ], "Y": [ - 5433 + 5429 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_bool_exp_max": { "arguments": [ - 5434 + 5430 ], "distinct": [ - 5 + 6 ], "filter": [ - 5415 + 5411 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_bool_exp_min": { "arguments": [ - 5435 + 5431 ], "distinct": [ - 5 + 6 ], "filter": [ - 5415 + 5411 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5436 + 5432 ], "distinct": [ - 5 + 6 ], "filter": [ - 5415 + 5411 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_bool_exp_sum": { "arguments": [ - 5437 + 5433 ], "distinct": [ - 5 + 6 ], "filter": [ - 5415 + 5411 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_bool_exp_var_samp": { "arguments": [ - 5438 + 5434 ], "distinct": [ - 5 + 6 ], "filter": [ - 5415 + 5411 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_fields": { "avg": [ - 5413 + 5409 ], "count": [ - 40, + 41, { "columns": [ - 5428, + 5424, "[tournaments_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5419 + 5415 ], "min": [ - 5421 + 5417 ], "stddev": [ - 5440 + 5436 ], "stddev_pop": [ - 5442 + 5438 ], "stddev_samp": [ - 5444 + 5440 ], "sum": [ - 5448 + 5444 ], "var_pop": [ - 5452 + 5448 ], "var_samp": [ - 5454 + 5450 ], "variance": [ - 5456 + 5452 ], "__typename": [ - 83 + 84 ] }, "tournaments_aggregate_order_by": { "avg": [ - 5414 + 5410 ], "count": [ - 3377 + 3373 ], "max": [ - 5420 + 5416 ], "min": [ - 5422 + 5418 ], "stddev": [ - 5441 + 5437 ], "stddev_pop": [ - 5443 + 5439 ], "stddev_samp": [ - 5445 + 5441 ], "sum": [ - 5449 + 5445 ], "var_pop": [ - 5453 + 5449 ], "var_samp": [ - 5455 + 5451 ], "variance": [ - 5457 + 5453 ], "__typename": [ - 83 + 84 ] }, "tournaments_arr_rel_insert_input": { "data": [ - 5418 + 5414 ], "on_conflict": [ - 5425 + 5421 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournaments_avg_order_by": { "latitude": [ - 3377 + 3373 ], "longitude": [ - 3377 + 3373 ], "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournaments_bool_exp": { "_and": [ - 5415 + 5411 ], "_not": [ - 5415 + 5411 ], "_or": [ - 5415 + 5411 ], "admin": [ - 4339 + 4335 ], "auto_start": [ - 6 + 7 ], "award_configs": [ - 4969 + 4965 ], "award_configs_aggregate": [ - 4962 + 4958 ], "awards": [ - 208 + 209 ], "awards_aggregate": [ - 201 + 202 ], "awards_enabled": [ - 6 + 7 ], "banner": [ - 85 + 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": [ - 5055 + 5051 ], "categories_aggregate": [ - 5050 + 5046 ], "created_at": [ - 4959 + 4955 ], "description": [ - 85 + 86 ], "discord_guild_id": [ - 85 + 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": [ - 85 + 86 ], "discord_voice_enabled": [ - 6 + 7 ], "discord_webhook": [ - 85 + 86 ], "e_tournament_status": [ - 1504 + 1505 ], "has_min_teams": [ - 6 + 7 ], "homepage": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "is_league": [ - 6 + 7 ], "is_organizer": [ - 6 + 7 ], "joined_tournament": [ - 6 + 7 ], "latitude": [ - 1842 + 1843 ], "league_season_division": [ - 2376 + 2372 ], "location": [ - 85 + 86 ], "logo": [ - 85 + 86 ], "longitude": [ - 1842 + 1843 ], "match_options_id": [ - 5460 + 5456 ], "max_players_per_lineup": [ - 41 + 42 ], "min_players_per_lineup": [ - 41 + 42 ], "name": [ - 85 + 86 ], "options": [ - 3030 + 3026 ], "organizer_steam_id": [ - 270 + 271 ], "organizer_teams": [ - 5079 + 5075 ], "organizer_teams_aggregate": [ - 5074 + 5070 ], "organizers": [ - 5105 + 5101 ], "organizers_aggregate": [ - 5098 + 5094 ], "player_stats": [ - 6330 + 6326 ], "player_stats_aggregate": [ - 6313 + 6309 ], "prizes": [ - 5146 + 5142 ], "prizes_aggregate": [ - 5139 + 5135 ], "results": [ - 6279 + 6275 ], "results_aggregate": [ - 6262 + 6258 ], "rosters": [ - 5320 + 5316 ], "rosters_aggregate": [ - 5313 + 5309 ], "scheduling_mode": [ - 85 + 86 ], "stages": [ - 5231 + 5227 ], "stages_aggregate": [ - 5221 + 5217 ], "start": [ - 4959 + 4955 ], "status": [ - 1507 + 1508 ], "teams": [ - 5361 + 5357 ], "teams_aggregate": [ - 5354 + 5350 ], "__typename": [ - 83 + 84 ] }, "tournaments_constraint": {}, "tournaments_inc_input": { "latitude": [ - 1841 + 1842 ], "longitude": [ - 1841 + 1842 ], "organizer_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "tournaments_insert_input": { "admin": [ - 4346 + 4342 ], "auto_start": [ - 5 + 6 ], "award_configs": [ - 4966 + 4962 ], "awards": [ - 205 + 206 ], "awards_enabled": [ - 5 + 6 ], "banner": [ - 83 + 84 ], "categories": [ - 5054 + 5050 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "discord_guild_id": [ - 83 + 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": [ - 83 + 84 ], "discord_voice_enabled": [ - 5 + 6 ], "discord_webhook": [ - 83 + 84 ], "e_tournament_status": [ - 1512 + 1513 ], "homepage": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_league": [ - 5 + 6 ], "latitude": [ - 1841 + 1842 ], "league_season_division": [ - 2384 + 2380 ], "location": [ - 83 + 84 ], "logo": [ - 83 + 84 ], "longitude": [ - 1841 + 1842 ], "match_options_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "options": [ - 3039 + 3035 ], "organizer_steam_id": [ - 268 + 269 ], "organizer_teams": [ - 5078 + 5074 ], "organizers": [ - 5102 + 5098 ], "player_stats": [ - 6327 + 6323 ], "prizes": [ - 5143 + 5139 ], "results": [ - 6276 + 6272 ], "rosters": [ - 5317 + 5313 ], "scheduling_mode": [ - 83 + 84 ], "stages": [ - 5228 + 5224 ], "start": [ - 4958 + 4954 ], "status": [ - 1506 + 1507 ], "teams": [ - 5358 + 5354 ], "__typename": [ - 83 + 84 ] }, "tournaments_max_fields": { "banner": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "discord_guild_id": [ - 83 + 84 ], "discord_role_id": [ - 83 + 84 ], "discord_webhook": [ - 83 + 84 ], "homepage": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "latitude": [ - 1841 + 1842 ], "location": [ - 83 + 84 ], "logo": [ - 83 + 84 ], "longitude": [ - 1841 + 1842 ], "match_options_id": [ - 5458 + 5454 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "name": [ - 83 + 84 ], "organizer_steam_id": [ - 268 + 269 ], "scheduling_mode": [ - 83 + 84 ], "start": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "tournaments_max_order_by": { "banner": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "description": [ - 3377 + 3373 ], "discord_guild_id": [ - 3377 + 3373 ], "discord_role_id": [ - 3377 + 3373 ], "discord_webhook": [ - 3377 + 3373 ], "homepage": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "latitude": [ - 3377 + 3373 ], "location": [ - 3377 + 3373 ], "logo": [ - 3377 + 3373 ], "longitude": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "organizer_steam_id": [ - 3377 + 3373 ], "scheduling_mode": [ - 3377 + 3373 ], "start": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournaments_min_fields": { "banner": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "discord_guild_id": [ - 83 + 84 ], "discord_role_id": [ - 83 + 84 ], "discord_webhook": [ - 83 + 84 ], "homepage": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "latitude": [ - 1841 + 1842 ], "location": [ - 83 + 84 ], "logo": [ - 83 + 84 ], "longitude": [ - 1841 + 1842 ], "match_options_id": [ - 5458 + 5454 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "name": [ - 83 + 84 ], "organizer_steam_id": [ - 268 + 269 ], "scheduling_mode": [ - 83 + 84 ], "start": [ - 4958 + 4954 ], "__typename": [ - 83 + 84 ] }, "tournaments_min_order_by": { "banner": [ - 3377 + 3373 ], "created_at": [ - 3377 + 3373 ], "description": [ - 3377 + 3373 ], "discord_guild_id": [ - 3377 + 3373 ], "discord_role_id": [ - 3377 + 3373 ], "discord_webhook": [ - 3377 + 3373 ], "homepage": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "latitude": [ - 3377 + 3373 ], "location": [ - 3377 + 3373 ], "logo": [ - 3377 + 3373 ], "longitude": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "organizer_steam_id": [ - 3377 + 3373 ], "scheduling_mode": [ - 3377 + 3373 ], "start": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournaments_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5394 + 5390 ], "__typename": [ - 83 + 84 ] }, "tournaments_obj_rel_insert_input": { "data": [ - 5418 + 5414 ], "on_conflict": [ - 5425 + 5421 ], "__typename": [ - 83 + 84 ] }, "tournaments_on_conflict": { "constraint": [ - 5416 + 5412 ], "update_columns": [ - 5450 + 5446 ], "where": [ - 5415 + 5411 ], "__typename": [ - 83 + 84 ] }, "tournaments_order_by": { "admin": [ - 4348 + 4344 ], "auto_start": [ - 3377 + 3373 ], "award_configs_aggregate": [ - 4965 + 4961 ], "awards_aggregate": [ - 204 + 205 ], "awards_enabled": [ - 3377 + 3373 ], "banner": [ - 3377 + 3373 ], "can_cancel": [ - 3377 + 3373 ], "can_close_registration": [ - 3377 + 3373 ], "can_join": [ - 3377 + 3373 ], "can_open_registration": [ - 3377 + 3373 ], "can_pause": [ - 3377 + 3373 ], "can_resume": [ - 3377 + 3373 ], "can_setup": [ - 3377 + 3373 ], "can_start": [ - 3377 + 3373 ], "categories_aggregate": [ - 5053 + 5049 ], "created_at": [ - 3377 + 3373 ], "description": [ - 3377 + 3373 ], "discord_guild_id": [ - 3377 + 3373 ], "discord_notifications_enabled": [ - 3377 + 3373 ], "discord_notify_Canceled": [ - 3377 + 3373 ], "discord_notify_Finished": [ - 3377 + 3373 ], "discord_notify_Forfeit": [ - 3377 + 3373 ], "discord_notify_Live": [ - 3377 + 3373 ], "discord_notify_MapPaused": [ - 3377 + 3373 ], "discord_notify_PickingPlayers": [ - 3377 + 3373 ], "discord_notify_Scheduled": [ - 3377 + 3373 ], "discord_notify_Surrendered": [ - 3377 + 3373 ], "discord_notify_Tie": [ - 3377 + 3373 ], "discord_notify_Veto": [ - 3377 + 3373 ], "discord_notify_WaitingForCheckIn": [ - 3377 + 3373 ], "discord_notify_WaitingForServer": [ - 3377 + 3373 ], "discord_role_id": [ - 3377 + 3373 ], "discord_voice_enabled": [ - 3377 + 3373 ], "discord_webhook": [ - 3377 + 3373 ], "e_tournament_status": [ - 1514 + 1515 ], "has_min_teams": [ - 3377 + 3373 ], "homepage": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "is_league": [ - 3377 + 3373 ], "is_organizer": [ - 3377 + 3373 ], "joined_tournament": [ - 3377 + 3373 ], "latitude": [ - 3377 + 3373 ], "league_season_division": [ - 2386 + 2382 ], "location": [ - 3377 + 3373 ], "logo": [ - 3377 + 3373 ], "longitude": [ - 3377 + 3373 ], "match_options_id": [ - 3377 + 3373 ], "max_players_per_lineup": [ - 3377 + 3373 ], "min_players_per_lineup": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "options": [ - 3041 + 3037 ], "organizer_steam_id": [ - 3377 + 3373 ], "organizer_teams_aggregate": [ - 5077 + 5073 ], "organizers_aggregate": [ - 5101 + 5097 ], "player_stats_aggregate": [ - 6326 + 6322 ], "prizes_aggregate": [ - 5142 + 5138 ], "results_aggregate": [ - 6275 + 6271 ], "rosters_aggregate": [ - 5316 + 5312 ], "scheduling_mode": [ - 3377 + 3373 ], "stages_aggregate": [ - 5226 + 5222 ], "start": [ - 3377 + 3373 ], "status": [ - 3377 + 3373 ], "teams_aggregate": [ - 5357 + 5353 ], "__typename": [ - 83 + 84 ] }, "tournaments_pk_columns_input": { "id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "tournaments_select_column": {}, @@ -121280,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": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "discord_guild_id": [ - 83 + 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": [ - 83 + 84 ], "discord_voice_enabled": [ - 5 + 6 ], "discord_webhook": [ - 83 + 84 ], "homepage": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_league": [ - 5 + 6 ], "latitude": [ - 1841 + 1842 ], "location": [ - 83 + 84 ], "logo": [ - 83 + 84 ], "longitude": [ - 1841 + 1842 ], "match_options_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "organizer_steam_id": [ - 268 + 269 ], "scheduling_mode": [ - 83 + 84 ], "start": [ - 4958 + 4954 ], "status": [ - 1506 + 1507 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournaments_stddev_order_by": { "latitude": [ - 3377 + 3373 ], "longitude": [ - 3377 + 3373 ], "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournaments_stddev_pop_order_by": { "latitude": [ - 3377 + 3373 ], "longitude": [ - 3377 + 3373 ], "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournaments_stddev_samp_order_by": { "latitude": [ - 3377 + 3373 ], "longitude": [ - 3377 + 3373 ], "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournaments_stream_cursor_input": { "initial_value": [ - 5447 + 5443 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "tournaments_stream_cursor_value_input": { "auto_start": [ - 5 + 6 ], "awards_enabled": [ - 5 + 6 ], "banner": [ - 83 + 84 ], "created_at": [ - 4958 + 4954 ], "description": [ - 83 + 84 ], "discord_guild_id": [ - 83 + 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": [ - 83 + 84 ], "discord_voice_enabled": [ - 5 + 6 ], "discord_webhook": [ - 83 + 84 ], "homepage": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "is_league": [ - 5 + 6 ], "latitude": [ - 1841 + 1842 ], "location": [ - 83 + 84 ], "logo": [ - 83 + 84 ], "longitude": [ - 1841 + 1842 ], "match_options_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "organizer_steam_id": [ - 268 + 269 ], "scheduling_mode": [ - 83 + 84 ], "start": [ - 4958 + 4954 ], "status": [ - 1506 + 1507 ], "__typename": [ - 83 + 84 ] }, "tournaments_sum_fields": { "latitude": [ - 1841 + 1842 ], "longitude": [ - 1841 + 1842 ], "max_players_per_lineup": [ - 40 + 41 ], "min_players_per_lineup": [ - 40 + 41 ], "organizer_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "tournaments_sum_order_by": { "latitude": [ - 3377 + 3373 ], "longitude": [ - 3377 + 3373 ], "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 5417 + 5413 ], "_set": [ - 5439 + 5435 ], "where": [ - 5415 + 5411 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournaments_var_pop_order_by": { "latitude": [ - 3377 + 3373 ], "longitude": [ - 3377 + 3373 ], "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournaments_var_samp_order_by": { "latitude": [ - 3377 + 3373 ], "longitude": [ - 3377 + 3373 ], "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "tournaments_variance_order_by": { "latitude": [ - 3377 + 3373 ], "longitude": [ - 3377 + 3373 ], "organizer_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 5458 + 5454 ], "_contains": [ - 5458 + 5454 ], "_eq": [ - 5458 + 5454 ], "_gt": [ - 5458 + 5454 ], "_gte": [ - 5458 + 5454 ], "_in": [ - 5458 + 5454 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 5458 + 5454 ], "_lte": [ - 5458 + 5454 ], "_neq": [ - 5458 + 5454 ], "_nin": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "uuid_comparison_exp": { "_eq": [ - 5458 + 5454 ], "_gt": [ - 5458 + 5454 ], "_gte": [ - 5458 + 5454 ], "_in": [ - 5458 + 5454 ], "_is_null": [ - 5 + 6 ], "_lt": [ - 5458 + 5454 ], "_lte": [ - 5458 + 5454 ], "_neq": [ - 5458 + 5454 ], "_nin": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "event": [ - 1813 + 1814 ], "event_id": [ - 5458 + 5454 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player": [ - 4335 + 4331 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate": { "aggregate": [ - 5475 + 5471 ], "nodes": [ - 5461 + 5457 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate_bool_exp": { "avg": [ - 5464 + 5460 ], "corr": [ - 5465 + 5461 ], "count": [ - 5467 + 5463 ], "covar_samp": [ - 5468 + 5464 ], "max": [ - 5470 + 5466 ], "min": [ - 5471 + 5467 ], "stddev_samp": [ - 5472 + 5468 ], "sum": [ - 5473 + 5469 ], "var_samp": [ - 5474 + 5470 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5488 + 5484 ], "distinct": [ - 5 + 6 ], "filter": [ - 5480 + 5476 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5466 + 5462 ], "distinct": [ - 5 + 6 ], "filter": [ - 5480 + 5476 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5489 + 5485 ], "Y": [ - 5489 + 5485 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5487 + 5483 ], "distinct": [ - 5 + 6 ], "filter": [ - 5480 + 5476 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5469 + 5465 ], "distinct": [ - 5 + 6 ], "filter": [ - 5480 + 5476 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5490 + 5486 ], "Y": [ - 5490 + 5486 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5491 + 5487 ], "distinct": [ - 5 + 6 ], "filter": [ - 5480 + 5476 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5492 + 5488 ], "distinct": [ - 5 + 6 ], "filter": [ - 5480 + 5476 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5493 + 5489 ], "distinct": [ - 5 + 6 ], "filter": [ - 5480 + 5476 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5494 + 5490 ], "distinct": [ - 5 + 6 ], "filter": [ - 5480 + 5476 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5495 + 5491 ], "distinct": [ - 5 + 6 ], "filter": [ - 5480 + 5476 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate_fields": { "avg": [ - 5478 + 5474 ], "count": [ - 40, + 41, { "columns": [ - 5487, + 5483, "[v_event_player_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5482 + 5478 ], "min": [ - 5484 + 5480 ], "stddev": [ - 5496 + 5492 ], "stddev_pop": [ - 5498 + 5494 ], "stddev_samp": [ - 5500 + 5496 ], "sum": [ - 5504 + 5500 ], "var_pop": [ - 5506 + 5502 ], "var_samp": [ - 5508 + 5504 ], "variance": [ - 5510 + 5506 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_aggregate_order_by": { "avg": [ - 5479 + 5475 ], "count": [ - 3377 + 3373 ], "max": [ - 5483 + 5479 ], "min": [ - 5485 + 5481 ], "stddev": [ - 5497 + 5493 ], "stddev_pop": [ - 5499 + 5495 ], "stddev_samp": [ - 5501 + 5497 ], "sum": [ - 5505 + 5501 ], "var_pop": [ - 5507 + 5503 ], "var_samp": [ - 5509 + 5505 ], "variance": [ - 5511 + 5507 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_arr_rel_insert_input": { "data": [ - 5481 + 5477 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_event_player_stats_avg_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_bool_exp": { "_and": [ - 5480 + 5476 ], "_not": [ - 5480 + 5476 ], "_or": [ - 5480 + 5476 ], "assists": [ - 41 + 42 ], "deaths": [ - 41 + 42 ], "event": [ - 1817 + 1818 ], "event_id": [ - 5460 + 5456 ], "headshot_percentage": [ - 1842 + 1843 ], "headshots": [ - 41 + 42 ], "kdr": [ - 1842 + 1843 ], "kills": [ - 41 + 42 ], "matches_played": [ - 41 + 42 ], "player": [ - 4339 + 4335 ], "player_steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_insert_input": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "event": [ - 1824 + 1825 ], "event_id": [ - 5458 + 5454 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player": [ - 4346 + 4342 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_max_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "event_id": [ - 5458 + 5454 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_max_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "event_id": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_min_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "event_id": [ - 5458 + 5454 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_min_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "event_id": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "event": [ - 1826 + 1827 ], "event_id": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_select_column": {}, @@ -122502,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": [ - 83 + 84 ] }, "v_event_player_stats_stddev_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_event_player_stats_stddev_pop_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_event_player_stats_stddev_samp_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 5503 + 5499 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_stream_cursor_value_input": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "event_id": [ - 5458 + 5454 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_sum_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_event_player_stats_sum_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_event_player_stats_var_pop_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_event_player_stats_var_samp_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_event_player_stats_variance_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 5514 + 5510 ], "nodes": [ - 5512 + 5508 ], "__typename": [ - 83 + 84 ] }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 5515 + 5511 ], "count": [ - 40, + 41, { "columns": [ - 5520, + 5516, "[v_gpu_pool_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5517 + 5513 ], "min": [ - 5518 + 5514 ], "stddev": [ - 5521 + 5517 ], "stddev_pop": [ - 5522 + 5518 ], "stddev_samp": [ - 5523 + 5519 ], "sum": [ - 5526 + 5522 ], "var_pop": [ - 5527 + 5523 ], "var_samp": [ - 5528 + 5524 ], "variance": [ - 5529 + 5525 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_gpu_pool_status_bool_exp": { "_and": [ - 5516 + 5512 ], "_not": [ - 5516 + 5512 ], "_or": [ - 5516 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 3377 + 3373 ], "demo_in_progress": [ - 3377 + 3373 ], "demo_total_gpu_nodes": [ - 3377 + 3373 ], "free_gpu_nodes": [ - 3377 + 3373 ], "free_gpu_nodes_for_batch": [ - 3377 + 3373 ], "highlights_in_progress": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "live_in_progress": [ - 3377 + 3373 ], "registered_gpu_nodes": [ - 3377 + 3373 ], "rendering_total_gpu_nodes": [ - 3377 + 3373 ], "renders_paused_for_active_match": [ - 3377 + 3373 ], "streaming_free_gpu_nodes": [ - 3377 + 3373 ], "streaming_total_gpu_nodes": [ - 3377 + 3373 ], "total_gpu_nodes": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 5525 + 5521 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_division_standings": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "league_division_id": [ - 5458 + 5454 ], "league_season_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team": [ - 2551 + 2547 ], "league_team_id": [ - 5458 + 5454 ], "league_team_season_id": [ - 5458 + 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": [ - 2369 + 2365 ], "team_season": [ - 2509 + 2505 ], "tournament_team_id": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_league_division_standings_aggregate": { "aggregate": [ - 5534 + 5530 ], "nodes": [ - 5530 + 5526 ], "__typename": [ - 83 + 84 ] }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 5533 + 5529 ], "__typename": [ - 83 + 84 ] }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 5546 + 5542 ], "distinct": [ - 5 + 6 ], "filter": [ - 5539 + 5535 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_league_division_standings_aggregate_fields": { "avg": [ - 5537 + 5533 ], "count": [ - 40, + 41, { "columns": [ - 5546, + 5542, "[v_league_division_standings_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5541 + 5537 ], "min": [ - 5543 + 5539 ], "stddev": [ - 5547 + 5543 ], "stddev_pop": [ - 5549 + 5545 ], "stddev_samp": [ - 5551 + 5547 ], "sum": [ - 5555 + 5551 ], "var_pop": [ - 5557 + 5553 ], "var_samp": [ - 5559 + 5555 ], "variance": [ - 5561 + 5557 ], "__typename": [ - 83 + 84 ] }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 5538 + 5534 ], "count": [ - 3377 + 3373 ], "max": [ - 5542 + 5538 ], "min": [ - 5544 + 5540 ], "stddev": [ - 5548 + 5544 ], "stddev_pop": [ - 5550 + 5546 ], "stddev_samp": [ - 5552 + 5548 ], "sum": [ - 5556 + 5552 ], "var_pop": [ - 5558 + 5554 ], "var_samp": [ - 5560 + 5556 ], "variance": [ - 5562 + 5558 ], "__typename": [ - 83 + 84 ] }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 5540 + 5536 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "round_diff": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_league_division_standings_bool_exp": { "_and": [ - 5539 + 5535 ], "_not": [ - 5539 + 5535 ], "_or": [ - 5539 + 5535 ], "head_to_head_match_wins": [ - 41 + 42 ], "head_to_head_rounds_won": [ - 41 + 42 ], "league_division_id": [ - 5460 + 5456 ], "league_season_division_id": [ - 5460 + 5456 ], "league_season_id": [ - 5460 + 5456 ], "league_team": [ - 2554 + 2550 ], "league_team_id": [ - 5460 + 5456 ], "league_team_season_id": [ - 5460 + 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": [ - 2376 + 2372 ], "team_season": [ - 2518 + 2514 ], "tournament_team_id": [ - 5460 + 5456 ], "wins": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_league_division_standings_insert_input": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "league_division_id": [ - 5458 + 5454 ], "league_season_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team": [ - 2560 + 2556 ], "league_team_id": [ - 5458 + 5454 ], "league_team_season_id": [ - 5458 + 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": [ - 2384 + 2380 ], "team_season": [ - 2527 + 2523 ], "tournament_team_id": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_league_division_standings_max_fields": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "league_division_id": [ - 5458 + 5454 ], "league_season_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team_id": [ - 5458 + 5454 ], "league_team_season_id": [ - 5458 + 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": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "league_division_id": [ - 3377 + 3373 ], "league_season_division_id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "league_team_id": [ - 3377 + 3373 ], "league_team_season_id": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "round_diff": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_league_division_standings_min_fields": { "head_to_head_match_wins": [ - 40 + 41 ], "head_to_head_rounds_won": [ - 40 + 41 ], "league_division_id": [ - 5458 + 5454 ], "league_season_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team_id": [ - 5458 + 5454 ], "league_team_season_id": [ - 5458 + 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": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "league_division_id": [ - 3377 + 3373 ], "league_season_division_id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "league_team_id": [ - 3377 + 3373 ], "league_team_season_id": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "round_diff": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "league_division_id": [ - 3377 + 3373 ], "league_season_division_id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "league_team": [ - 2562 + 2558 ], "league_team_id": [ - 3377 + 3373 ], "league_team_season_id": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "round_diff": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "season_division": [ - 2386 + 2382 ], "team_season": [ - 2529 + 2525 ], "tournament_team_id": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "round_diff": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "round_diff": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "round_diff": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 5554 + 5550 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 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": [ - 5458 + 5454 ], "league_season_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team_id": [ - 5458 + 5454 ], "league_team_season_id": [ - 5458 + 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": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "round_diff": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "round_diff": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "round_diff": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "round_diff": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "league_division_id": [ - 5458 + 5454 ], "league_season_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team": [ - 2551 + 2547 ], "league_team_id": [ - 5458 + 5454 ], "league_team_season_id": [ - 5458 + 5454 ], "matches_played": [ - 40 + 41 ], "player": [ - 4335 + 4331 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 5577 + 5573 ], "nodes": [ - 5563 + 5559 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 5566 + 5562 ], "corr": [ - 5567 + 5563 ], "count": [ - 5569 + 5565 ], "covar_samp": [ - 5570 + 5566 ], "max": [ - 5572 + 5568 ], "min": [ - 5573 + 5569 ], "stddev_samp": [ - 5574 + 5570 ], "sum": [ - 5575 + 5571 ], "var_samp": [ - 5576 + 5572 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5590 + 5586 ], "distinct": [ - 5 + 6 ], "filter": [ - 5582 + 5578 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5568 + 5564 ], "distinct": [ - 5 + 6 ], "filter": [ - 5582 + 5578 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5591 + 5587 ], "Y": [ - 5591 + 5587 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5589 + 5585 ], "distinct": [ - 5 + 6 ], "filter": [ - 5582 + 5578 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5571 + 5567 ], "distinct": [ - 5 + 6 ], "filter": [ - 5582 + 5578 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5592 + 5588 ], "Y": [ - 5592 + 5588 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5593 + 5589 ], "distinct": [ - 5 + 6 ], "filter": [ - 5582 + 5578 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5594 + 5590 ], "distinct": [ - 5 + 6 ], "filter": [ - 5582 + 5578 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5595 + 5591 ], "distinct": [ - 5 + 6 ], "filter": [ - 5582 + 5578 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5596 + 5592 ], "distinct": [ - 5 + 6 ], "filter": [ - 5582 + 5578 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5597 + 5593 ], "distinct": [ - 5 + 6 ], "filter": [ - 5582 + 5578 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 5580 + 5576 ], "count": [ - 40, + 41, { "columns": [ - 5589, + 5585, "[v_league_season_player_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5584 + 5580 ], "min": [ - 5586 + 5582 ], "stddev": [ - 5598 + 5594 ], "stddev_pop": [ - 5600 + 5596 ], "stddev_samp": [ - 5602 + 5598 ], "sum": [ - 5606 + 5602 ], "var_pop": [ - 5608 + 5604 ], "var_samp": [ - 5610 + 5606 ], "variance": [ - 5612 + 5608 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 5581 + 5577 ], "count": [ - 3377 + 3373 ], "max": [ - 5585 + 5581 ], "min": [ - 5587 + 5583 ], "stddev": [ - 5599 + 5595 ], "stddev_pop": [ - 5601 + 5597 ], "stddev_samp": [ - 5603 + 5599 ], "sum": [ - 5607 + 5603 ], "var_pop": [ - 5609 + 5605 ], "var_samp": [ - 5611 + 5607 ], "variance": [ - 5613 + 5609 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 5583 + 5579 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_bool_exp": { "_and": [ - 5582 + 5578 ], "_not": [ - 5582 + 5578 ], "_or": [ - 5582 + 5578 ], "assists": [ - 41 + 42 ], "deaths": [ - 41 + 42 ], "headshot_percentage": [ - 1842 + 1843 ], "headshots": [ - 41 + 42 ], "kdr": [ - 1842 + 1843 ], "kills": [ - 41 + 42 ], "league_division_id": [ - 5460 + 5456 ], "league_season_division_id": [ - 5460 + 5456 ], "league_season_id": [ - 5460 + 5456 ], "league_team": [ - 2554 + 2550 ], "league_team_id": [ - 5460 + 5456 ], "league_team_season_id": [ - 5460 + 5456 ], "matches_played": [ - 41 + 42 ], "player": [ - 4339 + 4335 ], "player_steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_insert_input": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "league_division_id": [ - 5458 + 5454 ], "league_season_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team": [ - 2560 + 2556 ], "league_team_id": [ - 5458 + 5454 ], "league_team_season_id": [ - 5458 + 5454 ], "matches_played": [ - 40 + 41 ], "player": [ - 4346 + 4342 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_max_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "league_division_id": [ - 5458 + 5454 ], "league_season_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team_id": [ - 5458 + 5454 ], "league_team_season_id": [ - 5458 + 5454 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_max_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "league_division_id": [ - 3377 + 3373 ], "league_season_division_id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "league_team_id": [ - 3377 + 3373 ], "league_team_season_id": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_min_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "league_division_id": [ - 5458 + 5454 ], "league_season_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team_id": [ - 5458 + 5454 ], "league_team_season_id": [ - 5458 + 5454 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_min_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "league_division_id": [ - 3377 + 3373 ], "league_season_division_id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "league_team_id": [ - 3377 + 3373 ], "league_team_season_id": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "league_division_id": [ - 3377 + 3373 ], "league_season_division_id": [ - 3377 + 3373 ], "league_season_id": [ - 3377 + 3373 ], "league_team": [ - 2562 + 2558 ], "league_team_id": [ - 3377 + 3373 ], "league_team_season_id": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_select_column": {}, @@ -125704,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": [ - 83 + 84 ] }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 5605 + 5601 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_stream_cursor_value_input": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "league_division_id": [ - 5458 + 5454 ], "league_season_division_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "league_team_id": [ - 5458 + 5454 ], "league_team_season_id": [ - 5458 + 5454 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_sum_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_match_captains": { "captain": [ - 5 + 6 ], "discord_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "lineup": [ - 2815 + 2811 ], "match_lineup_id": [ - 5458 + 5454 ], "placeholder_name": [ - 83 + 84 ], "player": [ - 4335 + 4331 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_aggregate": { "aggregate": [ - 5616 + 5612 ], "nodes": [ - 5614 + 5610 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_aggregate_fields": { "avg": [ - 5617 + 5613 ], "count": [ - 40, + 41, { "columns": [ - 5626, + 5622, "[v_match_captains_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5621 + 5617 ], "min": [ - 5622 + 5618 ], "stddev": [ - 5628 + 5624 ], "stddev_pop": [ - 5629 + 5625 ], "stddev_samp": [ - 5630 + 5626 ], "sum": [ - 5633 + 5629 ], "var_pop": [ - 5635 + 5631 ], "var_samp": [ - 5636 + 5632 ], "variance": [ - 5637 + 5633 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_bool_exp": { "_and": [ - 5618 + 5614 ], "_not": [ - 5618 + 5614 ], "_or": [ - 5618 + 5614 ], "captain": [ - 6 + 7 ], "discord_id": [ - 85 + 86 ], "id": [ - 5460 + 5456 ], "lineup": [ - 2824 + 2820 ], "match_lineup_id": [ - 5460 + 5456 ], "placeholder_name": [ - 85 + 86 ], "player": [ - 4339 + 4335 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_inc_input": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_insert_input": { "captain": [ - 5 + 6 ], "discord_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "lineup": [ - 2833 + 2829 ], "match_lineup_id": [ - 5458 + 5454 ], "placeholder_name": [ - 83 + 84 ], "player": [ - 4346 + 4342 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_max_fields": { "discord_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "placeholder_name": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_min_fields": { "discord_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "placeholder_name": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5614 + 5610 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_obj_rel_insert_input": { "data": [ - 5620 + 5616 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_order_by": { "captain": [ - 3377 + 3373 ], "discord_id": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "lineup": [ - 2835 + 2831 ], "match_lineup_id": [ - 3377 + 3373 ], "placeholder_name": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_select_column": {}, "v_match_captains_set_input": { "captain": [ - 5 + 6 ], "discord_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "placeholder_name": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 5632 + 5628 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_stream_cursor_value_input": { "captain": [ - 5 + 6 ], "discord_id": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "placeholder_name": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_updates": { "_inc": [ - 5619 + 5615 ], "_set": [ - 5627 + 5623 ], "where": [ - 5618 + 5614 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_captains_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches": { "against_count": [ - 40 + 41 ], "clutcher": [ - 4335 + 4331 ], "clutcher_steam_id": [ - 268 + 269 ], "kills_in_clutch": [ - 40 + 41 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_lineup": [ - 2815 + 2811 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "outcome": [ - 83 + 84 ], "round": [ - 40 + 41 ], "side": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_aggregate": { "aggregate": [ - 5642 + 5638 ], "nodes": [ - 5638 + 5634 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 5641 + 5637 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 5654 + 5650 ], "distinct": [ - 5 + 6 ], "filter": [ - 5647 + 5643 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_aggregate_fields": { "avg": [ - 5645 + 5641 ], "count": [ - 40, + 41, { "columns": [ - 5654, + 5650, "[v_match_clutches_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5649 + 5645 ], "min": [ - 5651 + 5647 ], "stddev": [ - 5655 + 5651 ], "stddev_pop": [ - 5657 + 5653 ], "stddev_samp": [ - 5659 + 5655 ], "sum": [ - 5663 + 5659 ], "var_pop": [ - 5665 + 5661 ], "var_samp": [ - 5667 + 5663 ], "variance": [ - 5669 + 5665 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_aggregate_order_by": { "avg": [ - 5646 + 5642 ], "count": [ - 3377 + 3373 ], "max": [ - 5650 + 5646 ], "min": [ - 5652 + 5648 ], "stddev": [ - 5656 + 5652 ], "stddev_pop": [ - 5658 + 5654 ], "stddev_samp": [ - 5660 + 5656 ], "sum": [ - 5664 + 5660 ], "var_pop": [ - 5666 + 5662 ], "var_samp": [ - 5668 + 5664 ], "variance": [ - 5670 + 5666 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 5648 + 5644 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_avg_fields": { "against_count": [ - 31 + 32 ], "clutcher_steam_id": [ - 31 + 32 ], "kills_in_clutch": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_avg_order_by": { "against_count": [ - 3377 + 3373 ], "clutcher_steam_id": [ - 3377 + 3373 ], "kills_in_clutch": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_bool_exp": { "_and": [ - 5647 + 5643 ], "_not": [ - 5647 + 5643 ], "_or": [ - 5647 + 5643 ], "against_count": [ - 41 + 42 ], "clutcher": [ - 4339 + 4335 ], "clutcher_steam_id": [ - 270 + 271 ], "kills_in_clutch": [ - 41 + 42 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_lineup": [ - 2824 + 2820 ], "match_lineup_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "outcome": [ - 85 + 86 ], "round": [ - 41 + 42 ], "side": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_insert_input": { "against_count": [ - 40 + 41 ], "clutcher": [ - 4346 + 4342 ], "clutcher_steam_id": [ - 268 + 269 ], "kills_in_clutch": [ - 40 + 41 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_lineup": [ - 2833 + 2829 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 5454 ], "outcome": [ - 83 + 84 ], "round": [ - 40 + 41 ], "side": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_max_fields": { "against_count": [ - 40 + 41 ], "clutcher_steam_id": [ - 268 + 269 ], "kills_in_clutch": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "outcome": [ - 83 + 84 ], "round": [ - 40 + 41 ], "side": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_max_order_by": { "against_count": [ - 3377 + 3373 ], "clutcher_steam_id": [ - 3377 + 3373 ], "kills_in_clutch": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_lineup_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "outcome": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "side": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_min_fields": { "against_count": [ - 40 + 41 ], "clutcher_steam_id": [ - 268 + 269 ], "kills_in_clutch": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "outcome": [ - 83 + 84 ], "round": [ - 40 + 41 ], "side": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_min_order_by": { "against_count": [ - 3377 + 3373 ], "clutcher_steam_id": [ - 3377 + 3373 ], "kills_in_clutch": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_lineup_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "outcome": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "side": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_order_by": { "against_count": [ - 3377 + 3373 ], "clutcher": [ - 4348 + 4344 ], "clutcher_steam_id": [ - 3377 + 3373 ], "kills_in_clutch": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_lineup": [ - 2835 + 2831 ], "match_lineup_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "outcome": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "side": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_clutches_stddev_order_by": { "against_count": [ - 3377 + 3373 ], "clutcher_steam_id": [ - 3377 + 3373 ], "kills_in_clutch": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 3377 + 3373 ], "clutcher_steam_id": [ - 3377 + 3373 ], "kills_in_clutch": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 3377 + 3373 ], "clutcher_steam_id": [ - 3377 + 3373 ], "kills_in_clutch": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 5662 + 5658 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_stream_cursor_value_input": { "against_count": [ - 40 + 41 ], "clutcher_steam_id": [ - 268 + 269 ], "kills_in_clutch": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "outcome": [ - 83 + 84 ], "round": [ - 40 + 41 ], "side": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_sum_fields": { "against_count": [ - 40 + 41 ], "clutcher_steam_id": [ - 268 + 269 ], "kills_in_clutch": [ - 40 + 41 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_sum_order_by": { "against_count": [ - 3377 + 3373 ], "clutcher_steam_id": [ - 3377 + 3373 ], "kills_in_clutch": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 3377 + 3373 ], "clutcher_steam_id": [ - 3377 + 3373 ], "kills_in_clutch": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 3377 + 3373 ], "clutcher_steam_id": [ - 3377 + 3373 ], "kills_in_clutch": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_variance_fields": { "against_count": [ - 31 + 32 ], "clutcher_steam_id": [ - 31 + 32 ], "kills_in_clutch": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_clutches_variance_order_by": { "against_count": [ - 3377 + 3373 ], "clutcher_steam_id": [ - 3377 + 3373 ], "kills_in_clutch": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs": { "killer_side": [ - 83 + 84 ], "killer_steam_id": [ - 268 + 269 ], "kills": [ - 40 + 41 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "victim_side": [ - 83 + 84 ], "victim_steam_id": [ - 268 + 269 ], "weapon": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 5673 + 5669 ], "nodes": [ - 5671 + 5667 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 5674 + 5670 ], "count": [ - 40, + 41, { "columns": [ - 5679, + 5675, "[v_match_kill_pairs_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5676 + 5672 ], "min": [ - 5677 + 5673 ], "stddev": [ - 5680 + 5676 ], "stddev_pop": [ - 5681 + 5677 ], "stddev_samp": [ - 5682 + 5678 ], "sum": [ - 5685 + 5681 ], "var_pop": [ - 5686 + 5682 ], "var_samp": [ - 5687 + 5683 ], "variance": [ - 5688 + 5684 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs_avg_fields": { "killer_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "victim_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs_bool_exp": { "_and": [ - 5675 + 5671 ], "_not": [ - 5675 + 5671 ], "_or": [ - 5675 + 5671 ], "killer_side": [ - 85 + 86 ], "killer_steam_id": [ - 270 + 271 ], "kills": [ - 41 + 42 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "victim_side": [ - 85 + 86 ], "victim_steam_id": [ - 270 + 271 ], "weapon": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs_max_fields": { "killer_side": [ - 83 + 84 ], "killer_steam_id": [ - 268 + 269 ], "kills": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "victim_side": [ - 83 + 84 ], "victim_steam_id": [ - 268 + 269 ], "weapon": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs_min_fields": { "killer_side": [ - 83 + 84 ], "killer_steam_id": [ - 268 + 269 ], "kills": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "victim_side": [ - 83 + 84 ], "victim_steam_id": [ - 268 + 269 ], "weapon": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs_order_by": { "killer_side": [ - 3377 + 3373 ], "killer_steam_id": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "victim_side": [ - 3377 + 3373 ], "victim_steam_id": [ - 3377 + 3373 ], "weapon": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_kill_pairs_stddev_pop_fields": { "killer_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "victim_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs_stddev_samp_fields": { "killer_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "victim_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 5684 + 5680 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs_stream_cursor_value_input": { "killer_side": [ - 83 + 84 ], "killer_steam_id": [ - 268 + 269 ], "kills": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "victim_side": [ - 83 + 84 ], "victim_steam_id": [ - 268 + 269 ], "weapon": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs_sum_fields": { "killer_steam_id": [ - 268 + 269 ], "kills": [ - 40 + 41 ], "victim_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs_var_pop_fields": { "killer_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "victim_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs_var_samp_fields": { "killer_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "victim_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_kill_pairs_variance_fields": { "killer_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "victim_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types": { "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_lineup": [ - 2815 + 2811 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "matchup": [ - 83 + 84 ], "rounds": [ - 40 + 41 ], "side": [ - 83 + 84 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 5691 + 5687 ], "nodes": [ - 5689 + 5685 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 5692 + 5688 ], "count": [ - 40, + 41, { "columns": [ - 5697, + 5693, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5694 + 5690 ], "min": [ - 5695 + 5691 ], "stddev": [ - 5698 + 5694 ], "stddev_pop": [ - 5699 + 5695 ], "stddev_samp": [ - 5700 + 5696 ], "sum": [ - 5703 + 5699 ], "var_pop": [ - 5704 + 5700 ], "var_samp": [ - 5705 + 5701 ], "variance": [ - 5706 + 5702 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_avg_fields": { "rounds": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 5693 + 5689 ], "_not": [ - 5693 + 5689 ], "_or": [ - 5693 + 5689 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_lineup": [ - 2824 + 2820 ], "match_lineup_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "matchup": [ - 85 + 86 ], "rounds": [ - 41 + 42 ], "side": [ - 85 + 86 ], "wins": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "matchup": [ - 83 + 84 ], "rounds": [ - 40 + 41 ], "side": [ - 83 + 84 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "matchup": [ - 83 + 84 ], "rounds": [ - 40 + 41 ], "side": [ - 83 + 84 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_order_by": { "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_lineup": [ - 2835 + 2831 ], "match_lineup_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "matchup": [ - 3377 + 3373 ], "rounds": [ - 3377 + 3373 ], "side": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_select_column": {}, "v_match_lineup_buy_types_stddev_fields": { "rounds": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_stddev_pop_fields": { "rounds": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_stddev_samp_fields": { "rounds": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 5702 + 5698 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "matchup": [ - 83 + 84 ], "rounds": [ - 40 + 41 ], "side": [ - 83 + 84 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_sum_fields": { "rounds": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_var_pop_fields": { "rounds": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_var_samp_fields": { "rounds": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_buy_types_variance_fields": { "rounds": [ - 31 + 32 ], "wins": [ - 31 + 32 ], "__typename": [ - 83 + 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": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_lineup": [ - 2815 + 2811 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 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": [ - 83 + 84 ], "won_buy_eco": [ - 40 + 41 ], "won_buy_force": [ - 40 + 41 ], "won_buy_full": [ - 40 + 41 ], "won_buy_pistol": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 5709 + 5705 ], "nodes": [ - 5707 + 5703 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 5710 + 5706 ], "count": [ - 40, + 41, { "columns": [ - 5715, + 5711, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5712 + 5708 ], "min": [ - 5713 + 5709 ], "stddev": [ - 5716 + 5712 ], "stddev_pop": [ - 5717 + 5713 ], "stddev_samp": [ - 5718 + 5714 ], "sum": [ - 5721 + 5717 ], "var_pop": [ - 5722 + 5718 ], "var_samp": [ - 5723 + 5719 ], "variance": [ - 5724 + 5720 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 5711 + 5707 ], "_not": [ - 5711 + 5707 ], "_or": [ - 5711 + 5707 ], "man_adv_rounds": [ - 41 + 42 ], "man_adv_wins": [ - 41 + 42 ], "man_dis_rounds": [ - 41 + 42 ], "man_dis_wins": [ - 41 + 42 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_lineup": [ - 2824 + 2820 ], "match_lineup_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 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": [ - 85 + 86 ], "won_buy_eco": [ - 41 + 42 ], "won_buy_force": [ - 41 + 42 ], "won_buy_full": [ - 41 + 42 ], "won_buy_pistol": [ - 41 + 42 ], "__typename": [ - 83 + 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": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 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": [ - 83 + 84 ], "won_buy_eco": [ - 40 + 41 ], "won_buy_force": [ - 40 + 41 ], "won_buy_full": [ - 40 + 41 ], "won_buy_pistol": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 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": [ - 83 + 84 ], "won_buy_eco": [ - 40 + 41 ], "won_buy_force": [ - 40 + 41 ], "won_buy_full": [ - 40 + 41 ], "won_buy_pistol": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 3377 + 3373 ], "man_adv_wins": [ - 3377 + 3373 ], "man_dis_rounds": [ - 3377 + 3373 ], "man_dis_wins": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_lineup": [ - 2835 + 2831 ], "match_lineup_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "opening_attempts": [ - 3377 + 3373 ], "opening_wins": [ - 3377 + 3373 ], "pistol_rounds": [ - 3377 + 3373 ], "pistol_wins": [ - 3377 + 3373 ], "round_wins": [ - 3377 + 3373 ], "rounds": [ - 3377 + 3373 ], "side": [ - 3377 + 3373 ], "won_buy_eco": [ - 3377 + 3373 ], "won_buy_force": [ - 3377 + 3373 ], "won_buy_full": [ - 3377 + 3373 ], "won_buy_pistol": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 5720 + 5716 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 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": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 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": [ - 83 + 84 ], "won_buy_eco": [ - 40 + 41 ], "won_buy_force": [ - 40 + 41 ], "won_buy_full": [ - 40 + 41 ], "won_buy_pistol": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_map_backup_rounds": { "has_backup_file": [ - 5 + 6 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 5727 + 5723 ], "nodes": [ - 5725 + 5721 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 5728 + 5724 ], "count": [ - 40, + 41, { "columns": [ - 5736, + 5732, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5732 + 5728 ], "min": [ - 5733 + 5729 ], "stddev": [ - 5738 + 5734 ], "stddev_pop": [ - 5739 + 5735 ], "stddev_samp": [ - 5740 + 5736 ], "sum": [ - 5743 + 5739 ], "var_pop": [ - 5745 + 5741 ], "var_samp": [ - 5746 + 5742 ], "variance": [ - 5747 + 5743 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_avg_fields": { "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 5729 + 5725 ], "_not": [ - 5729 + 5725 ], "_or": [ - 5729 + 5725 ], "has_backup_file": [ - 6 + 7 ], "match_map_id": [ - 5460 + 5456 ], "round": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_inc_input": { "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_insert_input": { "has_backup_file": [ - 5 + 6 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5725 + 5721 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_select_column": {}, "v_match_map_backup_rounds_set_input": { "has_backup_file": [ - 5 + 6 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_stddev_fields": { "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_stddev_pop_fields": { "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_stddev_samp_fields": { "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 5742 + 5738 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_stream_cursor_value_input": { "has_backup_file": [ - 5 + 6 ], "match_map_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_sum_fields": { "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_updates": { "_inc": [ - 5730 + 5726 ], "_set": [ - 5737 + 5733 ], "where": [ - 5729 + 5725 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_var_pop_fields": { "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_var_samp_fields": { "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_map_backup_rounds_variance_fields": { "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types": { "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_lineup": [ - 2815 + 2811 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "matchup": [ - 83 + 84 ], "player": [ - 4335 + 4331 ], "rounds": [ - 40 + 41 ], "side": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 5750 + 5746 ], "nodes": [ - 5748 + 5744 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 5751 + 5747 ], "count": [ - 40, + 41, { "columns": [ - 5756, + 5752, "[v_match_player_buy_types_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5753 + 5749 ], "min": [ - 5754 + 5750 ], "stddev": [ - 5757 + 5753 ], "stddev_pop": [ - 5758 + 5754 ], "stddev_samp": [ - 5759 + 5755 ], "sum": [ - 5762 + 5758 ], "var_pop": [ - 5763 + 5759 ], "var_samp": [ - 5764 + 5760 ], "variance": [ - 5765 + 5761 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types_avg_fields": { "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types_bool_exp": { "_and": [ - 5752 + 5748 ], "_not": [ - 5752 + 5748 ], "_or": [ - 5752 + 5748 ], "deaths": [ - 41 + 42 ], "kills": [ - 41 + 42 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_lineup": [ - 2824 + 2820 ], "match_lineup_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "matchup": [ - 85 + 86 ], "player": [ - 4339 + 4335 ], "rounds": [ - 41 + 42 ], "side": [ - 85 + 86 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types_max_fields": { "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "matchup": [ - 83 + 84 ], "rounds": [ - 40 + 41 ], "side": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types_min_fields": { "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "matchup": [ - 83 + 84 ], "rounds": [ - 40 + 41 ], "side": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types_order_by": { "deaths": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_lineup": [ - 2835 + 2831 ], "match_lineup_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "matchup": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "rounds": [ - 3377 + 3373 ], "side": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_player_buy_types_stddev_pop_fields": { "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types_stddev_samp_fields": { "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 5761 + 5757 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types_stream_cursor_value_input": { "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "matchup": [ - 83 + 84 ], "rounds": [ - 40 + 41 ], "side": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types_sum_fields": { "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types_var_pop_fields": { "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types_var_samp_fields": { "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_player_buy_types_variance_fields": { "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels": { "attempts": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_lineup": [ - 2815 + 2811 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4335 + 4331 ], "side": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "traded_deaths": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 5770 + 5766 ], "nodes": [ - 5766 + 5762 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 5769 + 5765 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 5782 + 5778 ], "distinct": [ - 5 + 6 ], "filter": [ - 5775 + 5771 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 5773 + 5769 ], "count": [ - 40, + 41, { "columns": [ - 5782, + 5778, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5777 + 5773 ], "min": [ - 5779 + 5775 ], "stddev": [ - 5783 + 5779 ], "stddev_pop": [ - 5785 + 5781 ], "stddev_samp": [ - 5787 + 5783 ], "sum": [ - 5791 + 5787 ], "var_pop": [ - 5793 + 5789 ], "var_samp": [ - 5795 + 5791 ], "variance": [ - 5797 + 5793 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 5774 + 5770 ], "count": [ - 3377 + 3373 ], "max": [ - 5778 + 5774 ], "min": [ - 5780 + 5776 ], "stddev": [ - 5784 + 5780 ], "stddev_pop": [ - 5786 + 5782 ], "stddev_samp": [ - 5788 + 5784 ], "sum": [ - 5792 + 5788 ], "var_pop": [ - 5794 + 5790 ], "var_samp": [ - 5796 + 5792 ], "variance": [ - 5798 + 5794 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 5776 + 5772 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "traded_deaths": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 5775 + 5771 ], "_not": [ - 5775 + 5771 ], "_or": [ - 5775 + 5771 ], "attempts": [ - 41 + 42 ], "deaths": [ - 41 + 42 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_lineup": [ - 2824 + 2820 ], "match_lineup_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "player": [ - 4339 + 4335 ], "side": [ - 85 + 86 ], "steam_id": [ - 270 + 271 ], "traded_deaths": [ - 41 + 42 ], "wins": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_insert_input": { "attempts": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_lineup": [ - 2833 + 2829 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4346 + 4342 ], "side": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "traded_deaths": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_max_fields": { "attempts": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "side": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "traded_deaths": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_lineup_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "side": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "traded_deaths": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_min_fields": { "attempts": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "side": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "traded_deaths": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_lineup_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "side": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "traded_deaths": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_order_by": { "attempts": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_lineup": [ - 2835 + 2831 ], "match_lineup_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "side": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "traded_deaths": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "traded_deaths": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "traded_deaths": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "traded_deaths": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 5790 + 5786 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_stream_cursor_value_input": { "attempts": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "match_id": [ - 5458 + 5454 ], "match_lineup_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "side": [ - 83 + 84 ], "steam_id": [ - 268 + 269 ], "traded_deaths": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_sum_fields": { "attempts": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "traded_deaths": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "traded_deaths": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "traded_deaths": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "traded_deaths": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "traded_deaths": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis": { "attacker_id": [ - 268 + 269 ], "kill_count": [ - 268 + 269 ], "nemsis": [ - 4335 + 4331 ], "player": [ - 4335 + 4331 ], "victim_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 5801 + 5797 ], "nodes": [ - 5799 + 5795 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 5802 + 5798 ], "count": [ - 40, + 41, { "columns": [ - 5807, + 5803, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5804 + 5800 ], "min": [ - 5805 + 5801 ], "stddev": [ - 5808 + 5804 ], "stddev_pop": [ - 5809 + 5805 ], "stddev_samp": [ - 5810 + 5806 ], "sum": [ - 5813 + 5809 ], "var_pop": [ - 5814 + 5810 ], "var_samp": [ - 5815 + 5811 ], "variance": [ - 5816 + 5812 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis_avg_fields": { "attacker_id": [ - 31 + 32 ], "kill_count": [ - 31 + 32 ], "victim_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 5803 + 5799 ], "_not": [ - 5803 + 5799 ], "_or": [ - 5803 + 5799 ], "attacker_id": [ - 270 + 271 ], "kill_count": [ - 270 + 271 ], "nemsis": [ - 4339 + 4335 ], "player": [ - 4339 + 4335 ], "victim_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis_max_fields": { "attacker_id": [ - 268 + 269 ], "kill_count": [ - 268 + 269 ], "victim_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis_min_fields": { "attacker_id": [ - 268 + 269 ], "kill_count": [ - 268 + 269 ], "victim_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 3377 + 3373 ], "kill_count": [ - 3377 + 3373 ], "nemsis": [ - 4348 + 4344 ], "player": [ - 4348 + 4344 ], "victim_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_arch_nemesis_stddev_pop_fields": { "attacker_id": [ - 31 + 32 ], "kill_count": [ - 31 + 32 ], "victim_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis_stddev_samp_fields": { "attacker_id": [ - 31 + 32 ], "kill_count": [ - 31 + 32 ], "victim_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 5812 + 5808 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis_stream_cursor_value_input": { "attacker_id": [ - 268 + 269 ], "kill_count": [ - 268 + 269 ], "victim_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis_sum_fields": { "attacker_id": [ - 268 + 269 ], "kill_count": [ - 268 + 269 ], "victim_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis_var_pop_fields": { "attacker_id": [ - 31 + 32 ], "kill_count": [ - 31 + 32 ], "victim_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis_var_samp_fields": { "attacker_id": [ - 31 + 32 ], "kill_count": [ - 31 + 32 ], "victim_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_arch_nemesis_variance_fields": { "attacker_id": [ - 31 + 32 ], "kill_count": [ - 31 + 32 ], "victim_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_damage": { "avg_damage_per_round": [ - 268 + 269 ], "player": [ - 4335 + 4331 ], "player_steam_id": [ - 268 + 269 ], "total_damage": [ - 268 + 269 ], "total_rounds": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_damage_aggregate": { "aggregate": [ - 5819 + 5815 ], "nodes": [ - 5817 + 5813 ], "__typename": [ - 83 + 84 ] }, "v_player_damage_aggregate_fields": { "avg": [ - 5820 + 5816 ], "count": [ - 40, + 41, { "columns": [ - 5825, + 5821, "[v_player_damage_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5822 + 5818 ], "min": [ - 5823 + 5819 ], "stddev": [ - 5826 + 5822 ], "stddev_pop": [ - 5827 + 5823 ], "stddev_samp": [ - 5828 + 5824 ], "sum": [ - 5831 + 5827 ], "var_pop": [ - 5832 + 5828 ], "var_samp": [ - 5833 + 5829 ], "variance": [ - 5834 + 5830 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_damage_bool_exp": { "_and": [ - 5821 + 5817 ], "_not": [ - 5821 + 5817 ], "_or": [ - 5821 + 5817 ], "avg_damage_per_round": [ - 270 + 271 ], "player": [ - 4339 + 4335 ], "player_steam_id": [ - 270 + 271 ], "total_damage": [ - 270 + 271 ], "total_rounds": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "v_player_damage_max_fields": { "avg_damage_per_round": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "total_damage": [ - 268 + 269 ], "total_rounds": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_damage_min_fields": { "avg_damage_per_round": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "total_damage": [ - 268 + 269 ], "total_rounds": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "player_steam_id": [ - 3377 + 3373 ], "total_damage": [ - 3377 + 3373 ], "total_rounds": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 5830 + 5826 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_player_damage_stream_cursor_value_input": { "avg_damage_per_round": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "total_damage": [ - 268 + 269 ], "total_rounds": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_damage_sum_fields": { "avg_damage_per_round": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "total_damage": [ - 268 + 269 ], "total_rounds": [ - 268 + 269 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_elo": { "actual_score": [ - 1841 + 1842 ], "assists": [ - 40 + 41 ], "current_elo": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1841 + 1842 ], "deaths": [ - 40 + 41 ], "elo_change": [ - 40 + 41 ], "expected_score": [ - 1841 + 1842 ], "impact": [ - 1841 + 1842 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match": [ - 3161 + 3157 ], "match_created_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_result": [ - 83 + 84 ], "opponent_team_elo_avg": [ - 1841 + 1842 ], "performance_multiplier": [ - 1841 + 1842 ], "player_name": [ - 83 + 84 ], "player_steam_id": [ - 268 + 269 ], "player_team_elo_avg": [ - 1841 + 1842 ], "rating_for_expected": [ - 1841 + 1842 ], "season_id": [ - 5458 + 5454 ], "series_multiplier": [ - 40 + 41 ], "team_avg_kda": [ - 1841 + 1842 ], "type": [ - 83 + 84 ], "updated_elo": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate": { "aggregate": [ - 5849 + 5845 ], "nodes": [ - 5835 + 5831 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 5838 + 5834 ], "corr": [ - 5839 + 5835 ], "count": [ - 5841 + 5837 ], "covar_samp": [ - 5842 + 5838 ], "max": [ - 5844 + 5840 ], "min": [ - 5845 + 5841 ], "stddev_samp": [ - 5846 + 5842 ], "sum": [ - 5847 + 5843 ], "var_samp": [ - 5848 + 5844 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 5862 + 5858 ], "distinct": [ - 5 + 6 ], "filter": [ - 5854 + 5850 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 5840 + 5836 ], "distinct": [ - 5 + 6 ], "filter": [ - 5854 + 5850 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 5863 + 5859 ], "Y": [ - 5863 + 5859 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 5861 + 5857 ], "distinct": [ - 5 + 6 ], "filter": [ - 5854 + 5850 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 5843 + 5839 ], "distinct": [ - 5 + 6 ], "filter": [ - 5854 + 5850 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5864 + 5860 ], "Y": [ - 5864 + 5860 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 5865 + 5861 ], "distinct": [ - 5 + 6 ], "filter": [ - 5854 + 5850 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 5866 + 5862 ], "distinct": [ - 5 + 6 ], "filter": [ - 5854 + 5850 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5867 + 5863 ], "distinct": [ - 5 + 6 ], "filter": [ - 5854 + 5850 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 5868 + 5864 ], "distinct": [ - 5 + 6 ], "filter": [ - 5854 + 5850 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 5869 + 5865 ], "distinct": [ - 5 + 6 ], "filter": [ - 5854 + 5850 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate_fields": { "avg": [ - 5852 + 5848 ], "count": [ - 40, + 41, { "columns": [ - 5861, + 5857, "[v_player_elo_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5856 + 5852 ], "min": [ - 5858 + 5854 ], "stddev": [ - 5870 + 5866 ], "stddev_pop": [ - 5872 + 5868 ], "stddev_samp": [ - 5874 + 5870 ], "sum": [ - 5878 + 5874 ], "var_pop": [ - 5880 + 5876 ], "var_samp": [ - 5882 + 5878 ], "variance": [ - 5884 + 5880 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_aggregate_order_by": { "avg": [ - 5853 + 5849 ], "count": [ - 3377 + 3373 ], "max": [ - 5857 + 5853 ], "min": [ - 5859 + 5855 ], "stddev": [ - 5871 + 5867 ], "stddev_pop": [ - 5873 + 5869 ], "stddev_samp": [ - 5875 + 5871 ], "sum": [ - 5879 + 5875 ], "var_pop": [ - 5881 + 5877 ], "var_samp": [ - 5883 + 5879 ], "variance": [ - 5885 + 5881 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_arr_rel_insert_input": { "data": [ - 5855 + 5851 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_elo_avg_order_by": { "actual_score": [ - 3377 + 3373 ], "assists": [ - 3377 + 3373 ], "current_elo": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_percent": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "elo_change": [ - 3377 + 3373 ], "expected_score": [ - 3377 + 3373 ], "impact": [ - 3377 + 3373 ], "k_factor": [ - 3377 + 3373 ], "kda": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "map_losses": [ - 3377 + 3373 ], "map_wins": [ - 3377 + 3373 ], "opponent_team_elo_avg": [ - 3377 + 3373 ], "performance_multiplier": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "player_team_elo_avg": [ - 3377 + 3373 ], "rating_for_expected": [ - 3377 + 3373 ], "series_multiplier": [ - 3377 + 3373 ], "team_avg_kda": [ - 3377 + 3373 ], "updated_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_bool_exp": { "_and": [ - 5854 + 5850 ], "_not": [ - 5854 + 5850 ], "_or": [ - 5854 + 5850 ], "actual_score": [ - 1842 + 1843 ], "assists": [ - 41 + 42 ], "current_elo": [ - 41 + 42 ], "damage": [ - 41 + 42 ], "damage_percent": [ - 1842 + 1843 ], "deaths": [ - 41 + 42 ], "elo_change": [ - 41 + 42 ], "expected_score": [ - 1842 + 1843 ], "impact": [ - 1842 + 1843 ], "k_factor": [ - 41 + 42 ], "kda": [ - 1842 + 1843 ], "kills": [ - 41 + 42 ], "map_losses": [ - 41 + 42 ], "map_wins": [ - 41 + 42 ], "match": [ - 3172 + 3168 ], "match_created_at": [ - 4959 + 4955 ], "match_id": [ - 5460 + 5456 ], "match_result": [ - 85 + 86 ], "opponent_team_elo_avg": [ - 1842 + 1843 ], "performance_multiplier": [ - 1842 + 1843 ], "player_name": [ - 85 + 86 ], "player_steam_id": [ - 270 + 271 ], "player_team_elo_avg": [ - 1842 + 1843 ], "rating_for_expected": [ - 1842 + 1843 ], "season_id": [ - 5460 + 5456 ], "series_multiplier": [ - 41 + 42 ], "team_avg_kda": [ - 1842 + 1843 ], "type": [ - 85 + 86 ], "updated_elo": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_insert_input": { "actual_score": [ - 1841 + 1842 ], "assists": [ - 40 + 41 ], "current_elo": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1841 + 1842 ], "deaths": [ - 40 + 41 ], "elo_change": [ - 40 + 41 ], "expected_score": [ - 1841 + 1842 ], "impact": [ - 1841 + 1842 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match": [ - 3181 + 3177 ], "match_created_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_result": [ - 83 + 84 ], "opponent_team_elo_avg": [ - 1841 + 1842 ], "performance_multiplier": [ - 1841 + 1842 ], "player_name": [ - 83 + 84 ], "player_steam_id": [ - 268 + 269 ], "player_team_elo_avg": [ - 1841 + 1842 ], "rating_for_expected": [ - 1841 + 1842 ], "season_id": [ - 5458 + 5454 ], "series_multiplier": [ - 40 + 41 ], "team_avg_kda": [ - 1841 + 1842 ], "type": [ - 83 + 84 ], "updated_elo": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_max_fields": { "actual_score": [ - 1841 + 1842 ], "assists": [ - 40 + 41 ], "current_elo": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1841 + 1842 ], "deaths": [ - 40 + 41 ], "elo_change": [ - 40 + 41 ], "expected_score": [ - 1841 + 1842 ], "impact": [ - 1841 + 1842 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match_created_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_result": [ - 83 + 84 ], "opponent_team_elo_avg": [ - 1841 + 1842 ], "performance_multiplier": [ - 1841 + 1842 ], "player_name": [ - 83 + 84 ], "player_steam_id": [ - 268 + 269 ], "player_team_elo_avg": [ - 1841 + 1842 ], "rating_for_expected": [ - 1841 + 1842 ], "season_id": [ - 5458 + 5454 ], "series_multiplier": [ - 40 + 41 ], "team_avg_kda": [ - 1841 + 1842 ], "type": [ - 83 + 84 ], "updated_elo": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_max_order_by": { "actual_score": [ - 3377 + 3373 ], "assists": [ - 3377 + 3373 ], "current_elo": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_percent": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "elo_change": [ - 3377 + 3373 ], "expected_score": [ - 3377 + 3373 ], "impact": [ - 3377 + 3373 ], "k_factor": [ - 3377 + 3373 ], "kda": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "map_losses": [ - 3377 + 3373 ], "map_wins": [ - 3377 + 3373 ], "match_created_at": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_result": [ - 3377 + 3373 ], "opponent_team_elo_avg": [ - 3377 + 3373 ], "performance_multiplier": [ - 3377 + 3373 ], "player_name": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "player_team_elo_avg": [ - 3377 + 3373 ], "rating_for_expected": [ - 3377 + 3373 ], "season_id": [ - 3377 + 3373 ], "series_multiplier": [ - 3377 + 3373 ], "team_avg_kda": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "updated_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_min_fields": { "actual_score": [ - 1841 + 1842 ], "assists": [ - 40 + 41 ], "current_elo": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1841 + 1842 ], "deaths": [ - 40 + 41 ], "elo_change": [ - 40 + 41 ], "expected_score": [ - 1841 + 1842 ], "impact": [ - 1841 + 1842 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match_created_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_result": [ - 83 + 84 ], "opponent_team_elo_avg": [ - 1841 + 1842 ], "performance_multiplier": [ - 1841 + 1842 ], "player_name": [ - 83 + 84 ], "player_steam_id": [ - 268 + 269 ], "player_team_elo_avg": [ - 1841 + 1842 ], "rating_for_expected": [ - 1841 + 1842 ], "season_id": [ - 5458 + 5454 ], "series_multiplier": [ - 40 + 41 ], "team_avg_kda": [ - 1841 + 1842 ], "type": [ - 83 + 84 ], "updated_elo": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_min_order_by": { "actual_score": [ - 3377 + 3373 ], "assists": [ - 3377 + 3373 ], "current_elo": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_percent": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "elo_change": [ - 3377 + 3373 ], "expected_score": [ - 3377 + 3373 ], "impact": [ - 3377 + 3373 ], "k_factor": [ - 3377 + 3373 ], "kda": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "map_losses": [ - 3377 + 3373 ], "map_wins": [ - 3377 + 3373 ], "match_created_at": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_result": [ - 3377 + 3373 ], "opponent_team_elo_avg": [ - 3377 + 3373 ], "performance_multiplier": [ - 3377 + 3373 ], "player_name": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "player_team_elo_avg": [ - 3377 + 3373 ], "rating_for_expected": [ - 3377 + 3373 ], "season_id": [ - 3377 + 3373 ], "series_multiplier": [ - 3377 + 3373 ], "team_avg_kda": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "updated_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_order_by": { "actual_score": [ - 3377 + 3373 ], "assists": [ - 3377 + 3373 ], "current_elo": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_percent": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "elo_change": [ - 3377 + 3373 ], "expected_score": [ - 3377 + 3373 ], "impact": [ - 3377 + 3373 ], "k_factor": [ - 3377 + 3373 ], "kda": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "map_losses": [ - 3377 + 3373 ], "map_wins": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_created_at": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_result": [ - 3377 + 3373 ], "opponent_team_elo_avg": [ - 3377 + 3373 ], "performance_multiplier": [ - 3377 + 3373 ], "player_name": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "player_team_elo_avg": [ - 3377 + 3373 ], "rating_for_expected": [ - 3377 + 3373 ], "season_id": [ - 3377 + 3373 ], "series_multiplier": [ - 3377 + 3373 ], "team_avg_kda": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "updated_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_select_column": {}, @@ -132223,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": [ - 83 + 84 ] }, "v_player_elo_stddev_order_by": { "actual_score": [ - 3377 + 3373 ], "assists": [ - 3377 + 3373 ], "current_elo": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_percent": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "elo_change": [ - 3377 + 3373 ], "expected_score": [ - 3377 + 3373 ], "impact": [ - 3377 + 3373 ], "k_factor": [ - 3377 + 3373 ], "kda": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "map_losses": [ - 3377 + 3373 ], "map_wins": [ - 3377 + 3373 ], "opponent_team_elo_avg": [ - 3377 + 3373 ], "performance_multiplier": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "player_team_elo_avg": [ - 3377 + 3373 ], "rating_for_expected": [ - 3377 + 3373 ], "series_multiplier": [ - 3377 + 3373 ], "team_avg_kda": [ - 3377 + 3373 ], "updated_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 3377 + 3373 ], "assists": [ - 3377 + 3373 ], "current_elo": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_percent": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "elo_change": [ - 3377 + 3373 ], "expected_score": [ - 3377 + 3373 ], "impact": [ - 3377 + 3373 ], "k_factor": [ - 3377 + 3373 ], "kda": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "map_losses": [ - 3377 + 3373 ], "map_wins": [ - 3377 + 3373 ], "opponent_team_elo_avg": [ - 3377 + 3373 ], "performance_multiplier": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "player_team_elo_avg": [ - 3377 + 3373 ], "rating_for_expected": [ - 3377 + 3373 ], "series_multiplier": [ - 3377 + 3373 ], "team_avg_kda": [ - 3377 + 3373 ], "updated_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 3377 + 3373 ], "assists": [ - 3377 + 3373 ], "current_elo": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_percent": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "elo_change": [ - 3377 + 3373 ], "expected_score": [ - 3377 + 3373 ], "impact": [ - 3377 + 3373 ], "k_factor": [ - 3377 + 3373 ], "kda": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "map_losses": [ - 3377 + 3373 ], "map_wins": [ - 3377 + 3373 ], "opponent_team_elo_avg": [ - 3377 + 3373 ], "performance_multiplier": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "player_team_elo_avg": [ - 3377 + 3373 ], "rating_for_expected": [ - 3377 + 3373 ], "series_multiplier": [ - 3377 + 3373 ], "team_avg_kda": [ - 3377 + 3373 ], "updated_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 5877 + 5873 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1841 + 1842 ], "assists": [ - 40 + 41 ], "current_elo": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1841 + 1842 ], "deaths": [ - 40 + 41 ], "elo_change": [ - 40 + 41 ], "expected_score": [ - 1841 + 1842 ], "impact": [ - 1841 + 1842 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "match_created_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_result": [ - 83 + 84 ], "opponent_team_elo_avg": [ - 1841 + 1842 ], "performance_multiplier": [ - 1841 + 1842 ], "player_name": [ - 83 + 84 ], "player_steam_id": [ - 268 + 269 ], "player_team_elo_avg": [ - 1841 + 1842 ], "rating_for_expected": [ - 1841 + 1842 ], "season_id": [ - 5458 + 5454 ], "series_multiplier": [ - 40 + 41 ], "team_avg_kda": [ - 1841 + 1842 ], "type": [ - 83 + 84 ], "updated_elo": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_sum_fields": { "actual_score": [ - 1841 + 1842 ], "assists": [ - 40 + 41 ], "current_elo": [ - 40 + 41 ], "damage": [ - 40 + 41 ], "damage_percent": [ - 1841 + 1842 ], "deaths": [ - 40 + 41 ], "elo_change": [ - 40 + 41 ], "expected_score": [ - 1841 + 1842 ], "impact": [ - 1841 + 1842 ], "k_factor": [ - 40 + 41 ], "kda": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "map_losses": [ - 40 + 41 ], "map_wins": [ - 40 + 41 ], "opponent_team_elo_avg": [ - 1841 + 1842 ], "performance_multiplier": [ - 1841 + 1842 ], "player_steam_id": [ - 268 + 269 ], "player_team_elo_avg": [ - 1841 + 1842 ], "rating_for_expected": [ - 1841 + 1842 ], "series_multiplier": [ - 40 + 41 ], "team_avg_kda": [ - 1841 + 1842 ], "updated_elo": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_elo_sum_order_by": { "actual_score": [ - 3377 + 3373 ], "assists": [ - 3377 + 3373 ], "current_elo": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_percent": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "elo_change": [ - 3377 + 3373 ], "expected_score": [ - 3377 + 3373 ], "impact": [ - 3377 + 3373 ], "k_factor": [ - 3377 + 3373 ], "kda": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "map_losses": [ - 3377 + 3373 ], "map_wins": [ - 3377 + 3373 ], "opponent_team_elo_avg": [ - 3377 + 3373 ], "performance_multiplier": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "player_team_elo_avg": [ - 3377 + 3373 ], "rating_for_expected": [ - 3377 + 3373 ], "series_multiplier": [ - 3377 + 3373 ], "team_avg_kda": [ - 3377 + 3373 ], "updated_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 3377 + 3373 ], "assists": [ - 3377 + 3373 ], "current_elo": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_percent": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "elo_change": [ - 3377 + 3373 ], "expected_score": [ - 3377 + 3373 ], "impact": [ - 3377 + 3373 ], "k_factor": [ - 3377 + 3373 ], "kda": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "map_losses": [ - 3377 + 3373 ], "map_wins": [ - 3377 + 3373 ], "opponent_team_elo_avg": [ - 3377 + 3373 ], "performance_multiplier": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "player_team_elo_avg": [ - 3377 + 3373 ], "rating_for_expected": [ - 3377 + 3373 ], "series_multiplier": [ - 3377 + 3373 ], "team_avg_kda": [ - 3377 + 3373 ], "updated_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 3377 + 3373 ], "assists": [ - 3377 + 3373 ], "current_elo": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_percent": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "elo_change": [ - 3377 + 3373 ], "expected_score": [ - 3377 + 3373 ], "impact": [ - 3377 + 3373 ], "k_factor": [ - 3377 + 3373 ], "kda": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "map_losses": [ - 3377 + 3373 ], "map_wins": [ - 3377 + 3373 ], "opponent_team_elo_avg": [ - 3377 + 3373 ], "performance_multiplier": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "player_team_elo_avg": [ - 3377 + 3373 ], "rating_for_expected": [ - 3377 + 3373 ], "series_multiplier": [ - 3377 + 3373 ], "team_avg_kda": [ - 3377 + 3373 ], "updated_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_elo_variance_order_by": { "actual_score": [ - 3377 + 3373 ], "assists": [ - 3377 + 3373 ], "current_elo": [ - 3377 + 3373 ], "damage": [ - 3377 + 3373 ], "damage_percent": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "elo_change": [ - 3377 + 3373 ], "expected_score": [ - 3377 + 3373 ], "impact": [ - 3377 + 3373 ], "k_factor": [ - 3377 + 3373 ], "kda": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "map_losses": [ - 3377 + 3373 ], "map_wins": [ - 3377 + 3373 ], "opponent_team_elo_avg": [ - 3377 + 3373 ], "performance_multiplier": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "player_team_elo_avg": [ - 3377 + 3373 ], "rating_for_expected": [ - 3377 + 3373 ], "series_multiplier": [ - 3377 + 3373 ], "team_avg_kda": [ - 3377 + 3373 ], "updated_elo": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses": { "map": [ - 2653 + 2649 ], "map_id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "started_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_aggregate": { "aggregate": [ - 5888 + 5884 ], "nodes": [ - 5886 + 5882 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_aggregate_fields": { "avg": [ - 5889 + 5885 ], "count": [ - 40, + 41, { "columns": [ - 5894, + 5890, "[v_player_map_losses_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5891 + 5887 ], "min": [ - 5892 + 5888 ], "stddev": [ - 5895 + 5891 ], "stddev_pop": [ - 5896 + 5892 ], "stddev_samp": [ - 5897 + 5893 ], "sum": [ - 5900 + 5896 ], "var_pop": [ - 5901 + 5897 ], "var_samp": [ - 5902 + 5898 ], "variance": [ - 5903 + 5899 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_bool_exp": { "_and": [ - 5890 + 5886 ], "_not": [ - 5890 + 5886 ], "_or": [ - 5890 + 5886 ], "map": [ - 2662 + 2658 ], "map_id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "started_at": [ - 4959 + 4955 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_max_fields": { "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "started_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_min_fields": { "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "started_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_order_by": { "map": [ - 2672 + 2668 ], "map_id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "started_at": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_select_column": {}, "v_player_map_losses_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 5899 + 5895 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "started_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_map_losses_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins": { "map": [ - 2653 + 2649 ], "map_id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "started_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_aggregate": { "aggregate": [ - 5906 + 5902 ], "nodes": [ - 5904 + 5900 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_aggregate_fields": { "avg": [ - 5907 + 5903 ], "count": [ - 40, + 41, { "columns": [ - 5912, + 5908, "[v_player_map_wins_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5909 + 5905 ], "min": [ - 5910 + 5906 ], "stddev": [ - 5913 + 5909 ], "stddev_pop": [ - 5914 + 5910 ], "stddev_samp": [ - 5915 + 5911 ], "sum": [ - 5918 + 5914 ], "var_pop": [ - 5919 + 5915 ], "var_samp": [ - 5920 + 5916 ], "variance": [ - 5921 + 5917 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_avg_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_bool_exp": { "_and": [ - 5908 + 5904 ], "_not": [ - 5908 + 5904 ], "_or": [ - 5908 + 5904 ], "map": [ - 2662 + 2658 ], "map_id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "started_at": [ - 4959 + 4955 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_max_fields": { "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "started_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_min_fields": { "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "started_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_order_by": { "map": [ - 2672 + 2668 ], "map_id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "started_at": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_select_column": {}, "v_player_map_wins_stddev_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_stddev_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_stddev_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 5917 + 5913 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "started_at": [ - 4958 + 4954 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_sum_fields": { "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_var_pop_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_var_samp_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_map_wins_variance_fields": { "steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_match_head_to_head": { "attacked": [ - 4335 + 4331 ], "attacked_steam_id": [ - 268 + 269 ], "attacker": [ - 4335 + 4331 ], "attacker_steam_id": [ - 268 + 269 ], "damage_dealt": [ - 40 + 41 ], "flash_count": [ - 268 + 269 ], "headshot_kills": [ - 268 + 269 ], "hits": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 5924 + 5920 ], "nodes": [ - 5922 + 5918 ], "__typename": [ - 83 + 84 ] }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 5925 + 5921 ], "count": [ - 40, + 41, { "columns": [ - 5930, + 5926, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5927 + 5923 ], "min": [ - 5928 + 5924 ], "stddev": [ - 5931 + 5927 ], "stddev_pop": [ - 5932 + 5928 ], "stddev_samp": [ - 5933 + 5929 ], "sum": [ - 5936 + 5932 ], "var_pop": [ - 5937 + 5933 ], "var_samp": [ - 5938 + 5934 ], "variance": [ - 5939 + 5935 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 5926 + 5922 ], "_not": [ - 5926 + 5922 ], "_or": [ - 5926 + 5922 ], "attacked": [ - 4339 + 4335 ], "attacked_steam_id": [ - 270 + 271 ], "attacker": [ - 4339 + 4335 ], "attacker_steam_id": [ - 270 + 271 ], "damage_dealt": [ - 41 + 42 ], "flash_count": [ - 270 + 271 ], "headshot_kills": [ - 270 + 271 ], "hits": [ - 270 + 271 ], "kills": [ - 270 + 271 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "v_player_match_head_to_head_max_fields": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "damage_dealt": [ - 40 + 41 ], "flash_count": [ - 268 + 269 ], "headshot_kills": [ - 268 + 269 ], "hits": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "match_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_player_match_head_to_head_min_fields": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "damage_dealt": [ - 40 + 41 ], "flash_count": [ - 268 + 269 ], "headshot_kills": [ - 268 + 269 ], "hits": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "match_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_player_match_head_to_head_order_by": { "attacked": [ - 4348 + 4344 ], "attacked_steam_id": [ - 3377 + 3373 ], "attacker": [ - 4348 + 4344 ], "attacker_steam_id": [ - 3377 + 3373 ], "damage_dealt": [ - 3377 + 3373 ], "flash_count": [ - 3377 + 3373 ], "headshot_kills": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 5935 + 5931 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_player_match_head_to_head_stream_cursor_value_input": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "damage_dealt": [ - 40 + 41 ], "flash_count": [ - 268 + 269 ], "headshot_kills": [ - 268 + 269 ], "hits": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "match_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_player_match_head_to_head_sum_fields": { "attacked_steam_id": [ - 268 + 269 ], "attacker_steam_id": [ - 268 + 269 ], "damage_dealt": [ - 40 + 41 ], "flash_count": [ - 268 + 269 ], "headshot_kills": [ - 268 + 269 ], "hits": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_map_hltv": { "adr": [ - 3375 + 3371 ], "apr": [ - 3375 + 3371 ], "dpr": [ - 3375 + 3371 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kpr": [ - 3375 + 3371 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4335 + 4331 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 5944 + 5940 ], "nodes": [ - 5940 + 5936 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 5943 + 5939 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 5958 + 5954 ], "distinct": [ - 5 + 6 ], "filter": [ - 5949 + 5945 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 5947 + 5943 ], "count": [ - 40, + 41, { "columns": [ - 5958, + 5954, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5952 + 5948 ], "min": [ - 5954 + 5950 ], "stddev": [ - 5960 + 5956 ], "stddev_pop": [ - 5962 + 5958 ], "stddev_samp": [ - 5964 + 5960 ], "sum": [ - 5968 + 5964 ], "var_pop": [ - 5971 + 5967 ], "var_samp": [ - 5973 + 5969 ], "variance": [ - 5975 + 5971 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 5948 + 5944 ], "count": [ - 3377 + 3373 ], "max": [ - 5953 + 5949 ], "min": [ - 5955 + 5951 ], "stddev": [ - 5961 + 5957 ], "stddev_pop": [ - 5963 + 5959 ], "stddev_samp": [ - 5965 + 5961 ], "sum": [ - 5969 + 5965 ], "var_pop": [ - 5972 + 5968 ], "var_samp": [ - 5974 + 5970 ], "variance": [ - 5976 + 5972 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 5951 + 5947 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 3377 + 3373 ], "apr": [ - 3377 + 3373 ], "dpr": [ - 3377 + 3373 ], "hltv_rating": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "kpr": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 5949 + 5945 ], "_not": [ - 5949 + 5945 ], "_or": [ - 5949 + 5945 ], "adr": [ - 3376 + 3372 ], "apr": [ - 3376 + 3372 ], "dpr": [ - 3376 + 3372 ], "hltv_rating": [ - 3376 + 3372 ], "kast_pct": [ - 3376 + 3372 ], "kpr": [ - 3376 + 3372 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "player": [ - 4339 + 4335 ], "rounds_played": [ - 41 + 42 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_inc_input": { "adr": [ - 3375 + 3371 ], "apr": [ - 3375 + 3371 ], "dpr": [ - 3375 + 3371 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kpr": [ - 3375 + 3371 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_insert_input": { "adr": [ - 3375 + 3371 ], "apr": [ - 3375 + 3371 ], "dpr": [ - 3375 + 3371 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kpr": [ - 3375 + 3371 ], "match": [ - 3181 + 3177 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2995 + 2991 ], "match_map_id": [ - 5458 + 5454 ], "player": [ - 4346 + 4342 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_max_fields": { "adr": [ - 3375 + 3371 ], "apr": [ - 3375 + 3371 ], "dpr": [ - 3375 + 3371 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kpr": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 3377 + 3373 ], "apr": [ - 3377 + 3373 ], "dpr": [ - 3377 + 3373 ], "hltv_rating": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "kpr": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_min_fields": { "adr": [ - 3375 + 3371 ], "apr": [ - 3375 + 3371 ], "dpr": [ - 3375 + 3371 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kpr": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 3377 + 3373 ], "apr": [ - 3377 + 3373 ], "dpr": [ - 3377 + 3373 ], "hltv_rating": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "kpr": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_map_id": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 5940 + 5936 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_order_by": { "adr": [ - 3377 + 3373 ], "apr": [ - 3377 + 3373 ], "dpr": [ - 3377 + 3373 ], "hltv_rating": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "kpr": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "rounds_played": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 3375 + 3371 ], "apr": [ - 3375 + 3371 ], "dpr": [ - 3375 + 3371 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kpr": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 3377 + 3373 ], "apr": [ - 3377 + 3373 ], "dpr": [ - 3377 + 3373 ], "hltv_rating": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "kpr": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 3377 + 3373 ], "apr": [ - 3377 + 3373 ], "dpr": [ - 3377 + 3373 ], "hltv_rating": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "kpr": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 3377 + 3373 ], "apr": [ - 3377 + 3373 ], "dpr": [ - 3377 + 3373 ], "hltv_rating": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "kpr": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 5967 + 5963 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 3375 + 3371 ], "apr": [ - 3375 + 3371 ], "dpr": [ - 3375 + 3371 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kpr": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 3375 + 3371 ], "apr": [ - 3375 + 3371 ], "dpr": [ - 3375 + 3371 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kpr": [ - 3375 + 3371 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 3377 + 3373 ], "apr": [ - 3377 + 3373 ], "dpr": [ - 3377 + 3373 ], "hltv_rating": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "kpr": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_hltv_updates": { "_inc": [ - 5950 + 5946 ], "_set": [ - 5959 + 5955 ], "where": [ - 5949 + 5945 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 3377 + 3373 ], "apr": [ - 3377 + 3373 ], "dpr": [ - 3377 + 3373 ], "hltv_rating": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "kpr": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 3377 + 3373 ], "apr": [ - 3377 + 3373 ], "dpr": [ - 3377 + 3373 ], "hltv_rating": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "kpr": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 3377 + 3373 ], "apr": [ - 3377 + 3373 ], "dpr": [ - 3377 + 3373 ], "hltv_rating": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "kpr": [ - 3377 + 3373 ], "rounds_played": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_roles": { "adr": [ - 3375 + 3371 ], "awp_kills": [ - 40 + 41 ], "awp_share": [ - 3375 + 3371 ], "deaths": [ - 40 + 41 ], "dpr": [ - 3375 + 3371 ], "entry_rate": [ - 3375 + 3371 ], "flash_assists": [ - 40 + 41 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kills": [ - 40 + 41 ], "kpr": [ - 3375 + 3371 ], "lineup_id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "match_map": [ - 2977 + 2973 ], "match_map_id": [ - 5458 + 5454 ], "open_deaths": [ - 40 + 41 ], "open_kills": [ - 40 + 41 ], "opening_attempts": [ - 40 + 41 ], "player": [ - 4335 + 4331 ], "role": [ - 83 + 84 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "support_idx": [ - 3375 + 3371 ], "total_kills": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "util_damage": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 5979 + 5975 ], "nodes": [ - 5977 + 5973 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 5980 + 5976 ], "count": [ - 40, + 41, { "columns": [ - 5985, + 5981, "[v_player_match_map_roles_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 5982 + 5978 ], "min": [ - 5983 + 5979 ], "stddev": [ - 5986 + 5982 ], "stddev_pop": [ - 5987 + 5983 ], "stddev_samp": [ - 5988 + 5984 ], "sum": [ - 5991 + 5987 ], "var_pop": [ - 5992 + 5988 ], "var_samp": [ - 5993 + 5989 ], "variance": [ - 5994 + 5990 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_map_roles_bool_exp": { "_and": [ - 5981 + 5977 ], "_not": [ - 5981 + 5977 ], "_or": [ - 5981 + 5977 ], "adr": [ - 3376 + 3372 ], "awp_kills": [ - 41 + 42 ], "awp_share": [ - 3376 + 3372 ], "deaths": [ - 41 + 42 ], "dpr": [ - 3376 + 3372 ], "entry_rate": [ - 3376 + 3372 ], "flash_assists": [ - 41 + 42 ], "hltv_rating": [ - 3376 + 3372 ], "kast_pct": [ - 3376 + 3372 ], "kills": [ - 41 + 42 ], "kpr": [ - 3376 + 3372 ], "lineup_id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "match_map": [ - 2986 + 2982 ], "match_map_id": [ - 5460 + 5456 ], "open_deaths": [ - 41 + 42 ], "open_kills": [ - 41 + 42 ], "opening_attempts": [ - 41 + 42 ], "player": [ - 4339 + 4335 ], "role": [ - 85 + 86 ], "rounds": [ - 41 + 42 ], "steam_id": [ - 270 + 271 ], "support_idx": [ - 3376 + 3372 ], "total_kills": [ - 41 + 42 ], "trade_kill_successes": [ - 41 + 42 ], "traded_death_successes": [ - 41 + 42 ], "util_damage": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_roles_max_fields": { "adr": [ - 3375 + 3371 ], "awp_kills": [ - 40 + 41 ], "awp_share": [ - 3375 + 3371 ], "deaths": [ - 40 + 41 ], "dpr": [ - 3375 + 3371 ], "entry_rate": [ - 3375 + 3371 ], "flash_assists": [ - 40 + 41 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kills": [ - 40 + 41 ], "kpr": [ - 3375 + 3371 ], "lineup_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "open_deaths": [ - 40 + 41 ], "open_kills": [ - 40 + 41 ], "opening_attempts": [ - 40 + 41 ], "role": [ - 83 + 84 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "support_idx": [ - 3375 + 3371 ], "total_kills": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "util_damage": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_roles_min_fields": { "adr": [ - 3375 + 3371 ], "awp_kills": [ - 40 + 41 ], "awp_share": [ - 3375 + 3371 ], "deaths": [ - 40 + 41 ], "dpr": [ - 3375 + 3371 ], "entry_rate": [ - 3375 + 3371 ], "flash_assists": [ - 40 + 41 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kills": [ - 40 + 41 ], "kpr": [ - 3375 + 3371 ], "lineup_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "open_deaths": [ - 40 + 41 ], "open_kills": [ - 40 + 41 ], "opening_attempts": [ - 40 + 41 ], "role": [ - 83 + 84 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "support_idx": [ - 3375 + 3371 ], "total_kills": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "util_damage": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_roles_order_by": { "adr": [ - 3377 + 3373 ], "awp_kills": [ - 3377 + 3373 ], "awp_share": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "dpr": [ - 3377 + 3373 ], "entry_rate": [ - 3377 + 3373 ], "flash_assists": [ - 3377 + 3373 ], "hltv_rating": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "kpr": [ - 3377 + 3373 ], "lineup_id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "match_map": [ - 2997 + 2993 ], "match_map_id": [ - 3377 + 3373 ], "open_deaths": [ - 3377 + 3373 ], "open_kills": [ - 3377 + 3373 ], "opening_attempts": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "role": [ - 3377 + 3373 ], "rounds": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "support_idx": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "trade_kill_successes": [ - 3377 + 3373 ], "traded_death_successes": [ - 3377 + 3373 ], "util_damage": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 5990 + 5986 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 3375 + 3371 ], "awp_kills": [ - 40 + 41 ], "awp_share": [ - 3375 + 3371 ], "deaths": [ - 40 + 41 ], "dpr": [ - 3375 + 3371 ], "entry_rate": [ - 3375 + 3371 ], "flash_assists": [ - 40 + 41 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kills": [ - 40 + 41 ], "kpr": [ - 3375 + 3371 ], "lineup_id": [ - 5458 + 5454 ], "match_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458 + 5454 ], "open_deaths": [ - 40 + 41 ], "open_kills": [ - 40 + 41 ], "opening_attempts": [ - 40 + 41 ], "role": [ - 83 + 84 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "support_idx": [ - 3375 + 3371 ], "total_kills": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "util_damage": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_match_map_roles_sum_fields": { "adr": [ - 3375 + 3371 ], "awp_kills": [ - 40 + 41 ], "awp_share": [ - 3375 + 3371 ], "deaths": [ - 40 + 41 ], "dpr": [ - 3375 + 3371 ], "entry_rate": [ - 3375 + 3371 ], "flash_assists": [ - 40 + 41 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kills": [ - 40 + 41 ], "kpr": [ - 3375 + 3371 ], "open_deaths": [ - 40 + 41 ], "open_kills": [ - 40 + 41 ], "opening_attempts": [ - 40 + 41 ], "rounds": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "support_idx": [ - 3375 + 3371 ], "total_kills": [ - 40 + 41 ], "trade_kill_successes": [ - 40 + 41 ], "traded_death_successes": [ - 40 + 41 ], "util_damage": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_performance": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "map": [ - 2653 + 2649 ], "map_id": [ - 5458 + 5454 ], "match": [ - 3161 + 3157 ], "match_created_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_result": [ - 83 + 84 ], "player_steam_id": [ - 268 + 269 ], "source": [ - 83 + 84 ], "type": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_player_match_performance_aggregate": { "aggregate": [ - 5997 + 5993 ], "nodes": [ - 5995 + 5991 ], "__typename": [ - 83 + 84 ] }, "v_player_match_performance_aggregate_fields": { "avg": [ - 5998 + 5994 ], "count": [ - 40, + 41, { "columns": [ - 6003, + 5999, "[v_player_match_performance_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 6000 + 5996 ], "min": [ - 6001 + 5997 ], "stddev": [ - 6004 + 6000 ], "stddev_pop": [ - 6005 + 6001 ], "stddev_samp": [ - 6006 + 6002 ], "sum": [ - 6009 + 6005 ], "var_pop": [ - 6010 + 6006 ], "var_samp": [ - 6011 + 6007 ], "variance": [ - 6012 + 6008 ], "__typename": [ - 83 + 84 ] }, "v_player_match_performance_avg_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_match_performance_bool_exp": { "_and": [ - 5999 + 5995 ], "_not": [ - 5999 + 5995 ], "_or": [ - 5999 + 5995 ], "assists": [ - 41 + 42 ], "deaths": [ - 41 + 42 ], "kills": [ - 41 + 42 ], "map": [ - 2662 + 2658 ], "map_id": [ - 5460 + 5456 ], "match": [ - 3172 + 3168 ], "match_created_at": [ - 4959 + 4955 ], "match_id": [ - 5460 + 5456 ], "match_result": [ - 85 + 86 ], "player_steam_id": [ - 270 + 271 ], "source": [ - 85 + 86 ], "type": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "v_player_match_performance_max_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "map_id": [ - 5458 + 5454 ], "match_created_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_result": [ - 83 + 84 ], "player_steam_id": [ - 268 + 269 ], "source": [ - 83 + 84 ], "type": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_player_match_performance_min_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "map_id": [ - 5458 + 5454 ], "match_created_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_result": [ - 83 + 84 ], "player_steam_id": [ - 268 + 269 ], "source": [ - 83 + 84 ], "type": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_player_match_performance_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "map": [ - 2672 + 2668 ], "map_id": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_created_at": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "match_result": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "source": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_performance_stddev_pop_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_match_performance_stddev_samp_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 6008 + 6004 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_player_match_performance_stream_cursor_value_input": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "map_id": [ - 5458 + 5454 ], "match_created_at": [ - 4958 + 4954 ], "match_id": [ - 5458 + 5454 ], "match_result": [ - 83 + 84 ], "player_steam_id": [ - 268 + 269 ], "source": [ - 83 + 84 ], "type": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_player_match_performance_sum_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "kills": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_match_performance_var_pop_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_match_performance_var_samp_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_match_performance_variance_fields": { "assists": [ - 31 + 32 ], "deaths": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_match_rating": { "adr": [ - 3375 + 3371 ], "dpr": [ - 3375 + 3371 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kpr": [ - 3375 + 3371 ], "match": [ - 3161 + 3157 ], "match_id": [ - 5458 + 5454 ], "player": [ - 4335 + 4331 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_match_rating_aggregate": { "aggregate": [ - 6015 + 6011 ], "nodes": [ - 6013 + 6009 ], "__typename": [ - 83 + 84 ] }, "v_player_match_rating_aggregate_fields": { "avg": [ - 6016 + 6012 ], "count": [ - 40, + 41, { "columns": [ - 6021, + 6017, "[v_player_match_rating_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 6018 + 6014 ], "min": [ - 6019 + 6015 ], "stddev": [ - 6022 + 6018 ], "stddev_pop": [ - 6023 + 6019 ], "stddev_samp": [ - 6024 + 6020 ], "sum": [ - 6027 + 6023 ], "var_pop": [ - 6028 + 6024 ], "var_samp": [ - 6029 + 6025 ], "variance": [ - 6030 + 6026 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_rating_bool_exp": { "_and": [ - 6017 + 6013 ], "_not": [ - 6017 + 6013 ], "_or": [ - 6017 + 6013 ], "adr": [ - 3376 + 3372 ], "dpr": [ - 3376 + 3372 ], "hltv_rating": [ - 3376 + 3372 ], "kast_pct": [ - 3376 + 3372 ], "kpr": [ - 3376 + 3372 ], "match": [ - 3172 + 3168 ], "match_id": [ - 5460 + 5456 ], "player": [ - 4339 + 4335 ], "rounds_played": [ - 41 + 42 ], "steam_id": [ - 270 + 271 ], "__typename": [ - 83 + 84 ] }, "v_player_match_rating_max_fields": { "adr": [ - 3375 + 3371 ], "dpr": [ - 3375 + 3371 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kpr": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_match_rating_min_fields": { "adr": [ - 3375 + 3371 ], "dpr": [ - 3375 + 3371 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kpr": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_match_rating_order_by": { "adr": [ - 3377 + 3373 ], "dpr": [ - 3377 + 3373 ], "hltv_rating": [ - 3377 + 3373 ], "kast_pct": [ - 3377 + 3373 ], "kpr": [ - 3377 + 3373 ], "match": [ - 3183 + 3179 ], "match_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "rounds_played": [ - 3377 + 3373 ], "steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 6026 + 6022 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 3375 + 3371 ], "dpr": [ - 3375 + 3371 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kpr": [ - 3375 + 3371 ], "match_id": [ - 5458 + 5454 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_match_rating_sum_fields": { "adr": [ - 3375 + 3371 ], "dpr": [ - 3375 + 3371 ], "hltv_rating": [ - 3375 + 3371 ], "kast_pct": [ - 3375 + 3371 ], "kpr": [ - 3375 + 3371 ], "rounds_played": [ - 40 + 41 ], "steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_multi_kills": { "attacker_steam_id": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "match_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_aggregate": { "aggregate": [ - 6035 + 6031 ], "nodes": [ - 6031 + 6027 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 6034 + 6030 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 6047 + 6043 ], "distinct": [ - 5 + 6 ], "filter": [ - 6040 + 6036 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 6038 + 6034 ], "count": [ - 40, + 41, { "columns": [ - 6047, + 6043, "[v_player_multi_kills_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 6042 + 6038 ], "min": [ - 6044 + 6040 ], "stddev": [ - 6048 + 6044 ], "stddev_pop": [ - 6050 + 6046 ], "stddev_samp": [ - 6052 + 6048 ], "sum": [ - 6056 + 6052 ], "var_pop": [ - 6058 + 6054 ], "var_samp": [ - 6060 + 6056 ], "variance": [ - 6062 + 6058 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 6039 + 6035 ], "count": [ - 3377 + 3373 ], "max": [ - 6043 + 6039 ], "min": [ - 6045 + 6041 ], "stddev": [ - 6049 + 6045 ], "stddev_pop": [ - 6051 + 6047 ], "stddev_samp": [ - 6053 + 6049 ], "sum": [ - 6057 + 6053 ], "var_pop": [ - 6059 + 6055 ], "var_samp": [ - 6061 + 6057 ], "variance": [ - 6063 + 6059 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 6041 + 6037 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_avg_fields": { "attacker_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_bool_exp": { "_and": [ - 6040 + 6036 ], "_not": [ - 6040 + 6036 ], "_or": [ - 6040 + 6036 ], "attacker_steam_id": [ - 270 + 271 ], "kills": [ - 270 + 271 ], "match_id": [ - 5460 + 5456 ], "round": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_insert_input": { "attacker_steam_id": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "match_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_max_fields": { "attacker_steam_id": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "match_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_min_fields": { "attacker_steam_id": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "match_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "match_id": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_stddev_pop_fields": { "attacker_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_stddev_samp_fields": { "attacker_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 6055 + 6051 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_stream_cursor_value_input": { "attacker_steam_id": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "match_id": [ - 5458 + 5454 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_sum_fields": { "attacker_steam_id": [ - 268 + 269 ], "kills": [ - 268 + 269 ], "round": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_var_pop_fields": { "attacker_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_var_samp_fields": { "attacker_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_variance_fields": { "attacker_steam_id": [ - 31 + 32 ], "kills": [ - 31 + 32 ], "round": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "round": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_player_queue_partners": { "first_played_at": [ - 4958 + 4954 ], "last_played_at": [ - 4958 + 4954 ], "matches_together": [ - 40 + 41 ], "partner": [ - 4335 + 4331 ], "partner_steam_id": [ - 268 + 269 ], "player": [ - 4335 + 4331 ], "steam_id": [ - 268 + 269 ], "wins_together": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_queue_partners_aggregate": { "aggregate": [ - 6066 + 6062 ], "nodes": [ - 6064 + 6060 ], "__typename": [ - 83 + 84 ] }, "v_player_queue_partners_aggregate_fields": { "avg": [ - 6067 + 6063 ], "count": [ - 40, + 41, { "columns": [ - 6072, + 6068, "[v_player_queue_partners_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 6069 + 6065 ], "min": [ - 6070 + 6066 ], "stddev": [ - 6073 + 6069 ], "stddev_pop": [ - 6074 + 6070 ], "stddev_samp": [ - 6075 + 6071 ], "sum": [ - 6078 + 6074 ], "var_pop": [ - 6079 + 6075 ], "var_samp": [ - 6080 + 6076 ], "variance": [ - 6081 + 6077 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_queue_partners_bool_exp": { "_and": [ - 6068 + 6064 ], "_not": [ - 6068 + 6064 ], "_or": [ - 6068 + 6064 ], "first_played_at": [ - 4959 + 4955 ], "last_played_at": [ - 4959 + 4955 ], "matches_together": [ - 41 + 42 ], "partner": [ - 4339 + 4335 ], "partner_steam_id": [ - 270 + 271 ], "player": [ - 4339 + 4335 ], "steam_id": [ - 270 + 271 ], "wins_together": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_player_queue_partners_max_fields": { "first_played_at": [ - 4958 + 4954 ], "last_played_at": [ - 4958 + 4954 ], "matches_together": [ - 40 + 41 ], "partner_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "wins_together": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_queue_partners_min_fields": { "first_played_at": [ - 4958 + 4954 ], "last_played_at": [ - 4958 + 4954 ], "matches_together": [ - 40 + 41 ], "partner_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "wins_together": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_queue_partners_order_by": { "first_played_at": [ - 3377 + 3373 ], "last_played_at": [ - 3377 + 3373 ], "matches_together": [ - 3377 + 3373 ], "partner": [ - 4348 + 4344 ], "partner_steam_id": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "steam_id": [ - 3377 + 3373 ], "wins_together": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_queue_partners_stream_cursor_input": { "initial_value": [ - 6077 + 6073 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_player_queue_partners_stream_cursor_value_input": { "first_played_at": [ - 4958 + 4954 ], "last_played_at": [ - 4958 + 4954 ], "matches_together": [ - 40 + 41 ], "partner_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "wins_together": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_player_queue_partners_sum_fields": { "matches_together": [ - 40 + 41 ], "partner_steam_id": [ - 268 + 269 ], "steam_id": [ - 268 + 269 ], "wins_together": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_weapon_damage": { "damage": [ - 268 + 269 ], "hits": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "source": [ - 83 + 84 ], "type": [ - 83 + 84 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 6084 + 6080 ], "nodes": [ - 6082 + 6078 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 6085 + 6081 ], "count": [ - 40, + 41, { "columns": [ - 6090, + 6086, "[v_player_weapon_damage_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 6087 + 6083 ], "min": [ - 6088 + 6084 ], "stddev": [ - 6091 + 6087 ], "stddev_pop": [ - 6092 + 6088 ], "stddev_samp": [ - 6093 + 6089 ], "sum": [ - 6096 + 6092 ], "var_pop": [ - 6097 + 6093 ], "var_samp": [ - 6098 + 6094 ], "variance": [ - 6099 + 6095 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_damage_avg_fields": { "damage": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_damage_bool_exp": { "_and": [ - 6086 + 6082 ], "_not": [ - 6086 + 6082 ], "_or": [ - 6086 + 6082 ], "damage": [ - 270 + 271 ], "hits": [ - 270 + 271 ], "player_steam_id": [ - 270 + 271 ], "source": [ - 85 + 86 ], "type": [ - 85 + 86 ], "with": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_damage_max_fields": { "damage": [ - 268 + 269 ], "hits": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "source": [ - 83 + 84 ], "type": [ - 83 + 84 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_damage_min_fields": { "damage": [ - 268 + 269 ], "hits": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "source": [ - 83 + 84 ], "type": [ - 83 + 84 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_damage_order_by": { "damage": [ - 3377 + 3373 ], "hits": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "source": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "with": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_weapon_damage_stddev_pop_fields": { "damage": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_damage_stddev_samp_fields": { "damage": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 6095 + 6091 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_damage_stream_cursor_value_input": { "damage": [ - 268 + 269 ], "hits": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "source": [ - 83 + 84 ], "type": [ - 83 + 84 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_damage_sum_fields": { "damage": [ - 268 + 269 ], "hits": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_damage_var_pop_fields": { "damage": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_damage_var_samp_fields": { "damage": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_damage_variance_fields": { "damage": [ - 31 + 32 ], "hits": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills": { "kill_count": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "rounds": [ - 268 + 269 ], "source": [ - 83 + 84 ], "type": [ - 83 + 84 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 6102 + 6098 ], "nodes": [ - 6100 + 6096 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 6103 + 6099 ], "count": [ - 40, + 41, { "columns": [ - 6108, + 6104, "[v_player_weapon_kills_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 6105 + 6101 ], "min": [ - 6106 + 6102 ], "stddev": [ - 6109 + 6105 ], "stddev_pop": [ - 6110 + 6106 ], "stddev_samp": [ - 6111 + 6107 ], "sum": [ - 6114 + 6110 ], "var_pop": [ - 6115 + 6111 ], "var_samp": [ - 6116 + 6112 ], "variance": [ - 6117 + 6113 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills_avg_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills_bool_exp": { "_and": [ - 6104 + 6100 ], "_not": [ - 6104 + 6100 ], "_or": [ - 6104 + 6100 ], "kill_count": [ - 270 + 271 ], "player_steam_id": [ - 270 + 271 ], "rounds": [ - 270 + 271 ], "source": [ - 85 + 86 ], "type": [ - 85 + 86 ], "with": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills_max_fields": { "kill_count": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "rounds": [ - 268 + 269 ], "source": [ - 83 + 84 ], "type": [ - 83 + 84 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills_min_fields": { "kill_count": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "rounds": [ - 268 + 269 ], "source": [ - 83 + 84 ], "type": [ - 83 + 84 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills_order_by": { "kill_count": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "rounds": [ - 3377 + 3373 ], "source": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "with": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_player_weapon_kills_stddev_pop_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills_stddev_samp_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 6113 + 6109 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills_stream_cursor_value_input": { "kill_count": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "rounds": [ - 268 + 269 ], "source": [ - 83 + 84 ], "type": [ - 83 + 84 ], "with": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills_sum_fields": { "kill_count": [ - 268 + 269 ], "player_steam_id": [ - 268 + 269 ], "rounds": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills_var_pop_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills_var_samp_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_player_weapon_kills_variance_fields": { "kill_count": [ - 31 + 32 ], "player_steam_id": [ - 31 + 32 ], "rounds": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps": { "active_pool": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "map_pool": [ - 2634 + 2630 ], "map_pool_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "patch": [ - 83 + 84 ], "poster": [ - 83 + 84 ], "type": [ - 83 + 84 ], "workshop_map_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_aggregate": { "aggregate": [ - 6124 + 6120 ], "nodes": [ - 6118 + 6114 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 6121 + 6117 ], "bool_or": [ - 6122 + 6118 ], "count": [ - 6123 + 6119 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 6136 + 6132 ], "distinct": [ - 5 + 6 ], "filter": [ - 6127 + 6123 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 6137 + 6133 ], "distinct": [ - 5 + 6 ], "filter": [ - 6127 + 6123 ], "predicate": [ - 6 + 7 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 6135 + 6131 ], "distinct": [ - 5 + 6 ], "filter": [ - 6127 + 6123 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_aggregate_fields": { "count": [ - 40, + 41, { "columns": [ - 6135, + 6131, "[v_pool_maps_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 6129 + 6125 ], "min": [ - 6131 + 6127 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_aggregate_order_by": { "count": [ - 3377 + 3373 ], "max": [ - 6130 + 6126 ], "min": [ - 6132 + 6128 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 6128 + 6124 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_bool_exp": { "_and": [ - 6127 + 6123 ], "_not": [ - 6127 + 6123 ], "_or": [ - 6127 + 6123 ], "active_pool": [ - 6 + 7 ], "id": [ - 5460 + 5456 ], "label": [ - 85 + 86 ], "map_pool": [ - 2637 + 2633 ], "map_pool_id": [ - 5460 + 5456 ], "name": [ - 85 + 86 ], "patch": [ - 85 + 86 ], "poster": [ - 85 + 86 ], "type": [ - 85 + 86 ], "workshop_map_id": [ - 85 + 86 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_insert_input": { "active_pool": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "map_pool": [ - 2643 + 2639 ], "map_pool_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "patch": [ - 83 + 84 ], "poster": [ - 83 + 84 ], "type": [ - 83 + 84 ], "workshop_map_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_max_fields": { "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "map_pool_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "patch": [ - 83 + 84 ], "poster": [ - 83 + 84 ], "type": [ - 83 + 84 ], "workshop_map_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_max_order_by": { "id": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "map_pool_id": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "patch": [ - 3377 + 3373 ], "poster": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "workshop_map_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_min_fields": { "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "map_pool_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "patch": [ - 83 + 84 ], "poster": [ - 83 + 84 ], "type": [ - 83 + 84 ], "workshop_map_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_min_order_by": { "id": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "map_pool_id": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "patch": [ - 3377 + 3373 ], "poster": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "workshop_map_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 6118 + 6114 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_order_by": { "active_pool": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "label": [ - 3377 + 3373 ], "map_pool": [ - 2645 + 2641 ], "map_pool_id": [ - 3377 + 3373 ], "name": [ - 3377 + 3373 ], "patch": [ - 3377 + 3373 ], "poster": [ - 3377 + 3373 ], "type": [ - 3377 + 3373 ], "workshop_map_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_select_column": {}, @@ -139393,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": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "map_pool_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "patch": [ - 83 + 84 ], "poster": [ - 83 + 84 ], "type": [ - 83 + 84 ], "workshop_map_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 6140 + 6136 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_stream_cursor_value_input": { "active_pool": [ - 5 + 6 ], "id": [ - 5458 + 5454 ], "label": [ - 83 + 84 ], "map_pool_id": [ - 5458 + 5454 ], "name": [ - 83 + 84 ], "patch": [ - 83 + 84 ], "poster": [ - 83 + 84 ], "type": [ - 83 + 84 ], "workshop_map_id": [ - 83 + 84 ], "__typename": [ - 83 + 84 ] }, "v_pool_maps_updates": { "_set": [ - 6138 + 6134 ], "where": [ - 6127 + 6123 ], "__typename": [ - 83 + 84 ] }, "v_steam_account_pool_status": { "busy_accounts": [ - 40 + 41 ], "free_accounts": [ - 40 + 41 ], "id": [ - 40 + 41 ], "total_accounts": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 6144 + 6140 ], "nodes": [ - 6142 + 6138 ], "__typename": [ - 83 + 84 ] }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 6145 + 6141 ], "count": [ - 40, + 41, { "columns": [ - 6150, + 6146, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 6147 + 6143 ], "min": [ - 6148 + 6144 ], "stddev": [ - 6151 + 6147 ], "stddev_pop": [ - 6152 + 6148 ], "stddev_samp": [ - 6153 + 6149 ], "sum": [ - 6156 + 6152 ], "var_pop": [ - 6157 + 6153 ], "var_samp": [ - 6158 + 6154 ], "variance": [ - 6159 + 6155 ], "__typename": [ - 83 + 84 ] }, "v_steam_account_pool_status_avg_fields": { "busy_accounts": [ - 31 + 32 ], "free_accounts": [ - 31 + 32 ], "id": [ - 31 + 32 ], "total_accounts": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 6146 + 6142 ], "_not": [ - 6146 + 6142 ], "_or": [ - 6146 + 6142 ], "busy_accounts": [ - 41 + 42 ], "free_accounts": [ - 41 + 42 ], "id": [ - 41 + 42 ], "total_accounts": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_steam_account_pool_status_max_fields": { "busy_accounts": [ - 40 + 41 ], "free_accounts": [ - 40 + 41 ], "id": [ - 40 + 41 ], "total_accounts": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_steam_account_pool_status_min_fields": { "busy_accounts": [ - 40 + 41 ], "free_accounts": [ - 40 + 41 ], "id": [ - 40 + 41 ], "total_accounts": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 3377 + 3373 ], "free_accounts": [ - 3377 + 3373 ], "id": [ - 3377 + 3373 ], "total_accounts": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 6155 + 6151 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_steam_account_pool_status_sum_fields": { "busy_accounts": [ - 40 + 41 ], "free_accounts": [ - 40 + 41 ], "id": [ - 40 + 41 ], "total_accounts": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_steam_account_pool_status_variance_fields": { "busy_accounts": [ - 31 + 32 ], "free_accounts": [ - 31 + 32 ], "id": [ - 31 + 32 ], "total_accounts": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_team_ranks": { "avg_duel_elo": [ - 40 + 41 ], "avg_elo": [ - 40 + 41 ], "avg_faceit_elo": [ - 40 + 41 ], "avg_faceit_level": [ - 1841 + 1842 ], "avg_premier": [ - 40 + 41 ], "avg_wingman_elo": [ - 40 + 41 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "roster_size": [ - 268 + 269 ], "team": [ - 4909 + 4905 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_team_ranks_aggregate": { "aggregate": [ - 6162 + 6158 ], "nodes": [ - 6160 + 6156 ], "__typename": [ - 83 + 84 ] }, "v_team_ranks_aggregate_fields": { "avg": [ - 6163 + 6159 ], "count": [ - 40, + 41, { "columns": [ - 6170, + 6166, "[v_team_ranks_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 6166 + 6162 ], "min": [ - 6167 + 6163 ], "stddev": [ - 6171 + 6167 ], "stddev_pop": [ - 6172 + 6168 ], "stddev_samp": [ - 6173 + 6169 ], "sum": [ - 6176 + 6172 ], "var_pop": [ - 6177 + 6173 ], "var_samp": [ - 6178 + 6174 ], "variance": [ - 6179 + 6175 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_ranks_bool_exp": { "_and": [ - 6164 + 6160 ], "_not": [ - 6164 + 6160 ], "_or": [ - 6164 + 6160 ], "avg_duel_elo": [ - 41 + 42 ], "avg_elo": [ - 41 + 42 ], "avg_faceit_elo": [ - 41 + 42 ], "avg_faceit_level": [ - 1842 + 1843 ], "avg_premier": [ - 41 + 42 ], "avg_wingman_elo": [ - 41 + 42 ], "max_elo": [ - 41 + 42 ], "min_elo": [ - 41 + 42 ], "roster_size": [ - 270 + 271 ], "team": [ - 4920 + 4916 ], "team_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "v_team_ranks_insert_input": { "avg_duel_elo": [ - 40 + 41 ], "avg_elo": [ - 40 + 41 ], "avg_faceit_elo": [ - 40 + 41 ], "avg_faceit_level": [ - 1841 + 1842 ], "avg_premier": [ - 40 + 41 ], "avg_wingman_elo": [ - 40 + 41 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "roster_size": [ - 268 + 269 ], "team": [ - 4929 + 4925 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_team_ranks_max_fields": { "avg_duel_elo": [ - 40 + 41 ], "avg_elo": [ - 40 + 41 ], "avg_faceit_elo": [ - 40 + 41 ], "avg_faceit_level": [ - 1841 + 1842 ], "avg_premier": [ - 40 + 41 ], "avg_wingman_elo": [ - 40 + 41 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "roster_size": [ - 268 + 269 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_team_ranks_min_fields": { "avg_duel_elo": [ - 40 + 41 ], "avg_elo": [ - 40 + 41 ], "avg_faceit_elo": [ - 40 + 41 ], "avg_faceit_level": [ - 1841 + 1842 ], "avg_premier": [ - 40 + 41 ], "avg_wingman_elo": [ - 40 + 41 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "roster_size": [ - 268 + 269 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 6165 + 6161 ], "__typename": [ - 83 + 84 ] }, "v_team_ranks_order_by": { "avg_duel_elo": [ - 3377 + 3373 ], "avg_elo": [ - 3377 + 3373 ], "avg_faceit_elo": [ - 3377 + 3373 ], "avg_faceit_level": [ - 3377 + 3373 ], "avg_premier": [ - 3377 + 3373 ], "avg_wingman_elo": [ - 3377 + 3373 ], "max_elo": [ - 3377 + 3373 ], "min_elo": [ - 3377 + 3373 ], "roster_size": [ - 3377 + 3373 ], "team": [ - 4931 + 4927 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 6175 + 6171 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 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": [ - 1841 + 1842 ], "avg_premier": [ - 40 + 41 ], "avg_wingman_elo": [ - 40 + 41 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "roster_size": [ - 268 + 269 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_team_ranks_sum_fields": { "avg_duel_elo": [ - 40 + 41 ], "avg_elo": [ - 40 + 41 ], "avg_faceit_elo": [ - 40 + 41 ], "avg_faceit_level": [ - 1841 + 1842 ], "avg_premier": [ - 40 + 41 ], "avg_wingman_elo": [ - 40 + 41 ], "max_elo": [ - 40 + 41 ], "min_elo": [ - 40 + 41 ], "roster_size": [ - 268 + 269 ], "__typename": [ - 83 + 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": [ - 83 + 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": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_reputation": { "late_cancels": [ - 268 + 269 ], "no_shows": [ - 268 + 269 ], "reliability_pct": [ - 3375 + 3371 ], "scrims_completed": [ - 268 + 269 ], "team": [ - 4909 + 4905 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_aggregate": { "aggregate": [ - 6182 + 6178 ], "nodes": [ - 6180 + 6176 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_aggregate_fields": { "avg": [ - 6183 + 6179 ], "count": [ - 40, + 41, { "columns": [ - 6190, + 6186, "[v_team_reputation_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 6186 + 6182 ], "min": [ - 6187 + 6183 ], "stddev": [ - 6191 + 6187 ], "stddev_pop": [ - 6192 + 6188 ], "stddev_samp": [ - 6193 + 6189 ], "sum": [ - 6196 + 6192 ], "var_pop": [ - 6197 + 6193 ], "var_samp": [ - 6198 + 6194 ], "variance": [ - 6199 + 6195 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_avg_fields": { "late_cancels": [ - 31 + 32 ], "no_shows": [ - 31 + 32 ], "reliability_pct": [ - 31 + 32 ], "scrims_completed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_bool_exp": { "_and": [ - 6184 + 6180 ], "_not": [ - 6184 + 6180 ], "_or": [ - 6184 + 6180 ], "late_cancels": [ - 270 + 271 ], "no_shows": [ - 270 + 271 ], "reliability_pct": [ - 3376 + 3372 ], "scrims_completed": [ - 270 + 271 ], "team": [ - 4920 + 4916 ], "team_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_insert_input": { "late_cancels": [ - 268 + 269 ], "no_shows": [ - 268 + 269 ], "reliability_pct": [ - 3375 + 3371 ], "scrims_completed": [ - 268 + 269 ], "team": [ - 4929 + 4925 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_max_fields": { "late_cancels": [ - 268 + 269 ], "no_shows": [ - 268 + 269 ], "reliability_pct": [ - 3375 + 3371 ], "scrims_completed": [ - 268 + 269 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_min_fields": { "late_cancels": [ - 268 + 269 ], "no_shows": [ - 268 + 269 ], "reliability_pct": [ - 3375 + 3371 ], "scrims_completed": [ - 268 + 269 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 6185 + 6181 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_order_by": { "late_cancels": [ - 3377 + 3373 ], "no_shows": [ - 3377 + 3373 ], "reliability_pct": [ - 3377 + 3373 ], "scrims_completed": [ - 3377 + 3373 ], "team": [ - 4931 + 4927 ], "team_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_reputation_stddev_pop_fields": { "late_cancels": [ - 31 + 32 ], "no_shows": [ - 31 + 32 ], "reliability_pct": [ - 31 + 32 ], "scrims_completed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_stddev_samp_fields": { "late_cancels": [ - 31 + 32 ], "no_shows": [ - 31 + 32 ], "reliability_pct": [ - 31 + 32 ], "scrims_completed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 6195 + 6191 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_stream_cursor_value_input": { "late_cancels": [ - 268 + 269 ], "no_shows": [ - 268 + 269 ], "reliability_pct": [ - 3375 + 3371 ], "scrims_completed": [ - 268 + 269 ], "team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_sum_fields": { "late_cancels": [ - 268 + 269 ], "no_shows": [ - 268 + 269 ], "reliability_pct": [ - 3375 + 3371 ], "scrims_completed": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_var_pop_fields": { "late_cancels": [ - 31 + 32 ], "no_shows": [ - 31 + 32 ], "reliability_pct": [ - 31 + 32 ], "scrims_completed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_var_samp_fields": { "late_cancels": [ - 31 + 32 ], "no_shows": [ - 31 + 32 ], "reliability_pct": [ - 31 + 32 ], "scrims_completed": [ - 31 + 32 ], "__typename": [ - 83 + 84 ] }, "v_team_reputation_variance_fields": { "late_cancels": [ - 31 + 32 ], "no_shows": [ - 31 + 32 ], "reliability_pct": [ - 31 + 32 ], "scrims_completed": [ - 31 + 32 ], "__typename": [ - 83 + 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": [ - 5219 + 5215 ], "team": [ - 5352 + 5348 ], "team_kdr": [ - 1841 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate": { "aggregate": [ - 6214 + 6210 ], "nodes": [ - 6200 + 6196 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 6203 + 6199 ], "corr": [ - 6204 + 6200 ], "count": [ - 6206 + 6202 ], "covar_samp": [ - 6207 + 6203 ], "max": [ - 6209 + 6205 ], "min": [ - 6210 + 6206 ], "stddev_samp": [ - 6211 + 6207 ], "sum": [ - 6212 + 6208 ], "var_samp": [ - 6213 + 6209 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 6233 + 6229 ], "distinct": [ - 5 + 6 ], "filter": [ - 6219 + 6215 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 6205 + 6201 ], "distinct": [ - 5 + 6 ], "filter": [ - 6219 + 6215 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 6234 + 6230 ], "Y": [ - 6234 + 6230 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 6232 + 6228 ], "distinct": [ - 5 + 6 ], "filter": [ - 6219 + 6215 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 6208 + 6204 ], "distinct": [ - 5 + 6 ], "filter": [ - 6219 + 6215 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 6235 + 6231 ], "Y": [ - 6235 + 6231 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 6236 + 6232 ], "distinct": [ - 5 + 6 ], "filter": [ - 6219 + 6215 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 6237 + 6233 ], "distinct": [ - 5 + 6 ], "filter": [ - 6219 + 6215 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 6238 + 6234 ], "distinct": [ - 5 + 6 ], "filter": [ - 6219 + 6215 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 6239 + 6235 ], "distinct": [ - 5 + 6 ], "filter": [ - 6219 + 6215 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 6240 + 6236 ], "distinct": [ - 5 + 6 ], "filter": [ - 6219 + 6215 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate_fields": { "avg": [ - 6217 + 6213 ], "count": [ - 40, + 41, { "columns": [ - 6232, + 6228, "[v_team_stage_results_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 6223 + 6219 ], "min": [ - 6225 + 6221 ], "stddev": [ - 6242 + 6238 ], "stddev_pop": [ - 6244 + 6240 ], "stddev_samp": [ - 6246 + 6242 ], "sum": [ - 6250 + 6246 ], "var_pop": [ - 6254 + 6250 ], "var_samp": [ - 6256 + 6252 ], "variance": [ - 6258 + 6254 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 6218 + 6214 ], "count": [ - 3377 + 3373 ], "max": [ - 6224 + 6220 ], "min": [ - 6226 + 6222 ], "stddev": [ - 6243 + 6239 ], "stddev_pop": [ - 6245 + 6241 ], "stddev_samp": [ - 6247 + 6243 ], "sum": [ - 6251 + 6247 ], "var_pop": [ - 6255 + 6251 ], "var_samp": [ - 6257 + 6253 ], "variance": [ - 6259 + 6255 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 6222 + 6218 ], "on_conflict": [ - 6229 + 6225 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_stage_results_avg_order_by": { "group_number": [ - 3377 + 3373 ], "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_bool_exp": { "_and": [ - 6219 + 6215 ], "_not": [ - 6219 + 6215 ], "_or": [ - 6219 + 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": [ - 5231 + 5227 ], "team": [ - 5361 + 5357 ], "team_kdr": [ - 1842 + 1843 ], "total_deaths": [ - 41 + 42 ], "total_kills": [ - 41 + 42 ], "tournament_stage_id": [ - 5460 + 5456 ], "tournament_team_id": [ - 5460 + 5456 ], "wins": [ - 41 + 42 ], "__typename": [ - 83 + 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": [ - 1841 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 5243 + 5239 ], "team": [ - 5370 + 5366 ], "team_kdr": [ - 1841 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 1841 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_max_order_by": { "group_number": [ - 3377 + 3373 ], "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "tournament_stage_id": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 1841 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_min_order_by": { "group_number": [ - 3377 + 3373 ], "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "tournament_stage_id": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_mutation_response": { "affected_rows": [ - 40 + 41 ], "returning": [ - 6200 + 6196 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 6222 + 6218 ], "on_conflict": [ - 6229 + 6225 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_on_conflict": { "constraint": [ - 6220 + 6216 ], "update_columns": [ - 6252 + 6248 ], "where": [ - 6219 + 6215 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_order_by": { "group_number": [ - 3377 + 3373 ], "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "stage": [ - 5245 + 5241 ], "team": [ - 5372 + 5368 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "tournament_stage_id": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_select_column": {}, @@ -141806,1720 +141769,1720 @@ 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": [ - 1841 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 3377 + 3373 ], "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 3377 + 3373 ], "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 3377 + 3373 ], "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 6249 + 6245 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 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": [ - 1841 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_stage_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 1841 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_sum_order_by": { "group_number": [ - 3377 + 3373 ], "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 6221 + 6217 ], "_set": [ - 6241 + 6237 ], "where": [ - 6219 + 6215 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 3377 + 3373 ], "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 3377 + 3373 ], "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_stage_results_variance_order_by": { "group_number": [ - 3377 + 3373 ], "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "placement": [ - 3377 + 3373 ], "rank": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 5352 + 5348 ], "team_kdr": [ - 1841 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament": [ - 5394 + 5390 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate": { "aggregate": [ - 6274 + 6270 ], "nodes": [ - 6260 + 6256 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 6263 + 6259 ], "corr": [ - 6264 + 6260 ], "count": [ - 6266 + 6262 ], "covar_samp": [ - 6267 + 6263 ], "max": [ - 6269 + 6265 ], "min": [ - 6270 + 6266 ], "stddev_samp": [ - 6271 + 6267 ], "sum": [ - 6272 + 6268 ], "var_samp": [ - 6273 + 6269 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 6287 + 6283 ], "distinct": [ - 5 + 6 ], "filter": [ - 6279 + 6275 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 6265 + 6261 ], "distinct": [ - 5 + 6 ], "filter": [ - 6279 + 6275 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 6288 + 6284 ], "Y": [ - 6288 + 6284 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 6286 + 6282 ], "distinct": [ - 5 + 6 ], "filter": [ - 6279 + 6275 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 6268 + 6264 ], "distinct": [ - 5 + 6 ], "filter": [ - 6279 + 6275 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 6289 + 6285 ], "Y": [ - 6289 + 6285 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 6290 + 6286 ], "distinct": [ - 5 + 6 ], "filter": [ - 6279 + 6275 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 6291 + 6287 ], "distinct": [ - 5 + 6 ], "filter": [ - 6279 + 6275 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 6292 + 6288 ], "distinct": [ - 5 + 6 ], "filter": [ - 6279 + 6275 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 6293 + 6289 ], "distinct": [ - 5 + 6 ], "filter": [ - 6279 + 6275 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 6294 + 6290 ], "distinct": [ - 5 + 6 ], "filter": [ - 6279 + 6275 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 6277 + 6273 ], "count": [ - 40, + 41, { "columns": [ - 6286, + 6282, "[v_team_tournament_results_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 6281 + 6277 ], "min": [ - 6283 + 6279 ], "stddev": [ - 6295 + 6291 ], "stddev_pop": [ - 6297 + 6293 ], "stddev_samp": [ - 6299 + 6295 ], "sum": [ - 6303 + 6299 ], "var_pop": [ - 6305 + 6301 ], "var_samp": [ - 6307 + 6303 ], "variance": [ - 6309 + 6305 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 6278 + 6274 ], "count": [ - 3377 + 3373 ], "max": [ - 6282 + 6278 ], "min": [ - 6284 + 6280 ], "stddev": [ - 6296 + 6292 ], "stddev_pop": [ - 6298 + 6294 ], "stddev_samp": [ - 6300 + 6296 ], "sum": [ - 6304 + 6300 ], "var_pop": [ - 6306 + 6302 ], "var_samp": [ - 6308 + 6304 ], "variance": [ - 6310 + 6306 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 6280 + 6276 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_bool_exp": { "_and": [ - 6279 + 6275 ], "_not": [ - 6279 + 6275 ], "_or": [ - 6279 + 6275 ], "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 ], "rounds_lost": [ - 41 + 42 ], "rounds_won": [ - 41 + 42 ], "team": [ - 5361 + 5357 ], "team_kdr": [ - 1842 + 1843 ], "total_deaths": [ - 41 + 42 ], "total_kills": [ - 41 + 42 ], "tournament": [ - 5415 + 5411 ], "tournament_id": [ - 5460 + 5456 ], "tournament_team_id": [ - 5460 + 5456 ], "wins": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_insert_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": [ - 5370 + 5366 ], "team_kdr": [ - 1841 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament": [ - 5424 + 5420 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 1841 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 1841 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team": [ - 5372 + 5368 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "tournament": [ - 5426 + 5422 ], "tournament_id": [ - 3377 + 3373 ], "tournament_team_id": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_select_column": {}, @@ -143533,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": [ - 83 + 84 ] }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 6302 + 6298 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 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": [ - 1841 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "tournament_id": [ - 5458 + 5454 ], "tournament_team_id": [ - 5458 + 5454 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 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": [ - 1841 + 1842 ], "total_deaths": [ - 40 + 41 ], "total_kills": [ - 40 + 41 ], "wins": [ - 40 + 41 ], "__typename": [ - 83 + 84 ] }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 3377 + 3373 ], "head_to_head_rounds_won": [ - 3377 + 3373 ], "losses": [ - 3377 + 3373 ], "maps_lost": [ - 3377 + 3373 ], "maps_won": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "matches_remaining": [ - 3377 + 3373 ], "rounds_lost": [ - 3377 + 3373 ], "rounds_won": [ - 3377 + 3373 ], "team_kdr": [ - 3377 + 3373 ], "total_deaths": [ - 3377 + 3373 ], "total_kills": [ - 3377 + 3373 ], "wins": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player": [ - 4335 + 4331 ], "player_steam_id": [ - 268 + 269 ], "tournament": [ - 5394 + 5390 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 6325 + 6321 ], "nodes": [ - 6311 + 6307 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 6314 + 6310 ], "corr": [ - 6315 + 6311 ], "count": [ - 6317 + 6313 ], "covar_samp": [ - 6318 + 6314 ], "max": [ - 6320 + 6316 ], "min": [ - 6321 + 6317 ], "stddev_samp": [ - 6322 + 6318 ], "sum": [ - 6323 + 6319 ], "var_samp": [ - 6324 + 6320 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 6338 + 6334 ], "distinct": [ - 5 + 6 ], "filter": [ - 6330 + 6326 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 6316 + 6312 ], "distinct": [ - 5 + 6 ], "filter": [ - 6330 + 6326 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 6339 + 6335 ], "Y": [ - 6339 + 6335 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 6337 + 6333 ], "distinct": [ - 5 + 6 ], "filter": [ - 6330 + 6326 ], "predicate": [ - 41 + 42 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 6319 + 6315 ], "distinct": [ - 5 + 6 ], "filter": [ - 6330 + 6326 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 6340 + 6336 ], "Y": [ - 6340 + 6336 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 6341 + 6337 ], "distinct": [ - 5 + 6 ], "filter": [ - 6330 + 6326 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 6342 + 6338 ], "distinct": [ - 5 + 6 ], "filter": [ - 6330 + 6326 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 6343 + 6339 ], "distinct": [ - 5 + 6 ], "filter": [ - 6330 + 6326 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 6344 + 6340 ], "distinct": [ - 5 + 6 ], "filter": [ - 6330 + 6326 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 6345 + 6341 ], "distinct": [ - 5 + 6 ], "filter": [ - 6330 + 6326 ], "predicate": [ - 1842 + 1843 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 6328 + 6324 ], "count": [ - 40, + 41, { "columns": [ - 6337, + 6333, "[v_tournament_player_stats_select_column!]" ], "distinct": [ - 5 + 6 ] } ], "max": [ - 6332 + 6328 ], "min": [ - 6334 + 6330 ], "stddev": [ - 6346 + 6342 ], "stddev_pop": [ - 6348 + 6344 ], "stddev_samp": [ - 6350 + 6346 ], "sum": [ - 6354 + 6350 ], "var_pop": [ - 6356 + 6352 ], "var_samp": [ - 6358 + 6354 ], "variance": [ - 6360 + 6356 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 6329 + 6325 ], "count": [ - 3377 + 3373 ], "max": [ - 6333 + 6329 ], "min": [ - 6335 + 6331 ], "stddev": [ - 6347 + 6343 ], "stddev_pop": [ - 6349 + 6345 ], "stddev_samp": [ - 6351 + 6347 ], "sum": [ - 6355 + 6351 ], "var_pop": [ - 6357 + 6353 ], "var_samp": [ - 6359 + 6355 ], "variance": [ - 6361 + 6357 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 6331 + 6327 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_bool_exp": { "_and": [ - 6330 + 6326 ], "_not": [ - 6330 + 6326 ], "_or": [ - 6330 + 6326 ], "assists": [ - 41 + 42 ], "deaths": [ - 41 + 42 ], "headshot_percentage": [ - 1842 + 1843 ], "headshots": [ - 41 + 42 ], "kdr": [ - 1842 + 1843 ], "kills": [ - 41 + 42 ], "matches_played": [ - 41 + 42 ], "player": [ - 4339 + 4335 ], "player_steam_id": [ - 270 + 271 ], "tournament": [ - 5415 + 5411 ], "tournament_id": [ - 5460 + 5456 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_insert_input": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player": [ - 4346 + 4342 ], "player_steam_id": [ - 268 + 269 ], "tournament": [ - 5424 + 5420 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_max_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_max_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_min_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_min_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player": [ - 4348 + 4344 ], "player_steam_id": [ - 3377 + 3373 ], "tournament": [ - 5426 + 5422 ], "tournament_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_select_column": {}, @@ -144877,4336 +144840,4336 @@ 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": [ - 83 + 84 ] }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 6353 + 6349 ], "ordering": [ - 351 + 352 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_stream_cursor_value_input": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "tournament_id": [ - 5458 + 5454 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_sum_fields": { "assists": [ - 40 + 41 ], "deaths": [ - 40 + 41 ], "headshot_percentage": [ - 1841 + 1842 ], "headshots": [ - 40 + 41 ], "kdr": [ - 1841 + 1842 ], "kills": [ - 40 + 41 ], "matches_played": [ - 40 + 41 ], "player_steam_id": [ - 268 + 269 ], "__typename": [ - 83 + 84 ] }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 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": [ - 83 + 84 ] }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 3377 + 3373 ], "deaths": [ - 3377 + 3373 ], "headshot_percentage": [ - 3377 + 3373 ], "headshots": [ - 3377 + 3373 ], "kdr": [ - 3377 + 3373 ], "kills": [ - 3377 + 3373 ], "matches_played": [ - 3377 + 3373 ], "player_steam_id": [ - 3377 + 3373 ], "__typename": [ - 83 + 84 ] }, "Query": { "_map_pool": [ - 111, + 112, { "distinct_on": [ - 123, + 124, "[_map_pool_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 121, + 122, "[_map_pool_order_by!]" ], "where": [ - 114 + 115 ] } ], "_map_pool_aggregate": [ - 112, + 113, { "distinct_on": [ - 123, + 124, "[_map_pool_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 121, + 122, "[_map_pool_order_by!]" ], "where": [ - 114 + 115 ] } ], "_map_pool_by_pk": [ - 111, + 112, { "map_id": [ - 5458, + 5454, "uuid!" ], "map_pool_id": [ - 5458, + 5454, "uuid!" ] } ], "abandoned_matches": [ - 130, + 131, { "distinct_on": [ - 151, + 152, "[abandoned_matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 149, + 150, "[abandoned_matches_order_by!]" ], "where": [ - 139 + 140 ] } ], "abandoned_matches_aggregate": [ - 131, + 132, { "distinct_on": [ - 151, + 152, "[abandoned_matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 149, + 150, "[abandoned_matches_order_by!]" ], "where": [ - 139 + 140 ] } ], "abandoned_matches_by_pk": [ - 130, + 131, { "id": [ - 5458, + 5454, "uuid!" ] } ], "api_keys": [ - 171, + 172, { "distinct_on": [ - 185, + 186, "[api_keys_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 183, + 184, "[api_keys_order_by!]" ], "where": [ - 175 + 176 ] } ], "api_keys_aggregate": [ - 172, + 173, { "distinct_on": [ - 185, + 186, "[api_keys_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 183, + 184, "[api_keys_order_by!]" ], "where": [ - 175 + 176 ] } ], "api_keys_by_pk": [ - 171, + 172, { "id": [ - 5458, + 5454, "uuid!" ] } ], "award_recipients": [ - 199, + 200, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "award_recipients_aggregate": [ - 200, + 201, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "award_recipients_by_pk": [ - 199, + 200, { "id": [ - 5458, + 5454, "uuid!" ] } ], "awards": [ - 240, + 241, { "distinct_on": [ - 255, + 256, "[awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 253, + 254, "[awards_order_by!]" ], "where": [ - 244 + 245 ] } ], "awards_aggregate": [ - 241, + 242, { "distinct_on": [ - 255, + 256, "[awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 253, + 254, "[awards_order_by!]" ], "where": [ - 244 + 245 ] } ], "awards_by_pk": [ - 240, + 241, { "id": [ - 5458, + 5454, "uuid!" ] } ], "chat_read_state": [ - 273, + 274, { "distinct_on": [ - 287, + 288, "[chat_read_state_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 285, + 286, "[chat_read_state_order_by!]" ], "where": [ - 277 + 278 ] } ], "chat_read_state_aggregate": [ - 274, + 275, { "distinct_on": [ - 287, + 288, "[chat_read_state_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 285, + 286, "[chat_read_state_order_by!]" ], "where": [ - 277 + 278 ] } ], "chat_read_state_by_pk": [ - 273, + 274, { "steam_id": [ - 268, + 269, "bigint!" ], "thread": [ - 83, + 84, "String!" ] } ], "clip_render_jobs": [ - 300, + 301, { "distinct_on": [ - 328, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 325, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 312 + 313 ] } ], "clip_render_jobs_aggregate": [ - 301, + 302, { "distinct_on": [ - 328, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 325, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 312 + 313 ] } ], "clip_render_jobs_by_pk": [ - 300, + 301, { "id": [ - 5458, + 5454, "uuid!" ] } ], "custom_pages": [ - 352, + 353, { "distinct_on": [ - 371, + 372, "[custom_pages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 368, + 369, "[custom_pages_order_by!]" ], "where": [ - 357 + 358 ] } ], "custom_pages_aggregate": [ - 353, + 354, { "distinct_on": [ - 371, + 372, "[custom_pages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 368, + 369, "[custom_pages_order_by!]" ], "where": [ - 357 + 358 ] } ], "custom_pages_by_pk": [ - 352, + 353, { "id": [ - 5458, + 5454, "uuid!" ] } ], "dbStats": [ - 19 + 20 ], "db_backups": [ - 384, + 385, { "distinct_on": [ - 398, + 399, "[db_backups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 396, + 397, "[db_backups_order_by!]" ], "where": [ - 388 + 389 ] } ], "db_backups_aggregate": [ - 385, + 386, { "distinct_on": [ - 398, + 399, "[db_backups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 396, + 397, "[db_backups_order_by!]" ], "where": [ - 388 + 389 ] } ], "db_backups_by_pk": [ - 384, + 385, { "id": [ - 5458, + 5454, "uuid!" ] } ], "direct_conversations": [ - 411, + 412, { "distinct_on": [ - 425, + 426, "[direct_conversations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 423, + 424, "[direct_conversations_order_by!]" ], "where": [ - 415 + 416 ] } ], "direct_conversations_aggregate": [ - 412, + 413, { "distinct_on": [ - 425, + 426, "[direct_conversations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 423, + 424, "[direct_conversations_order_by!]" ], "where": [ - 415 + 416 ] } ], "direct_conversations_by_pk": [ - 411, + 412, { "room_id": [ - 83, + 84, "String!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "direct_messages": [ - 438, + 439, { "distinct_on": [ - 452, + 453, "[direct_messages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 450, + 451, "[direct_messages_order_by!]" ], "where": [ - 442 + 443 ] } ], "direct_messages_aggregate": [ - 439, + 440, { "distinct_on": [ - 452, + 453, "[direct_messages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 450, + 451, "[direct_messages_order_by!]" ], "where": [ - 442 + 443 ] } ], "direct_messages_by_pk": [ - 438, + 439, { "id": [ - 5458, + 5454, "uuid!" ] } ], "draft_game_picks": [ - 465, + 466, { "distinct_on": [ - 488, + 489, "[draft_game_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 486, + 487, "[draft_game_picks_order_by!]" ], "where": [ - 476 + 477 ] } ], "draft_game_picks_aggregate": [ - 466, + 467, { "distinct_on": [ - 488, + 489, "[draft_game_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 486, + 487, "[draft_game_picks_order_by!]" ], "where": [ - 476 + 477 ] } ], "draft_game_picks_by_pk": [ - 465, + 466, { "id": [ - 5458, + 5454, "uuid!" ] } ], "draft_game_players": [ - 510, + 511, { "distinct_on": [ - 533, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 531, + 532, "[draft_game_players_order_by!]" ], "where": [ - 521 + 522 ] } ], "draft_game_players_aggregate": [ - 511, + 512, { "distinct_on": [ - 533, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 531, + 532, "[draft_game_players_order_by!]" ], "where": [ - 521 + 522 ] } ], "draft_game_players_by_pk": [ - 510, + 511, { "draft_game_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "draft_games": [ - 555, + 556, { "distinct_on": [ - 579, + 580, "[draft_games_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 577, + 578, "[draft_games_order_by!]" ], "where": [ - 566 + 567 ] } ], "draft_games_aggregate": [ - 556, + 557, { "distinct_on": [ - 579, + 580, "[draft_games_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 577, + 578, "[draft_games_order_by!]" ], "where": [ - 566 + 567 ] } ], "draft_games_by_pk": [ - 555, + 556, { "id": [ - 5458, + 5454, "uuid!" ] } ], "e_award_sources": [ - 601, + 602, { "distinct_on": [ - 615, + 616, "[e_award_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 613, + 614, "[e_award_sources_order_by!]" ], "where": [ - 604 + 605 ] } ], "e_award_sources_aggregate": [ - 602, + 603, { "distinct_on": [ - 615, + 616, "[e_award_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 613, + 614, "[e_award_sources_order_by!]" ], "where": [ - 604 + 605 ] } ], "e_award_sources_by_pk": [ - 601, + 602, { "value": [ - 83, + 84, "String!" ] } ], "e_award_tiers": [ - 621, + 622, { "distinct_on": [ - 635, + 636, "[e_award_tiers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 633, + 634, "[e_award_tiers_order_by!]" ], "where": [ - 624 + 625 ] } ], "e_award_tiers_aggregate": [ - 622, + 623, { "distinct_on": [ - 635, + 636, "[e_award_tiers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 633, + 634, "[e_award_tiers_order_by!]" ], "where": [ - 624 + 625 ] } ], "e_award_tiers_by_pk": [ - 621, + 622, { "value": [ - 83, + 84, "String!" ] } ], "e_check_in_settings": [ - 641, + 642, { "distinct_on": [ - 655, + 656, "[e_check_in_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 653, + 654, "[e_check_in_settings_order_by!]" ], "where": [ - 644 + 645 ] } ], "e_check_in_settings_aggregate": [ - 642, + 643, { "distinct_on": [ - 655, + 656, "[e_check_in_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 653, + 654, "[e_check_in_settings_order_by!]" ], "where": [ - 644 + 645 ] } ], "e_check_in_settings_by_pk": [ - 641, + 642, { "value": [ - 83, + 84, "String!" ] } ], "e_draft_game_captain_selection": [ - 661, + 662, { "distinct_on": [ - 676, + 677, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 674, + 675, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 664 + 665 ] } ], "e_draft_game_captain_selection_aggregate": [ - 662, + 663, { "distinct_on": [ - 676, + 677, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 674, + 675, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 664 + 665 ] } ], "e_draft_game_captain_selection_by_pk": [ - 661, + 662, { "value": [ - 83, + 84, "String!" ] } ], "e_draft_game_draft_order": [ - 682, + 683, { "distinct_on": [ - 697, + 698, "[e_draft_game_draft_order_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 695, + 696, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 685 + 686 ] } ], "e_draft_game_draft_order_aggregate": [ - 683, + 684, { "distinct_on": [ - 697, + 698, "[e_draft_game_draft_order_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 695, + 696, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 685 + 686 ] } ], "e_draft_game_draft_order_by_pk": [ - 682, + 683, { "value": [ - 83, + 84, "String!" ] } ], "e_draft_game_mode": [ - 703, + 704, { "distinct_on": [ - 718, + 719, "[e_draft_game_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 716, + 717, "[e_draft_game_mode_order_by!]" ], "where": [ - 706 + 707 ] } ], "e_draft_game_mode_aggregate": [ - 704, + 705, { "distinct_on": [ - 718, + 719, "[e_draft_game_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 716, + 717, "[e_draft_game_mode_order_by!]" ], "where": [ - 706 + 707 ] } ], "e_draft_game_mode_by_pk": [ - 703, + 704, { "value": [ - 83, + 84, "String!" ] } ], "e_draft_game_player_status": [ - 724, + 725, { "distinct_on": [ - 739, + 740, "[e_draft_game_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 737, + 738, "[e_draft_game_player_status_order_by!]" ], "where": [ - 727 + 728 ] } ], "e_draft_game_player_status_aggregate": [ - 725, + 726, { "distinct_on": [ - 739, + 740, "[e_draft_game_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 737, + 738, "[e_draft_game_player_status_order_by!]" ], "where": [ - 727 + 728 ] } ], "e_draft_game_player_status_by_pk": [ - 724, + 725, { "value": [ - 83, + 84, "String!" ] } ], "e_draft_game_status": [ - 745, + 746, { "distinct_on": [ - 760, + 761, "[e_draft_game_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 758, + 759, "[e_draft_game_status_order_by!]" ], "where": [ - 748 + 749 ] } ], "e_draft_game_status_aggregate": [ - 746, + 747, { "distinct_on": [ - 760, + 761, "[e_draft_game_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 758, + 759, "[e_draft_game_status_order_by!]" ], "where": [ - 748 + 749 ] } ], "e_draft_game_status_by_pk": [ - 745, + 746, { "value": [ - 83, + 84, "String!" ] } ], "e_event_media_access": [ - 766, + 767, { "distinct_on": [ - 780, + 781, "[e_event_media_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 778, + 779, "[e_event_media_access_order_by!]" ], "where": [ - 769 + 770 ] } ], "e_event_media_access_aggregate": [ - 767, + 768, { "distinct_on": [ - 780, + 781, "[e_event_media_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 778, + 779, "[e_event_media_access_order_by!]" ], "where": [ - 769 + 770 ] } ], "e_event_media_access_by_pk": [ - 766, + 767, { "value": [ - 83, + 84, "String!" ] } ], "e_event_visibility": [ - 786, + 787, { "distinct_on": [ - 800, + 801, "[e_event_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 798, + 799, "[e_event_visibility_order_by!]" ], "where": [ - 789 + 790 ] } ], "e_event_visibility_aggregate": [ - 787, + 788, { "distinct_on": [ - 800, + 801, "[e_event_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 798, + 799, "[e_event_visibility_order_by!]" ], "where": [ - 789 + 790 ] } ], "e_event_visibility_by_pk": [ - 786, + 787, { "value": [ - 83, + 84, "String!" ] } ], "e_friend_status": [ - 806, + 807, { "distinct_on": [ - 821, + 822, "[e_friend_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 819, + 820, "[e_friend_status_order_by!]" ], "where": [ - 809 + 810 ] } ], "e_friend_status_aggregate": [ - 807, + 808, { "distinct_on": [ - 821, + 822, "[e_friend_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 819, + 820, "[e_friend_status_order_by!]" ], "where": [ - 809 + 810 ] } ], "e_friend_status_by_pk": [ - 806, + 807, { "value": [ - 83, + 84, "String!" ] } ], "e_game_cfg_types": [ - 827, + 828, { "distinct_on": [ - 841, + 842, "[e_game_cfg_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 839, + 840, "[e_game_cfg_types_order_by!]" ], "where": [ - 830 + 831 ] } ], "e_game_cfg_types_aggregate": [ - 828, + 829, { "distinct_on": [ - 841, + 842, "[e_game_cfg_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 839, + 840, "[e_game_cfg_types_order_by!]" ], "where": [ - 830 + 831 ] } ], "e_game_cfg_types_by_pk": [ - 827, + 828, { "value": [ - 83, + 84, "String!" ] } ], "e_game_plugin_channels": [ - 847, + 848, { "distinct_on": [ - 861, + 862, "[e_game_plugin_channels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 859, + 860, "[e_game_plugin_channels_order_by!]" ], "where": [ - 850 + 851 ] } ], "e_game_plugin_channels_aggregate": [ - 848, + 849, { "distinct_on": [ - 861, + 862, "[e_game_plugin_channels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 859, + 860, "[e_game_plugin_channels_order_by!]" ], "where": [ - 850 + 851 ] } ], "e_game_plugin_channels_by_pk": [ - 847, + 848, { "value": [ - 83, + 84, "String!" ] } ], "e_game_plugin_install_statuses": [ - 867, + 868, { "distinct_on": [ - 881, + 882, "[e_game_plugin_install_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 879, + 880, "[e_game_plugin_install_statuses_order_by!]" ], "where": [ - 870 + 871 ] } ], "e_game_plugin_install_statuses_aggregate": [ - 868, + 869, { "distinct_on": [ - 881, + 882, "[e_game_plugin_install_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 879, + 880, "[e_game_plugin_install_statuses_order_by!]" ], "where": [ - 870 + 871 ] } ], "e_game_plugin_install_statuses_by_pk": [ - 867, + 868, { "value": [ - 83, + 84, "String!" ] } ], "e_game_plugin_kinds": [ - 887, + 888, { "distinct_on": [ - 901, + 902, "[e_game_plugin_kinds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 899, + 900, "[e_game_plugin_kinds_order_by!]" ], "where": [ - 890 + 891 ] } ], "e_game_plugin_kinds_aggregate": [ - 888, + 889, { "distinct_on": [ - 901, + 902, "[e_game_plugin_kinds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 899, + 900, "[e_game_plugin_kinds_order_by!]" ], "where": [ - 890 + 891 ] } ], "e_game_plugin_kinds_by_pk": [ - 887, + 888, { "value": [ - 83, + 84, "String!" ] } ], "e_game_server_node_statuses": [ - 907, + 908, { "distinct_on": [ - 922, + 923, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 920, + 921, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 910 + 911 ] } ], "e_game_server_node_statuses_aggregate": [ - 908, + 909, { "distinct_on": [ - 922, + 923, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 920, + 921, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 910 + 911 ] } ], "e_game_server_node_statuses_by_pk": [ - 907, + 908, { "value": [ - 83, + 84, "String!" ] } ], "e_league_movement_types": [ - 928, + 929, { "distinct_on": [ - 943, + 944, "[e_league_movement_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 941, + 942, "[e_league_movement_types_order_by!]" ], "where": [ - 931 + 932 ] } ], "e_league_movement_types_aggregate": [ - 929, + 930, { "distinct_on": [ - 943, + 944, "[e_league_movement_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 941, + 942, "[e_league_movement_types_order_by!]" ], "where": [ - 931 + 932 ] } ], "e_league_movement_types_by_pk": [ - 928, + 929, { "value": [ - 83, + 84, "String!" ] } ], "e_league_proposal_statuses": [ - 949, + 950, { "distinct_on": [ - 964, + 965, "[e_league_proposal_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 962, + 963, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 952 + 953 ] } ], "e_league_proposal_statuses_aggregate": [ - 950, + 951, { "distinct_on": [ - 964, + 965, "[e_league_proposal_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 962, + 963, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 952 + 953 ] } ], "e_league_proposal_statuses_by_pk": [ - 949, + 950, { "value": [ - 83, + 84, "String!" ] } ], "e_league_registration_statuses": [ - 970, + 971, { "distinct_on": [ - 985, + 986, "[e_league_registration_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 983, + 984, "[e_league_registration_statuses_order_by!]" ], "where": [ - 973 + 974 ] } ], "e_league_registration_statuses_aggregate": [ - 971, + 972, { "distinct_on": [ - 985, + 986, "[e_league_registration_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 983, + 984, "[e_league_registration_statuses_order_by!]" ], "where": [ - 973 + 974 ] } ], "e_league_registration_statuses_by_pk": [ - 970, + 971, { "value": [ - 83, + 84, "String!" ] } ], "e_league_season_statuses": [ - 991, + 992, { "distinct_on": [ - 1006, + 1007, "[e_league_season_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1004, + 1005, "[e_league_season_statuses_order_by!]" ], "where": [ - 994 + 995 ] } ], "e_league_season_statuses_aggregate": [ - 992, + 993, { "distinct_on": [ - 1006, + 1007, "[e_league_season_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1004, + 1005, "[e_league_season_statuses_order_by!]" ], "where": [ - 994 + 995 ] } ], "e_league_season_statuses_by_pk": [ - 991, + 992, { "value": [ - 83, + 84, "String!" ] } ], "e_lobby_access": [ - 1012, + 1013, { "distinct_on": [ - 1027, + 1028, "[e_lobby_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1025, + 1026, "[e_lobby_access_order_by!]" ], "where": [ - 1015 + 1016 ] } ], "e_lobby_access_aggregate": [ - 1013, + 1014, { "distinct_on": [ - 1027, + 1028, "[e_lobby_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1025, + 1026, "[e_lobby_access_order_by!]" ], "where": [ - 1015 + 1016 ] } ], "e_lobby_access_by_pk": [ - 1012, + 1013, { "value": [ - 83, + 84, "String!" ] } ], "e_lobby_player_status": [ - 1033, + 1034, { "distinct_on": [ - 1047, + 1048, "[e_lobby_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1045, + 1046, "[e_lobby_player_status_order_by!]" ], "where": [ - 1036 + 1037 ] } ], "e_lobby_player_status_aggregate": [ - 1034, + 1035, { "distinct_on": [ - 1047, + 1048, "[e_lobby_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1045, + 1046, "[e_lobby_player_status_order_by!]" ], "where": [ - 1036 + 1037 ] } ], "e_lobby_player_status_by_pk": [ - 1033, + 1034, { "value": [ - 83, + 84, "String!" ] } ], "e_map_pool_types": [ - 1053, + 1054, { "distinct_on": [ - 1068, + 1069, "[e_map_pool_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1066, + 1067, "[e_map_pool_types_order_by!]" ], "where": [ - 1056 + 1057 ] } ], "e_map_pool_types_aggregate": [ - 1054, + 1055, { "distinct_on": [ - 1068, + 1069, "[e_map_pool_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1066, + 1067, "[e_map_pool_types_order_by!]" ], "where": [ - 1056 + 1057 ] } ], "e_map_pool_types_by_pk": [ - 1053, + 1054, { "value": [ - 83, + 84, "String!" ] } ], "e_match_clip_visibility": [ - 1074, + 1075, { "distinct_on": [ - 1088, + 1089, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1086, + 1087, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1077 + 1078 ] } ], "e_match_clip_visibility_aggregate": [ - 1075, + 1076, { "distinct_on": [ - 1088, + 1089, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1086, + 1087, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1077 + 1078 ] } ], "e_match_clip_visibility_by_pk": [ - 1074, + 1075, { "value": [ - 83, + 84, "String!" ] } ], "e_match_map_status": [ - 1094, + 1095, { "distinct_on": [ - 1109, + 1110, "[e_match_map_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1107, + 1108, "[e_match_map_status_order_by!]" ], "where": [ - 1097 + 1098 ] } ], "e_match_map_status_aggregate": [ - 1095, + 1096, { "distinct_on": [ - 1109, + 1110, "[e_match_map_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1107, + 1108, "[e_match_map_status_order_by!]" ], "where": [ - 1097 + 1098 ] } ], "e_match_map_status_by_pk": [ - 1094, + 1095, { "value": [ - 83, + 84, "String!" ] } ], "e_match_mode": [ - 1115, + 1116, { "distinct_on": [ - 1129, + 1130, "[e_match_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1127, + 1128, "[e_match_mode_order_by!]" ], "where": [ - 1118 + 1119 ] } ], "e_match_mode_aggregate": [ - 1116, + 1117, { "distinct_on": [ - 1129, + 1130, "[e_match_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1127, + 1128, "[e_match_mode_order_by!]" ], "where": [ - 1118 + 1119 ] } ], "e_match_mode_by_pk": [ - 1115, + 1116, { "value": [ - 83, + 84, "String!" ] } ], "e_match_party_sources": [ - 1135, + 1136, { "distinct_on": [ - 1149, + 1150, "[e_match_party_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1147, + 1148, "[e_match_party_sources_order_by!]" ], "where": [ - 1138 + 1139 ] } ], "e_match_party_sources_aggregate": [ - 1136, + 1137, { "distinct_on": [ - 1149, + 1150, "[e_match_party_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1147, + 1148, "[e_match_party_sources_order_by!]" ], "where": [ - 1138 + 1139 ] } ], "e_match_party_sources_by_pk": [ - 1135, + 1136, { "value": [ - 83, + 84, "String!" ] } ], "e_match_status": [ - 1155, + 1156, { "distinct_on": [ - 1170, + 1171, "[e_match_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1168, + 1169, "[e_match_status_order_by!]" ], "where": [ - 1158 + 1159 ] } ], "e_match_status_aggregate": [ - 1156, + 1157, { "distinct_on": [ - 1170, + 1171, "[e_match_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1168, + 1169, "[e_match_status_order_by!]" ], "where": [ - 1158 + 1159 ] } ], "e_match_status_by_pk": [ - 1155, + 1156, { "value": [ - 83, + 84, "String!" ] } ], "e_match_types": [ - 1176, + 1177, { "distinct_on": [ - 1191, + 1192, "[e_match_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1189, + 1190, "[e_match_types_order_by!]" ], "where": [ - 1179 + 1180 ] } ], "e_match_types_aggregate": [ - 1177, + 1178, { "distinct_on": [ - 1191, + 1192, "[e_match_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1189, + 1190, "[e_match_types_order_by!]" ], "where": [ - 1179 + 1180 ] } ], "e_match_types_by_pk": [ - 1176, + 1177, { "value": [ - 83, + 84, "String!" ] } ], "e_notification_types": [ - 1197, + 1198, { "distinct_on": [ - 1211, + 1212, "[e_notification_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1209, + 1210, "[e_notification_types_order_by!]" ], "where": [ - 1200 + 1201 ] } ], "e_notification_types_aggregate": [ - 1198, + 1199, { "distinct_on": [ - 1211, + 1212, "[e_notification_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1209, + 1210, "[e_notification_types_order_by!]" ], "where": [ - 1200 + 1201 ] } ], "e_notification_types_by_pk": [ - 1197, + 1198, { "value": [ - 83, + 84, "String!" ] } ], "e_objective_types": [ - 1217, + 1218, { "distinct_on": [ - 1231, + 1232, "[e_objective_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1229, + 1230, "[e_objective_types_order_by!]" ], "where": [ - 1220 + 1221 ] } ], "e_objective_types_aggregate": [ - 1218, + 1219, { "distinct_on": [ - 1231, + 1232, "[e_objective_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1229, + 1230, "[e_objective_types_order_by!]" ], "where": [ - 1220 + 1221 ] } ], "e_objective_types_by_pk": [ - 1217, + 1218, { "value": [ - 83, + 84, "String!" ] } ], "e_player_roles": [ - 1237, + 1238, { "distinct_on": [ - 1251, + 1252, "[e_player_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1249, + 1250, "[e_player_roles_order_by!]" ], "where": [ - 1240 + 1241 ] } ], "e_player_roles_aggregate": [ - 1238, + 1239, { "distinct_on": [ - 1251, + 1252, "[e_player_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1249, + 1250, "[e_player_roles_order_by!]" ], "where": [ - 1240 + 1241 ] } ], "e_player_roles_by_pk": [ - 1237, + 1238, { "value": [ - 83, + 84, "String!" ] } ], "e_plugin_runtimes": [ - 1257, + 1258, { "distinct_on": [ - 1271, + 1272, "[e_plugin_runtimes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1269, + 1270, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1260 + 1261 ] } ], "e_plugin_runtimes_aggregate": [ - 1258, + 1259, { "distinct_on": [ - 1271, + 1272, "[e_plugin_runtimes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1269, + 1270, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1260 + 1261 ] } ], "e_plugin_runtimes_by_pk": [ - 1257, + 1258, { "value": [ - 83, + 84, "String!" ] } ], "e_ready_settings": [ - 1277, + 1278, { "distinct_on": [ - 1291, + 1292, "[e_ready_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1289, + 1290, "[e_ready_settings_order_by!]" ], "where": [ - 1280 + 1281 ] } ], "e_ready_settings_aggregate": [ - 1278, + 1279, { "distinct_on": [ - 1291, + 1292, "[e_ready_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1289, + 1290, "[e_ready_settings_order_by!]" ], "where": [ - 1280 + 1281 ] } ], "e_ready_settings_by_pk": [ - 1277, + 1278, { "value": [ - 83, + 84, "String!" ] } ], "e_sanction_types": [ - 1297, + 1298, { "distinct_on": [ - 1312, + 1313, "[e_sanction_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1310, + 1311, "[e_sanction_types_order_by!]" ], "where": [ - 1300 + 1301 ] } ], "e_sanction_types_aggregate": [ - 1298, + 1299, { "distinct_on": [ - 1312, + 1313, "[e_sanction_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1310, + 1311, "[e_sanction_types_order_by!]" ], "where": [ - 1300 + 1301 ] } ], "e_sanction_types_by_pk": [ - 1297, + 1298, { "value": [ - 83, + 84, "String!" ] } ], "e_scrim_request_statuses": [ - 1318, + 1319, { "distinct_on": [ - 1332, + 1333, "[e_scrim_request_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1330, + 1331, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1321 + 1322 ] } ], "e_scrim_request_statuses_aggregate": [ - 1319, + 1320, { "distinct_on": [ - 1332, + 1333, "[e_scrim_request_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1330, + 1331, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1321 + 1322 ] } ], "e_scrim_request_statuses_by_pk": [ - 1318, + 1319, { "value": [ - 83, + 84, "String!" ] } ], "e_server_types": [ - 1338, + 1339, { "distinct_on": [ - 1352, + 1353, "[e_server_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1350, + 1351, "[e_server_types_order_by!]" ], "where": [ - 1341 + 1342 ] } ], "e_server_types_aggregate": [ - 1339, + 1340, { "distinct_on": [ - 1352, + 1353, "[e_server_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1350, + 1351, "[e_server_types_order_by!]" ], "where": [ - 1341 + 1342 ] } ], "e_server_types_by_pk": [ - 1338, + 1339, { "value": [ - 83, + 84, "String!" ] } ], "e_sides": [ - 1358, + 1359, { "distinct_on": [ - 1372, + 1373, "[e_sides_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1370, + 1371, "[e_sides_order_by!]" ], "where": [ - 1361 + 1362 ] } ], "e_sides_aggregate": [ - 1359, + 1360, { "distinct_on": [ - 1372, + 1373, "[e_sides_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1370, + 1371, "[e_sides_order_by!]" ], "where": [ - 1361 + 1362 ] } ], "e_sides_by_pk": [ - 1358, + 1359, { "value": [ - 83, + 84, "String!" ] } ], "e_system_alert_types": [ - 1378, + 1379, { "distinct_on": [ - 1392, + 1393, "[e_system_alert_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1390, + 1391, "[e_system_alert_types_order_by!]" ], "where": [ - 1381 + 1382 ] } ], "e_system_alert_types_aggregate": [ - 1379, + 1380, { "distinct_on": [ - 1392, + 1393, "[e_system_alert_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1390, + 1391, "[e_system_alert_types_order_by!]" ], "where": [ - 1381 + 1382 ] } ], "e_system_alert_types_by_pk": [ - 1378, + 1379, { "value": [ - 83, + 84, "String!" ] } ], "e_team_roles": [ - 1398, + 1399, { "distinct_on": [ - 1413, + 1414, "[e_team_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1411, + 1412, "[e_team_roles_order_by!]" ], "where": [ - 1401 + 1402 ] } ], "e_team_roles_aggregate": [ - 1399, + 1400, { "distinct_on": [ - 1413, + 1414, "[e_team_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1411, + 1412, "[e_team_roles_order_by!]" ], "where": [ - 1401 + 1402 ] } ], "e_team_roles_by_pk": [ - 1398, + 1399, { "value": [ - 83, + 84, "String!" ] } ], "e_team_roster_statuses": [ - 1419, + 1420, { "distinct_on": [ - 1433, + 1434, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1431, + 1432, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1422 + 1423 ] } ], "e_team_roster_statuses_aggregate": [ - 1420, + 1421, { "distinct_on": [ - 1433, + 1434, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1431, + 1432, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1422 + 1423 ] } ], "e_team_roster_statuses_by_pk": [ - 1419, + 1420, { "value": [ - 83, + 84, "String!" ] } ], "e_timeout_settings": [ - 1439, + 1440, { "distinct_on": [ - 1453, + 1454, "[e_timeout_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1451, + 1452, "[e_timeout_settings_order_by!]" ], "where": [ - 1442 + 1443 ] } ], "e_timeout_settings_aggregate": [ - 1440, + 1441, { "distinct_on": [ - 1453, + 1454, "[e_timeout_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1451, + 1452, "[e_timeout_settings_order_by!]" ], "where": [ - 1442 + 1443 ] } ], "e_timeout_settings_by_pk": [ - 1439, + 1440, { "value": [ - 83, + 84, "String!" ] } ], "e_tournament_categories": [ - 1459, + 1460, { "distinct_on": [ - 1474, + 1475, "[e_tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1472, + 1473, "[e_tournament_categories_order_by!]" ], "where": [ - 1462 + 1463 ] } ], "e_tournament_categories_aggregate": [ - 1460, + 1461, { "distinct_on": [ - 1474, + 1475, "[e_tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1472, + 1473, "[e_tournament_categories_order_by!]" ], "where": [ - 1462 + 1463 ] } ], "e_tournament_categories_by_pk": [ - 1459, + 1460, { "value": [ - 83, + 84, "String!" ] } ], "e_tournament_stage_types": [ - 1480, + 1481, { "distinct_on": [ - 1495, + 1496, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1493, + 1494, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1483 + 1484 ] } ], "e_tournament_stage_types_aggregate": [ - 1481, + 1482, { "distinct_on": [ - 1495, + 1496, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1493, + 1494, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1483 + 1484 ] } ], "e_tournament_stage_types_by_pk": [ - 1480, + 1481, { "value": [ - 83, + 84, "String!" ] } ], "e_tournament_status": [ - 1501, + 1502, { "distinct_on": [ - 1516, + 1517, "[e_tournament_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1514, + 1515, "[e_tournament_status_order_by!]" ], "where": [ - 1504 + 1505 ] } ], "e_tournament_status_aggregate": [ - 1502, + 1503, { "distinct_on": [ - 1516, + 1517, "[e_tournament_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1514, + 1515, "[e_tournament_status_order_by!]" ], "where": [ - 1504 + 1505 ] } ], "e_tournament_status_by_pk": [ - 1501, + 1502, { "value": [ - 83, + 84, "String!" ] } ], "e_utility_types": [ - 1522, + 1523, { "distinct_on": [ - 1536, + 1537, "[e_utility_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1534, + 1535, "[e_utility_types_order_by!]" ], "where": [ - 1525 + 1526 ] } ], "e_utility_types_aggregate": [ - 1523, + 1524, { "distinct_on": [ - 1536, + 1537, "[e_utility_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1534, + 1535, "[e_utility_types_order_by!]" ], "where": [ - 1525 + 1526 ] } ], "e_utility_types_by_pk": [ - 1522, + 1523, { "value": [ - 83, + 84, "String!" ] } ], "e_veto_pick_types": [ - 1542, + 1543, { "distinct_on": [ - 1556, + 1557, "[e_veto_pick_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1554, + 1555, "[e_veto_pick_types_order_by!]" ], "where": [ - 1545 + 1546 ] } ], "e_veto_pick_types_aggregate": [ - 1543, + 1544, { "distinct_on": [ - 1556, + 1557, "[e_veto_pick_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1554, + 1555, "[e_veto_pick_types_order_by!]" ], "where": [ - 1545 + 1546 ] } ], "e_veto_pick_types_by_pk": [ - 1542, + 1543, { "value": [ - 83, + 84, "String!" ] } ], "e_winning_reasons": [ - 1562, + 1563, { "distinct_on": [ - 1576, + 1577, "[e_winning_reasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1574, + 1575, "[e_winning_reasons_order_by!]" ], "where": [ - 1565 + 1566 ] } ], "e_winning_reasons_aggregate": [ - 1563, + 1564, { "distinct_on": [ - 1576, + 1577, "[e_winning_reasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1574, + 1575, "[e_winning_reasons_order_by!]" ], "where": [ - 1565 + 1566 ] } ], "e_winning_reasons_by_pk": [ - 1562, + 1563, { "value": [ - 83, + 84, "String!" ] } ], "event_match_links": [ - 1582, + 1583, { "distinct_on": [ - 1594, + 1595, "[event_match_links_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1592, + 1593, "[event_match_links_order_by!]" ], "where": [ - 1585 + 1586 ] } ], "event_match_links_aggregate": [ - 1583, + 1584, { "distinct_on": [ - 1594, + 1595, "[event_match_links_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1592, + 1593, "[event_match_links_order_by!]" ], "where": [ - 1585 + 1586 ] } ], "event_match_links_by_pk": [ - 1582, + 1583, { "event_id": [ - 5458, + 5454, "uuid!" ], "match_id": [ - 5458, + 5454, "uuid!" ] } ], "event_media": [ - 1600, + 1601, { "distinct_on": [ - 1663, + 1664, "[event_media_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1620, + 1621, "[event_media_order_by!]" ], "where": [ - 1609 + 1610 ] } ], "event_media_aggregate": [ - 1601, + 1602, { "distinct_on": [ - 1663, + 1664, "[event_media_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1620, + 1621, "[event_media_order_by!]" ], "where": [ - 1609 + 1610 ] } ], "event_media_by_pk": [ - 1600, + 1601, { "id": [ - 5458, + 5454, "uuid!" ] } ], "event_media_players": [ - 1622, + 1623, { "distinct_on": [ - 1643, + 1644, "[event_media_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1641, + 1642, "[event_media_players_order_by!]" ], "where": [ - 1631 + 1632 ] } ], "event_media_players_aggregate": [ - 1623, + 1624, { "distinct_on": [ - 1643, + 1644, "[event_media_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1641, + 1642, "[event_media_players_order_by!]" ], "where": [ - 1631 + 1632 ] } ], "event_media_players_by_pk": [ - 1622, + 1623, { "media_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "event_organizers": [ - 1683, + 1684, { "distinct_on": [ - 1704, + 1705, "[event_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1702, + 1703, "[event_organizers_order_by!]" ], "where": [ - 1692 + 1693 ] } ], "event_organizers_aggregate": [ - 1684, + 1685, { "distinct_on": [ - 1704, + 1705, "[event_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1702, + 1703, "[event_organizers_order_by!]" ], "where": [ - 1692 + 1693 ] } ], "event_organizers_by_pk": [ - 1683, + 1684, { "event_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "event_players": [ - 1724, + 1725, { "distinct_on": [ - 1745, + 1746, "[event_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1743, + 1744, "[event_players_order_by!]" ], "where": [ - 1733 + 1734 ] } ], "event_players_aggregate": [ - 1725, + 1726, { "distinct_on": [ - 1745, + 1746, "[event_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1743, + 1744, "[event_players_order_by!]" ], "where": [ - 1733 + 1734 ] } ], "event_players_by_pk": [ - 1724, + 1725, { "event_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "event_teams": [ - 1765, + 1766, { "distinct_on": [ - 1783, + 1784, "[event_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1781, + 1782, "[event_teams_order_by!]" ], "where": [ - 1772 + 1773 ] } ], "event_teams_aggregate": [ - 1766, + 1767, { "distinct_on": [ - 1783, + 1784, "[event_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1781, + 1782, "[event_teams_order_by!]" ], "where": [ - 1772 + 1773 ] } ], "event_teams_by_pk": [ - 1765, + 1766, { "event_id": [ - 5458, + 5454, "uuid!" ], "team_id": [ - 5458, + 5454, "uuid!" ] } ], "event_tournaments": [ - 1789, + 1790, { "distinct_on": [ - 1807, + 1808, "[event_tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1805, + 1806, "[event_tournaments_order_by!]" ], "where": [ - 1796 + 1797 ] } ], "event_tournaments_aggregate": [ - 1790, + 1791, { "distinct_on": [ - 1807, + 1808, "[event_tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1805, + 1806, "[event_tournaments_order_by!]" ], "where": [ - 1796 + 1797 ] } ], "event_tournaments_by_pk": [ - 1789, + 1790, { "event_id": [ - 5458, + 5454, "uuid!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "events": [ - 1813, + 1814, { "distinct_on": [ - 1828, + 1829, "[events_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1826, + 1827, "[events_order_by!]" ], "where": [ - 1817 + 1818 ] } ], "events_aggregate": [ - 1814, + 1815, { "distinct_on": [ - 1828, + 1829, "[events_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1826, + 1827, "[events_order_by!]" ], "where": [ - 1817 + 1818 ] } ], "events_by_pk": [ - 1813, + 1814, { "id": [ - 5458, + 5454, "uuid!" ] } ], "friends": [ - 1843, + 1844, { "distinct_on": [ - 1857, + 1858, "[friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1855, + 1856, "[friends_order_by!]" ], "where": [ - 1847 + 1848 ] } ], "friends_aggregate": [ - 1844, + 1845, { "distinct_on": [ - 1857, + 1858, "[friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1855, + 1856, "[friends_order_by!]" ], "where": [ - 1847 + 1848 ] } ], "friends_by_pk": [ - 1843, + 1844, { "other_player_steam_id": [ - 268, + 269, "bigint!" ], "player_steam_id": [ - 268, + 269, "bigint!" ] } ], "game_mode_plugins": [ - 1870, + 1871, { "distinct_on": [ - 1898, + 1899, "[game_mode_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1895, + 1896, "[game_mode_plugins_order_by!]" ], "where": [ - 1882 + 1883 ] } ], "game_mode_plugins_aggregate": [ - 1871, + 1872, { "distinct_on": [ - 1898, + 1899, "[game_mode_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1895, + 1896, "[game_mode_plugins_order_by!]" ], "where": [ - 1882 + 1883 ] } ], "game_mode_plugins_by_pk": [ - 1870, + 1871, { "game_mode_id": [ - 5458, + 5454, "uuid!" ], "plugin_slug": [ - 83, + 84, "String!" ] } ], "game_modes": [ - 1920, + 1921, { "distinct_on": [ - 1938, + 1934, "[game_modes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1935, + 1932, "[game_modes_order_by!]" ], "where": [ @@ -149215,20 +149178,20 @@ export default { } ], "game_modes_aggregate": [ - 1921, + 1922, { "distinct_on": [ - 1938, + 1934, "[game_modes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1935, + 1932, "[game_modes_order_by!]" ], "where": [ @@ -149237,389 +149200,389 @@ export default { } ], "game_modes_by_pk": [ - 1920, + 1921, { "id": [ - 5458, + 5454, "uuid!" ] } ], "game_plugin_installs": [ - 1944, + 1940, { "distinct_on": [ - 1956, + 1952, "[game_plugin_installs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1954, + 1950, "[game_plugin_installs_order_by!]" ], "where": [ - 1947 + 1943 ] } ], "game_plugin_installs_aggregate": [ - 1945, + 1941, { "distinct_on": [ - 1956, + 1952, "[game_plugin_installs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1954, + 1950, "[game_plugin_installs_order_by!]" ], "where": [ - 1947 + 1943 ] } ], "game_plugin_installs_by_pk": [ - 1944, + 1940, { "plugin_slug": [ - 83, + 84, "String!" ] } ], "game_plugin_versions": [ - 1962, + 1958, { "distinct_on": [ - 1985, + 1981, "[game_plugin_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1983, + 1979, "[game_plugin_versions_order_by!]" ], "where": [ - 1973 + 1969 ] } ], "game_plugin_versions_aggregate": [ - 1963, + 1959, { "distinct_on": [ - 1985, + 1981, "[game_plugin_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1983, + 1979, "[game_plugin_versions_order_by!]" ], "where": [ - 1973 + 1969 ] } ], "game_plugin_versions_by_pk": [ - 1962, + 1958, { "plugin_slug": [ - 83, + 84, "String!" ], "runtime": [ - 1262, + 1263, "e_plugin_runtimes_enum!" ], "version": [ - 83, + 84, "String!" ] } ], "game_plugins": [ - 2007, + 2003, { "distinct_on": [ - 2026, + 2022, "[game_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2023, + 2019, "[game_plugins_order_by!]" ], "where": [ - 2012 + 2008 ] } ], "game_plugins_aggregate": [ - 2008, + 2004, { "distinct_on": [ - 2026, + 2022, "[game_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2023, + 2019, "[game_plugins_order_by!]" ], "where": [ - 2012 + 2008 ] } ], "game_plugins_by_pk": [ - 2007, + 2003, { "slug": [ - 83, + 84, "String!" ] } ], "game_server_node_plugins": [ - 2039, + 2035, { "distinct_on": [ - 2059, + 2055, "[game_server_node_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2057, + 2053, "[game_server_node_plugins_order_by!]" ], "where": [ - 2048 + 2044 ] } ], "game_server_node_plugins_aggregate": [ - 2040, + 2036, { "distinct_on": [ - 2059, + 2055, "[game_server_node_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2057, + 2053, "[game_server_node_plugins_order_by!]" ], "where": [ - 2048 + 2044 ] } ], "game_server_node_plugins_by_pk": [ - 2039, + 2035, { "id": [ - 5458, + 5454, "uuid!" ] } ], "game_server_nodes": [ - 2067, + 2063, { "distinct_on": [ - 2096, + 2092, "[game_server_nodes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2093, + 2089, "[game_server_nodes_order_by!]" ], "where": [ - 2079 + 2075 ] } ], "game_server_nodes_aggregate": [ - 2068, + 2064, { "distinct_on": [ - 2096, + 2092, "[game_server_nodes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2093, + 2089, "[game_server_nodes_order_by!]" ], "where": [ - 2079 + 2075 ] } ], "game_server_nodes_by_pk": [ - 2067, + 2063, { "id": [ - 83, + 84, "String!" ] } ], "game_versions": [ - 2118, + 2114, { "distinct_on": [ - 2138, + 2134, "[game_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2135, + 2131, "[game_versions_order_by!]" ], "where": [ - 2123 + 2119 ] } ], "game_versions_aggregate": [ - 2119, + 2115, { "distinct_on": [ - 2138, + 2134, "[game_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2135, + 2131, "[game_versions_order_by!]" ], "where": [ - 2123 + 2119 ] } ], "game_versions_by_pk": [ - 2118, + 2114, { "build_id": [ - 40, + 41, "Int!" ] } ], "gamedata_signature_validations": [ - 2151, + 2147, { "distinct_on": [ - 2170, + 2166, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2167, + 2163, "[gamedata_signature_validations_order_by!]" ], "where": [ - 2156 + 2152 ] } ], "gamedata_signature_validations_aggregate": [ - 2152, + 2148, { "distinct_on": [ - 2170, + 2166, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2167, + 2163, "[gamedata_signature_validations_order_by!]" ], "where": [ - 2156 + 2152 ] } ], "gamedata_signature_validations_by_pk": [ - 2151, + 2147, { "id": [ - 5458, + 5454, "uuid!" ] } @@ -149631,8542 +149594,8573 @@ export default { 1 ], "getConnectionStats": [ - 13 + 14 ], "getCurrentLocks": [ - 46 + 47 ], "getDatabaseStats": [ - 18 + 19 ], "getDedicatedServerInfo": [ - 20 + 21 ], "getDedicatedServerPlayers": [ - 73, + 74, { "serverId": [ - 83, + 84, "String!" ] } ], "getHighlightPresetAvailability": [ - 36, + 37, { "match_map_id": [ - 5458, + 5454, "uuid!" ], "target_steam_id": [ - 83, + 84, "String!" ] } ], "getIndexIOStats": [ - 38, + 39, { "schemas": [ - 83, + 84, "[String!]" ] } ], "getIndexStats": [ - 39, + 40, { "schemas": [ - 83, + 84, "[String!]" ] } ], "getNodeStats": [ - 52, + 53, { "node": [ - 83, + 84, "String!" ] } ], "getQueryDetail": [ - 60, + 61, { "queryid": [ - 83, + 84, "String!" ] } ], "getQueryStats": [ - 61 + 62 ], "getSchemas": [ - 83 + 84 ], "getServiceStats": [ - 57 + 58 ], "getStorageStats": [ - 81, + 82, { "schemas": [ - 83, + 84, "[String!]" ] } ], "getTableIOStats": [ - 88, + 89, { "schemas": [ - 83, + 84, "[String!]" ] } ], "getTableStats": [ - 90, + 91, { "schemas": [ - 83, + 84, "[String!]" ] } ], "getTimescaleStats": [ - 105 + 106 ], "get_event_leaderboard": [ - 2194, + 2190, { "args": [ - 2183, + 2179, "get_event_leaderboard_args!" ], "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "get_event_leaderboard_aggregate": [ - 2195, + 2191, { "args": [ - 2183, + 2179, "get_event_leaderboard_args!" ], "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "get_leaderboard": [ - 2194, + 2190, { "args": [ - 2184, + 2180, "get_leaderboard_args!" ], "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "get_leaderboard_aggregate": [ - 2195, + 2191, { "args": [ - 2184, + 2180, "get_leaderboard_args!" ], "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "get_league_season_leaderboard": [ - 2194, + 2190, { "args": [ - 2185, + 2181, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "get_league_season_leaderboard_aggregate": [ - 2195, + 2191, { "args": [ - 2185, + 2181, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "get_player_leaderboard_rank": [ - 3818, + 3814, { "args": [ - 2186, + 2182, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3829, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3828, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3822 + 3818 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3819, + 3815, { "args": [ - 2186, + 2182, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3829, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3828, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3822 + 3818 ] } ], "leaderboard_entries": [ - 2194, + 2190, { "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "leaderboard_entries_aggregate": [ - 2195, + 2191, { "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "league_divisions": [ - 2218, + 2214, { "distinct_on": [ - 2233, + 2229, "[league_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2231, + 2227, "[league_divisions_order_by!]" ], "where": [ - 2222 + 2218 ] } ], "league_divisions_aggregate": [ - 2219, + 2215, { "distinct_on": [ - 2233, + 2229, "[league_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2231, + 2227, "[league_divisions_order_by!]" ], "where": [ - 2222 + 2218 ] } ], "league_divisions_by_pk": [ - 2218, + 2214, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_match_weeks": [ - 2246, + 2242, { "distinct_on": [ - 2267, + 2263, "[league_match_weeks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2265, + 2261, "[league_match_weeks_order_by!]" ], "where": [ - 2255 + 2251 ] } ], "league_match_weeks_aggregate": [ - 2247, + 2243, { "distinct_on": [ - 2267, + 2263, "[league_match_weeks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2265, + 2261, "[league_match_weeks_order_by!]" ], "where": [ - 2255 + 2251 ] } ], "league_match_weeks_by_pk": [ - 2246, + 2242, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_relegation_playoffs": [ - 2287, + 2283, { "distinct_on": [ - 2308, + 2304, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2306, + 2302, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2296 + 2292 ] } ], "league_relegation_playoffs_aggregate": [ - 2288, + 2284, { "distinct_on": [ - 2308, + 2304, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2306, + 2302, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2296 + 2292 ] } ], "league_relegation_playoffs_by_pk": [ - 2287, + 2283, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_scheduling_proposals": [ - 2328, + 2324, { "distinct_on": [ - 2349, + 2345, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2347, + 2343, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2337 + 2333 ] } ], "league_scheduling_proposals_aggregate": [ - 2329, + 2325, { "distinct_on": [ - 2349, + 2345, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2347, + 2343, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2337 + 2333 ] } ], "league_scheduling_proposals_by_pk": [ - 2328, + 2324, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_season_divisions": [ - 2369, + 2365, { "distinct_on": [ - 2388, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2386, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2376 + 2372 ] } ], "league_season_divisions_aggregate": [ - 2370, + 2366, { "distinct_on": [ - 2388, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2386, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2376 + 2372 ] } ], "league_season_divisions_by_pk": [ - 2369, + 2365, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_seasons": [ - 2394, + 2390, { "distinct_on": [ - 2414, + 2410, "[league_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2411, + 2407, "[league_seasons_order_by!]" ], "where": [ - 2399 + 2395 ] } ], "league_seasons_aggregate": [ - 2395, + 2391, { "distinct_on": [ - 2414, + 2410, "[league_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2411, + 2407, "[league_seasons_order_by!]" ], "where": [ - 2399 + 2395 ] } ], "league_seasons_by_pk": [ - 2394, + 2390, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_team_movements": [ - 2427, + 2423, { "distinct_on": [ - 2448, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2446, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2436 + 2432 ] } ], "league_team_movements_aggregate": [ - 2428, + 2424, { "distinct_on": [ - 2448, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2446, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2436 + 2432 ] } ], "league_team_movements_by_pk": [ - 2427, + 2423, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_team_rosters": [ - 2468, + 2464, { "distinct_on": [ - 2489, + 2485, "[league_team_rosters_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2487, + 2483, "[league_team_rosters_order_by!]" ], "where": [ - 2477 + 2473 ] } ], "league_team_rosters_aggregate": [ - 2469, + 2465, { "distinct_on": [ - 2489, + 2485, "[league_team_rosters_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2487, + 2483, "[league_team_rosters_order_by!]" ], "where": [ - 2477 + 2473 ] } ], "league_team_rosters_by_pk": [ - 2468, + 2464, { "league_team_season_id": [ - 5458, + 5454, "uuid!" ], "player_steam_id": [ - 268, + 269, "bigint!" ] } ], "league_team_seasons": [ - 2509, + 2505, { "distinct_on": [ - 2531, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2529, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2518 + 2514 ] } ], "league_team_seasons_aggregate": [ - 2510, + 2506, { "distinct_on": [ - 2531, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2529, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2518 + 2514 ] } ], "league_team_seasons_by_pk": [ - 2509, + 2505, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_teams": [ - 2551, + 2547, { "distinct_on": [ - 2564, + 2560, "[league_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2562, + 2558, "[league_teams_order_by!]" ], "where": [ - 2554 + 2550 ] } ], "league_teams_aggregate": [ - 2552, + 2548, { "distinct_on": [ - 2564, + 2560, "[league_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2562, + 2558, "[league_teams_order_by!]" ], "where": [ - 2554 + 2550 ] } ], "league_teams_by_pk": [ - 2551, + 2547, { "id": [ - 5458, + 5454, "uuid!" ] } ], "listServerFiles": [ - 30, + 31, { "node_id": [ - 83, + 84, "String!" ], "path": [ - 83 + 84 ], "server_id": [ - 83 + 84 ] } ], "lobbies": [ - 2570, + 2566, { "distinct_on": [ - 2583, + 2579, "[lobbies_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2581, + 2577, "[lobbies_order_by!]" ], "where": [ - 2573 + 2569 ] } ], "lobbies_aggregate": [ - 2571, + 2567, { "distinct_on": [ - 2583, + 2579, "[lobbies_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2581, + 2577, "[lobbies_order_by!]" ], "where": [ - 2573 + 2569 ] } ], "lobbies_by_pk": [ - 2570, + 2566, { "id": [ - 5458, + 5454, "uuid!" ] } ], "lobby_players": [ - 2589, + 2585, { "distinct_on": [ - 2612, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2610, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2600 + 2596 ] } ], "lobby_players_aggregate": [ - 2590, + 2586, { "distinct_on": [ - 2612, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2610, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2600 + 2596 ] } ], "lobby_players_by_pk": [ - 2589, + 2585, { "lobby_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "map_pools": [ - 2634, + 2630, { "distinct_on": [ - 2647, + 2643, "[map_pools_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2645, + 2641, "[map_pools_order_by!]" ], "where": [ - 2637 + 2633 ] } ], "map_pools_aggregate": [ - 2635, + 2631, { "distinct_on": [ - 2647, + 2643, "[map_pools_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2645, + 2641, "[map_pools_order_by!]" ], "where": [ - 2637 + 2633 ] } ], "map_pools_by_pk": [ - 2634, + 2630, { "id": [ - 5458, + 5454, "uuid!" ] } ], "maps": [ - 2653, + 2649, { "distinct_on": [ - 2674, + 2670, "[maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2672, + 2668, "[maps_order_by!]" ], "where": [ - 2662 + 2658 ] } ], "maps_aggregate": [ - 2654, + 2650, { "distinct_on": [ - 2674, + 2670, "[maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2672, + 2668, "[maps_order_by!]" ], "where": [ - 2662 + 2658 ] } ], "maps_by_pk": [ - 2653, + 2649, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_clips": [ - 2682, + 2678, { "distinct_on": [ - 2704, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2702, + 2698, "[match_clips_order_by!]" ], "where": [ - 2691 + 2687 ] } ], "match_clips_aggregate": [ - 2683, + 2679, { "distinct_on": [ - 2704, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2702, + 2698, "[match_clips_order_by!]" ], "where": [ - 2691 + 2687 ] } ], "match_clips_by_pk": [ - 2682, + 2678, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_demo_sessions": [ - 2724, + 2720, { "distinct_on": [ - 2750, + 2746, "[match_demo_sessions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2747, + 2743, "[match_demo_sessions_order_by!]" ], "where": [ - 2734 + 2730 ] } ], "match_demo_sessions_aggregate": [ - 2725, + 2721, { "distinct_on": [ - 2750, + 2746, "[match_demo_sessions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2747, + 2743, "[match_demo_sessions_order_by!]" ], "where": [ - 2734 + 2730 ] } ], "match_demo_sessions_by_pk": [ - 2724, + 2720, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_lineup_players": [ - 2770, + 2766, { "distinct_on": [ - 2793, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2791, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2781 + 2777 ] } ], "match_lineup_players_aggregate": [ - 2771, + 2767, { "distinct_on": [ - 2793, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2791, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2781 + 2777 ] } ], "match_lineup_players_by_pk": [ - 2770, + 2766, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_lineups": [ - 2815, + 2811, { "distinct_on": [ - 2837, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2835, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2824 + 2820 ] } ], "match_lineups_aggregate": [ - 2816, + 2812, { "distinct_on": [ - 2837, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2835, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2824 + 2820 ] } ], "match_lineups_by_pk": [ - 2815, + 2811, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_map_demos": [ - 2857, + 2853, { "distinct_on": [ - 2886, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2883, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2869 + 2865 ] } ], "match_map_demos_aggregate": [ - 2858, + 2854, { "distinct_on": [ - 2886, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2883, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2869 + 2865 ] } ], "match_map_demos_by_pk": [ - 2857, + 2853, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_map_rounds": [ - 2908, + 2904, { "distinct_on": [ - 2929, + 2925, "[match_map_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2927, + 2923, "[match_map_rounds_order_by!]" ], "where": [ - 2917 + 2913 ] } ], "match_map_rounds_aggregate": [ - 2909, + 2905, { "distinct_on": [ - 2929, + 2925, "[match_map_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2927, + 2923, "[match_map_rounds_order_by!]" ], "where": [ - 2917 + 2913 ] } ], "match_map_rounds_by_pk": [ - 2908, + 2904, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_map_veto_picks": [ - 2949, + 2945, { "distinct_on": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2967, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2958 + 2954 ] } ], "match_map_veto_picks_aggregate": [ - 2950, + 2946, { "distinct_on": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2967, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2958 + 2954 ] } ], "match_map_veto_picks_by_pk": [ - 2949, + 2945, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_maps": [ - 2977, + 2973, { "distinct_on": [ - 2999, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2997, + 2993, "[match_maps_order_by!]" ], "where": [ - 2986 + 2982 ] } ], "match_maps_aggregate": [ - 2978, + 2974, { "distinct_on": [ - 2999, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2997, + 2993, "[match_maps_order_by!]" ], "where": [ - 2986 + 2982 ] } ], "match_maps_by_pk": [ - 2977, + 2973, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_options": [ - 3019, + 3015, { "distinct_on": [ - 3043, + 3039, "[match_options_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3041, + 3037, "[match_options_order_by!]" ], "where": [ - 3030 + 3026 ] } ], "match_options_aggregate": [ - 3020, + 3016, { "distinct_on": [ - 3043, + 3039, "[match_options_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3041, + 3037, "[match_options_order_by!]" ], "where": [ - 3030 + 3026 ] } ], "match_options_by_pk": [ - 3019, + 3015, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_region_veto_picks": [ - 3065, + 3061, { "distinct_on": [ - 3085, + 3081, "[match_region_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3083, + 3079, "[match_region_veto_picks_order_by!]" ], "where": [ - 3074 + 3070 ] } ], "match_region_veto_picks_aggregate": [ - 3066, + 3062, { "distinct_on": [ - 3085, + 3081, "[match_region_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3083, + 3079, "[match_region_veto_picks_order_by!]" ], "where": [ - 3074 + 3070 ] } ], "match_region_veto_picks_by_pk": [ - 3065, + 3061, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_streams": [ - 3093, + 3089, { "distinct_on": [ - 3121, + 3117, "[match_streams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3118, + 3114, "[match_streams_order_by!]" ], "where": [ - 3105 + 3101 ] } ], "match_streams_aggregate": [ - 3094, + 3090, { "distinct_on": [ - 3121, + 3117, "[match_streams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3118, + 3114, "[match_streams_order_by!]" ], "where": [ - 3105 + 3101 ] } ], "match_streams_by_pk": [ - 3093, + 3089, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_type_cfgs": [ - 3143, + 3139, { "distinct_on": [ - 3155, + 3151, "[match_type_cfgs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3153, + 3149, "[match_type_cfgs_order_by!]" ], "where": [ - 3146 + 3142 ] } ], "match_type_cfgs_aggregate": [ - 3144, + 3140, { "distinct_on": [ - 3155, + 3151, "[match_type_cfgs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3153, + 3149, "[match_type_cfgs_order_by!]" ], "where": [ - 3146 + 3142 ] } ], "match_type_cfgs_by_pk": [ - 3143, + 3139, { "type": [ - 832, + 833, "e_game_cfg_types_enum!" ] } ], "matches": [ - 3161, + 3157, { "distinct_on": [ - 3185, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3183, + 3179, "[matches_order_by!]" ], "where": [ - 3172 + 3168 ] } ], "matches_aggregate": [ - 3162, + 3158, { "distinct_on": [ - 3185, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3183, + 3179, "[matches_order_by!]" ], "where": [ - 3172 + 3168 ] } ], "matches_by_pk": [ - 3161, + 3157, { "id": [ - 5458, + 5454, "uuid!" ] } ], "me": [ - 47 + 48 ], "migration_hashes_hashes": [ - 3207, + 3203, { "distinct_on": [ - 3219, + 3215, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3217, + 3213, "[migration_hashes_hashes_order_by!]" ], "where": [ - 3210 + 3206 ] } ], "migration_hashes_hashes_aggregate": [ - 3208, + 3204, { "distinct_on": [ - 3219, + 3215, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3217, + 3213, "[migration_hashes_hashes_order_by!]" ], "where": [ - 3210 + 3206 ] } ], "migration_hashes_hashes_by_pk": [ - 3207, + 3203, { "name": [ - 83, + 84, "String!" ] } ], "my_friends": [ - 3225, + 3221, { "distinct_on": [ - 3250, + 3246, "[my_friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3248, + 3244, "[my_friends_order_by!]" ], "where": [ - 3237 + 3233 ] } ], "my_friends_aggregate": [ - 3226, + 3222, { "distinct_on": [ - 3250, + 3246, "[my_friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3248, + 3244, "[my_friends_order_by!]" ], "where": [ - 3237 + 3233 ] } ], "newsPostAdmin": [ - 50, + 51, { "id": [ - 5458, + 5454, "uuid!" ] } ], "newsPostsAdmin": [ - 50 + 51 ], "news_articles": [ - 3271, + 3267, { "distinct_on": [ - 3285, + 3281, "[news_articles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3283, + 3279, "[news_articles_order_by!]" ], "where": [ - 3275 + 3271 ] } ], "news_articles_aggregate": [ - 3272, + 3268, { "distinct_on": [ - 3285, + 3281, "[news_articles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3283, + 3279, "[news_articles_order_by!]" ], "where": [ - 3275 + 3271 ] } ], "news_articles_by_pk": [ - 3271, + 3267, { "id": [ - 5458, + 5454, "uuid!" ] } ], "notification_preferences": [ - 3298, + 3294, { "distinct_on": [ - 3312, + 3308, "[notification_preferences_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3310, + 3306, "[notification_preferences_order_by!]" ], "where": [ - 3302 + 3298 ] } ], "notification_preferences_aggregate": [ - 3299, + 3295, { "distinct_on": [ - 3312, + 3308, "[notification_preferences_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3310, + 3306, "[notification_preferences_order_by!]" ], "where": [ - 3302 + 3298 ] } ], "notification_preferences_by_pk": [ - 3298, + 3294, { "channel": [ - 83, + 84, "String!" ], "key": [ - 83, + 84, "String!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "notifications": [ - 3325, + 3321, { "distinct_on": [ - 3353, + 3349, "[notifications_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3350, + 3346, "[notifications_order_by!]" ], "where": [ - 3337 + 3333 ] } ], "notifications_aggregate": [ - 3326, + 3322, { "distinct_on": [ - 3353, + 3349, "[notifications_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3350, + 3346, "[notifications_order_by!]" ], "where": [ - 3337 + 3333 ] } ], "notifications_by_pk": [ - 3325, + 3321, { "id": [ - 5458, + 5454, "uuid!" ] } ], "pending_match_import_players": [ - 3378, + 3374, { "distinct_on": [ - 3399, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3397, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3387 + 3383 ] } ], "pending_match_import_players_aggregate": [ - 3379, + 3375, { "distinct_on": [ - 3399, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3397, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3387 + 3383 ] } ], "pending_match_import_players_by_pk": [ - 3378, + 3374, { "steam_id": [ - 268, + 269, "bigint!" ], "valve_match_id": [ - 3375, + 3371, "numeric!" ] } ], "pending_match_imports": [ - 3419, + 3415, { "distinct_on": [ - 3434, + 3430, "[pending_match_imports_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3432, + 3428, "[pending_match_imports_order_by!]" ], "where": [ - 3423 + 3419 ] } ], "pending_match_imports_aggregate": [ - 3420, + 3416, { "distinct_on": [ - 3434, + 3430, "[pending_match_imports_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3432, + 3428, "[pending_match_imports_order_by!]" ], "where": [ - 3423 + 3419 ] } ], "pending_match_imports_by_pk": [ - 3419, + 3415, { "valve_match_id": [ - 3375, + 3371, "numeric!" ] } ], "player_aim_stats_demo": [ - 3447, + 3443, { "distinct_on": [ - 3461, + 3457, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3459, + 3455, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3451 + 3447 ] } ], "player_aim_stats_demo_aggregate": [ - 3448, + 3444, { "distinct_on": [ - 3461, + 3457, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3459, + 3455, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3451 + 3447 ] } ], "player_aim_stats_demo_by_pk": [ - 3447, + 3443, { "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ] } ], "player_aim_weapon_stats": [ - 3474, + 3470, { "distinct_on": [ - 3495, + 3491, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3493, + 3489, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3483 + 3479 ] } ], "player_aim_weapon_stats_aggregate": [ - 3475, + 3471, { "distinct_on": [ - 3495, + 3491, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3493, + 3489, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3483 + 3479 ] } ], "player_aim_weapon_stats_by_pk": [ - 3474, + 3470, { "match_map_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ], "weapon_class": [ - 83, + 84, "String!" ] } ], "player_assists": [ - 3515, + 3511, { "distinct_on": [ - 3538, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3536, + 3532, "[player_assists_order_by!]" ], "where": [ - 3526 + 3522 ] } ], "player_assists_aggregate": [ - 3516, + 3512, { "distinct_on": [ - 3538, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3536, + 3532, "[player_assists_order_by!]" ], "where": [ - 3526 + 3522 ] } ], "player_assists_by_pk": [ - 3515, + 3511, { "attacked_steam_id": [ - 268, + 269, "bigint!" ], "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "player_career_stats_v": [ - 3560, + 3556, { "distinct_on": [ - 3568, + 3564, "[player_career_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3567, + 3563, "[player_career_stats_v_order_by!]" ], "where": [ - 3564 + 3560 ] } ], "player_career_stats_v_aggregate": [ - 3561, + 3557, { "distinct_on": [ - 3568, + 3564, "[player_career_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3567, + 3563, "[player_career_stats_v_order_by!]" ], "where": [ - 3564 + 3560 ] } ], "player_damages": [ - 3578, + 3574, { "distinct_on": [ - 3599, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3597, + 3593, "[player_damages_order_by!]" ], "where": [ - 3587 + 3583 ] } ], "player_damages_aggregate": [ - 3579, + 3575, { "distinct_on": [ - 3599, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3597, + 3593, "[player_damages_order_by!]" ], "where": [ - 3587 + 3583 ] } ], "player_damages_by_pk": [ - 3578, + 3574, { "id": [ - 5458, + 5454, "uuid!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "player_elo": [ - 3619, + 3615, { "distinct_on": [ - 3633, + 3629, "[player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3631, + 3627, "[player_elo_order_by!]" ], "where": [ - 3623 + 3619 ] } ], "player_elo_aggregate": [ - 3620, + 3616, { "distinct_on": [ - 3633, + 3629, "[player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3631, + 3627, "[player_elo_order_by!]" ], "where": [ - 3623 + 3619 ] } ], "player_elo_by_pk": [ - 3619, + 3615, { "match_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ], "type": [ - 1181, + 1182, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 3646, + 3642, { "distinct_on": [ - 3667, + 3663, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3665, + 3661, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3655 + 3651 ] } ], "player_faceit_rank_history_aggregate": [ - 3647, + 3643, { "distinct_on": [ - 3667, + 3663, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3665, + 3661, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3655 + 3651 ] } ], "player_faceit_rank_history_by_pk": [ - 3646, + 3642, { "id": [ - 5458, + 5454, "uuid!" ] } ], "player_flashes": [ - 3687, + 3683, { "distinct_on": [ - 3710, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3708, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3698 + 3694 ] } ], "player_flashes_aggregate": [ - 3688, + 3684, { "distinct_on": [ - 3710, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3708, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3698 + 3694 ] } ], "player_flashes_by_pk": [ - 3687, + 3683, { "attacked_steam_id": [ - 268, + 269, "bigint!" ], "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "player_kills": [ - 3732, + 3728, { "distinct_on": [ - 3796, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3794, + 3790, "[player_kills_order_by!]" ], "where": [ - 3743 + 3739 ] } ], "player_kills_aggregate": [ - 3733, + 3729, { "distinct_on": [ - 3796, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3794, + 3790, "[player_kills_order_by!]" ], "where": [ - 3743 + 3739 ] } ], "player_kills_by_pk": [ - 3732, + 3728, { "attacked_steam_id": [ - 268, + 269, "bigint!" ], "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3744, + 3740, { "distinct_on": [ - 3765, + 3761, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3763, + 3759, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3753 + 3749 ] } ], "player_kills_by_weapon_aggregate": [ - 3745, + 3741, { "distinct_on": [ - 3765, + 3761, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3763, + 3759, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3753 + 3749 ] } ], "player_kills_by_weapon_by_pk": [ - 3744, + 3740, { "player_steam_id": [ - 268, + 269, "bigint!" ], "with": [ - 83, + 84, "String!" ] } ], "player_leaderboard_rank": [ - 3818, + 3814, { "distinct_on": [ - 3829, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3828, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3822 + 3818 ] } ], "player_leaderboard_rank_aggregate": [ - 3819, + 3815, { "distinct_on": [ - 3829, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3828, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3822 + 3818 ] } ], "player_match_map_stats": [ - 3841, + 3837, { "distinct_on": [ - 3862, + 3858, "[player_match_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3860, + 3856, "[player_match_map_stats_order_by!]" ], "where": [ - 3850 + 3846 ] } ], "player_match_map_stats_aggregate": [ - 3842, + 3838, { "distinct_on": [ - 3862, + 3858, "[player_match_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3860, + 3856, "[player_match_map_stats_order_by!]" ], "where": [ - 3850 + 3846 ] } ], "player_match_map_stats_by_pk": [ - 3841, + 3837, { "match_map_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "player_match_performance_v": [ - 3882, + 3878, { "distinct_on": [ - 3890, + 3886, "[player_match_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3889, + 3885, "[player_match_performance_v_order_by!]" ], "where": [ - 3886 + 3882 ] } ], "player_match_performance_v_aggregate": [ - 3883, + 3879, { "distinct_on": [ - 3890, + 3886, "[player_match_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3889, + 3885, "[player_match_performance_v_order_by!]" ], "where": [ - 3886 + 3882 ] } ], "player_match_stats_v": [ - 3900, + 3896, { "distinct_on": [ - 3916, + 3912, "[player_match_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3915, + 3911, "[player_match_stats_v_order_by!]" ], "where": [ - 3909 + 3905 ] } ], "player_match_stats_v_aggregate": [ - 3901, + 3897, { "distinct_on": [ - 3916, + 3912, "[player_match_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3915, + 3911, "[player_match_stats_v_order_by!]" ], "where": [ - 3909 + 3905 ] } ], "player_objectives": [ - 3933, + 3929, { "distinct_on": [ - 3954, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3952, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3942 + 3938 ] } ], "player_objectives_aggregate": [ - 3934, + 3930, { "distinct_on": [ - 3954, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3952, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3942 + 3938 ] } ], "player_objectives_by_pk": [ - 3933, + 3929, { "match_map_id": [ - 5458, + 5454, "uuid!" ], "player_steam_id": [ - 268, + 269, "bigint!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "player_performance_v": [ - 3974, + 3970, { "distinct_on": [ - 3982, + 3978, "[player_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3981, + 3977, "[player_performance_v_order_by!]" ], "where": [ - 3978 + 3974 ] } ], "player_performance_v_aggregate": [ - 3975, + 3971, { "distinct_on": [ - 3982, + 3978, "[player_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3981, + 3977, "[player_performance_v_order_by!]" ], "where": [ - 3978 + 3974 ] } ], "player_premier_rank_history": [ - 3992, + 3988, { "distinct_on": [ - 4013, + 4009, "[player_premier_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4011, + 4007, "[player_premier_rank_history_order_by!]" ], "where": [ - 4001 + 3997 ] } ], "player_premier_rank_history_aggregate": [ - 3993, + 3989, { "distinct_on": [ - 4013, + 4009, "[player_premier_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4011, + 4007, "[player_premier_rank_history_order_by!]" ], "where": [ - 4001 + 3997 ] } ], "player_premier_rank_history_by_pk": [ - 3992, + 3988, { "id": [ - 5458, + 5454, "uuid!" ] } ], "player_sanctions": [ - 4033, + 4029, { "distinct_on": [ - 4054, + 4050, "[player_sanctions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4052, + 4048, "[player_sanctions_order_by!]" ], "where": [ - 4042 + 4038 ] } ], "player_sanctions_aggregate": [ - 4034, + 4030, { "distinct_on": [ - 4054, + 4050, "[player_sanctions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4052, + 4048, "[player_sanctions_order_by!]" ], "where": [ - 4042 + 4038 ] } ], "player_sanctions_by_pk": [ - 4033, + 4029, { "created_at": [ - 4958, + 4954, "timestamptz!" ], "id": [ - 5458, + 5454, "uuid!" ] } ], "player_season_stats": [ - 4074, + 4070, { "distinct_on": [ - 4105, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4103, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 4093 + 4089 ] } ], "player_season_stats_aggregate": [ - 4075, + 4071, { "distinct_on": [ - 4105, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4103, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 4093 + 4089 ] } ], "player_season_stats_by_pk": [ - 4074, + 4070, { "player_steam_id": [ - 268, + 269, "bigint!" ], "season_id": [ - 5458, + 5454, "uuid!" ] } ], "player_stats": [ - 4133, + 4129, { "distinct_on": [ - 4148, + 4144, "[player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4146, + 4142, "[player_stats_order_by!]" ], "where": [ - 4137 + 4133 ] } ], "player_stats_aggregate": [ - 4134, + 4130, { "distinct_on": [ - 4148, + 4144, "[player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4146, + 4142, "[player_stats_order_by!]" ], "where": [ - 4137 + 4133 ] } ], "player_stats_by_pk": [ - 4133, + 4129, { "player_steam_id": [ - 268, + 269, "bigint!" ] } ], "player_steam_bot_friend": [ - 4161, + 4157, { "distinct_on": [ - 4180, + 4176, "[player_steam_bot_friend_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4177, + 4173, "[player_steam_bot_friend_order_by!]" ], "where": [ - 4166 + 4162 ] } ], "player_steam_bot_friend_aggregate": [ - 4162, + 4158, { "distinct_on": [ - 4180, + 4176, "[player_steam_bot_friend_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4177, + 4173, "[player_steam_bot_friend_order_by!]" ], "where": [ - 4166 + 4162 ] } ], "player_steam_bot_friend_by_pk": [ - 4161, + 4157, { "steam_id": [ - 268, + 269, "bigint!" ] } ], "player_steam_match_auth": [ - 4193, + 4189, { "distinct_on": [ - 4207, + 4203, "[player_steam_match_auth_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4205, + 4201, "[player_steam_match_auth_order_by!]" ], "where": [ - 4197 + 4193 ] } ], "player_steam_match_auth_aggregate": [ - 4194, + 4190, { "distinct_on": [ - 4207, + 4203, "[player_steam_match_auth_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4205, + 4201, "[player_steam_match_auth_order_by!]" ], "where": [ - 4197 + 4193 ] } ], "player_steam_match_auth_by_pk": [ - 4193, + 4189, { "steam_id": [ - 268, + 269, "bigint!" ] } ], "player_unused_utility": [ - 4220, + 4216, { "distinct_on": [ - 4241, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4239, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 4229 + 4225 ] } ], "player_unused_utility_aggregate": [ - 4221, + 4217, { "distinct_on": [ - 4241, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4239, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 4229 + 4225 ] } ], "player_unused_utility_by_pk": [ - 4220, + 4216, { "match_map_id": [ - 5458, + 5454, "uuid!" ], "player_steam_id": [ - 268, + 269, "bigint!" ] } ], "player_utility": [ - 4261, + 4257, { "distinct_on": [ - 4282, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4280, + 4276, "[player_utility_order_by!]" ], "where": [ - 4270 + 4266 ] } ], "player_utility_aggregate": [ - 4262, + 4258, { "distinct_on": [ - 4282, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4280, + 4276, "[player_utility_order_by!]" ], "where": [ - 4270 + 4266 ] } ], "player_utility_by_pk": [ - 4261, + 4257, { "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 4302, + 4298, { "distinct_on": [ - 4318, + 4314, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4317, + 4313, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4311 + 4307 ] } ], "player_weapon_stats_v_aggregate": [ - 4303, + 4299, { "distinct_on": [ - 4318, + 4314, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4317, + 4313, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4311 + 4307 ] } ], "players": [ - 4335, + 4331, { "distinct_on": [ - 4350, + 4346, "[players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4348, + 4344, "[players_order_by!]" ], "where": [ - 4339 + 4335 ] } ], "players_aggregate": [ - 4336, + 4332, { "distinct_on": [ - 4350, + 4346, "[players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4348, + 4344, "[players_order_by!]" ], "where": [ - 4339 + 4335 ] } ], "players_by_pk": [ - 4335, + 4331, { "steam_id": [ - 268, + 269, "bigint!" ] } ], "plugin_versions": [ - 4363, + 4359, { "distinct_on": [ - 4377, + 4373, "[plugin_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4375, + 4371, "[plugin_versions_order_by!]" ], "where": [ - 4367 + 4363 ] } ], "plugin_versions_aggregate": [ - 4364, + 4360, { "distinct_on": [ - 4377, + 4373, "[plugin_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4375, + 4371, "[plugin_versions_order_by!]" ], "where": [ - 4367 + 4363 ] } ], "plugin_versions_by_pk": [ - 4363, + 4359, { "runtime": [ - 1262, + 1263, "e_plugin_runtimes_enum!" ], "version": [ - 83, + 84, "String!" ] } ], "push_subscriptions": [ - 4390, + 4386, { "distinct_on": [ - 4404, + 4400, "[push_subscriptions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4402, + 4398, "[push_subscriptions_order_by!]" ], "where": [ - 4394 + 4390 ] } ], "push_subscriptions_aggregate": [ - 4391, + 4387, { "distinct_on": [ - 4404, + 4400, "[push_subscriptions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4402, + 4398, "[push_subscriptions_order_by!]" ], "where": [ - 4394 + 4390 ] } ], "push_subscriptions_by_pk": [ - 4390, + 4386, { "id": [ - 5458, + 5454, "uuid!" ] } ], "readServerFile": [ - 28, + 29, { "file_path": [ - 83, + 84, "String!" ], "node_id": [ - 83, + 84, "String!" ], "server_id": [ - 83 + 84 ] } ], "seasons": [ - 4421, + 4417, { "distinct_on": [ - 4436, + 4432, "[seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4434, + 4430, "[seasons_order_by!]" ], "where": [ - 4425 + 4421 ] } ], "seasons_aggregate": [ - 4422, + 4418, { "distinct_on": [ - 4436, + 4432, "[seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4434, + 4430, "[seasons_order_by!]" ], "where": [ - 4425 + 4421 ] } ], "seasons_by_pk": [ - 4421, + 4417, { "id": [ - 5458, + 5454, "uuid!" ] } ], "server_regions": [ - 4449, + 4445, { "distinct_on": [ - 4463, + 4459, "[server_regions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4461, + 4457, "[server_regions_order_by!]" ], "where": [ - 4453 + 4449 ] } ], "server_regions_aggregate": [ - 4450, + 4446, { "distinct_on": [ - 4463, + 4459, "[server_regions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4461, + 4457, "[server_regions_order_by!]" ], "where": [ - 4453 + 4449 ] } ], "server_regions_by_pk": [ - 4449, + 4445, { "value": [ - 83, + 84, "String!" ] } ], "servers": [ - 4476, + 4472, { "distinct_on": [ - 4505, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4502, + 4498, "[servers_order_by!]" ], "where": [ - 4488 + 4484 ] } ], "servers_aggregate": [ - 4477, + 4473, { "distinct_on": [ - 4505, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4502, + 4498, "[servers_order_by!]" ], "where": [ - 4488 + 4484 ] } ], "servers_by_pk": [ - 4476, + 4472, { "id": [ - 5458, + 5454, "uuid!" ] } ], "settings": [ - 4527, + 4523, { "distinct_on": [ - 4539, + 4535, "[settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4537, + 4533, "[settings_order_by!]" ], "where": [ - 4530 + 4526 ] } ], "settings_aggregate": [ - 4528, + 4524, { "distinct_on": [ - 4539, + 4535, "[settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4537, + 4533, "[settings_order_by!]" ], "where": [ - 4530 + 4526 ] } ], "settings_by_pk": [ - 4527, + 4523, { "name": [ - 83, + 84, "String!" ] } ], "steamPresenceAdminStatus": [ - 77 + 78 ], "steam_account_claims": [ - 4547, + 4543, { "distinct_on": [ - 4565, + 4561, "[steam_account_claims_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4563, + 4559, "[steam_account_claims_order_by!]" ], "where": [ - 4554 + 4550 ] } ], "steam_account_claims_aggregate": [ - 4548, + 4544, { "distinct_on": [ - 4565, + 4561, "[steam_account_claims_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4563, + 4559, "[steam_account_claims_order_by!]" ], "where": [ - 4554 + 4550 ] } ], "steam_account_claims_by_pk": [ - 4547, + 4543, { "id": [ - 5458, + 5454, "uuid!" ] } ], "steam_accounts": [ - 4571, + 4567, { "distinct_on": [ - 4586, + 4582, "[steam_accounts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4584, + 4580, "[steam_accounts_order_by!]" ], "where": [ - 4575 + 4571 ] } ], "steam_accounts_aggregate": [ - 4572, + 4568, { "distinct_on": [ - 4586, + 4582, "[steam_accounts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4584, + 4580, "[steam_accounts_order_by!]" ], "where": [ - 4575 + 4571 ] } ], "steam_accounts_by_pk": [ - 4571, + 4567, { "id": [ - 5458, + 5454, "uuid!" ] } ], "system_alerts": [ - 4599, + 4595, { "distinct_on": [ - 4613, + 4609, "[system_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4611, + 4607, "[system_alerts_order_by!]" ], "where": [ - 4603 + 4599 ] } ], "system_alerts_aggregate": [ - 4600, + 4596, { "distinct_on": [ - 4613, + 4609, "[system_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4611, + 4607, "[system_alerts_order_by!]" ], "where": [ - 4603 + 4599 ] } ], "system_alerts_by_pk": [ - 4599, + 4595, { "id": [ - 5458, + 5454, "uuid!" ] } ], "teamCalendarUrl": [ - 91, + 92, { "team_id": [ - 5458, + 5454, "uuid!" ] } ], "team_invites": [ - 4626, + 4622, { "distinct_on": [ - 4647, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4645, + 4641, "[team_invites_order_by!]" ], "where": [ - 4635 + 4631 ] } ], "team_invites_aggregate": [ - 4627, + 4623, { "distinct_on": [ - 4647, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4645, + 4641, "[team_invites_order_by!]" ], "where": [ - 4635 + 4631 ] } ], "team_invites_by_pk": [ - 4626, + 4622, { "id": [ - 5458, + 5454, "uuid!" ] } ], "team_roster": [ - 4667, + 4663, { "distinct_on": [ - 4690, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4688, + 4684, "[team_roster_order_by!]" ], "where": [ - 4678 + 4674 ] } ], "team_roster_aggregate": [ - 4668, + 4664, { "distinct_on": [ - 4690, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4688, + 4684, "[team_roster_order_by!]" ], "where": [ - 4678 + 4674 ] } ], "team_roster_by_pk": [ - 4667, + 4663, { "player_steam_id": [ - 268, + 269, "bigint!" ], "team_id": [ - 5458, + 5454, "uuid!" ] } ], "team_scrim_alerts": [ - 4712, + 4708, { "distinct_on": [ - 4726, + 4722, "[team_scrim_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4724, + 4720, "[team_scrim_alerts_order_by!]" ], "where": [ - 4716 + 4712 ] } ], "team_scrim_alerts_aggregate": [ - 4713, + 4709, { "distinct_on": [ - 4726, + 4722, "[team_scrim_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4724, + 4720, "[team_scrim_alerts_order_by!]" ], "where": [ - 4716 + 4712 ] } ], "team_scrim_alerts_by_pk": [ - 4712, + 4708, { "id": [ - 5458, + 5454, "uuid!" ] } ], "team_scrim_availability": [ - 4739, + 4735, { "distinct_on": [ - 4759, + 4755, "[team_scrim_availability_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4757, + 4753, "[team_scrim_availability_order_by!]" ], "where": [ - 4748 + 4744 ] } ], "team_scrim_availability_aggregate": [ - 4740, + 4736, { "distinct_on": [ - 4759, + 4755, "[team_scrim_availability_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4757, + 4753, "[team_scrim_availability_order_by!]" ], "where": [ - 4748 + 4744 ] } ], "team_scrim_availability_by_pk": [ - 4739, + 4735, { "id": [ - 5458, + 5454, "uuid!" ] } ], "team_scrim_request_proposals": [ - 4767, + 4763, { "distinct_on": [ - 4788, + 4784, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4786, + 4782, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4776 + 4772 ] } ], "team_scrim_request_proposals_aggregate": [ - 4768, + 4764, { "distinct_on": [ - 4788, + 4784, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4786, + 4782, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4776 + 4772 ] } ], "team_scrim_request_proposals_by_pk": [ - 4767, + 4763, { "id": [ - 5458, + 5454, "uuid!" ] } ], "team_scrim_requests": [ - 4808, + 4804, { "distinct_on": [ - 4832, + 4828, "[team_scrim_requests_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4830, + 4826, "[team_scrim_requests_order_by!]" ], "where": [ - 4819 + 4815 ] } ], "team_scrim_requests_aggregate": [ - 4809, + 4805, { "distinct_on": [ - 4832, + 4828, "[team_scrim_requests_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4830, + 4826, "[team_scrim_requests_order_by!]" ], "where": [ - 4819 + 4815 ] } ], "team_scrim_requests_by_pk": [ - 4808, + 4804, { "id": [ - 5458, + 5454, "uuid!" ] } ], "team_scrim_settings": [ - 4854, + 4850, { "distinct_on": [ - 4869, + 4865, "[team_scrim_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4867, + 4863, "[team_scrim_settings_order_by!]" ], "where": [ - 4858 + 4854 ] } ], "team_scrim_settings_aggregate": [ - 4855, + 4851, { "distinct_on": [ - 4869, + 4865, "[team_scrim_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4867, + 4863, "[team_scrim_settings_order_by!]" ], "where": [ - 4858 + 4854 ] } ], "team_scrim_settings_by_pk": [ - 4854, + 4850, { "id": [ - 5458, + 5454, "uuid!" ] } ], "team_suggestions": [ - 4882, + 4878, { "distinct_on": [ - 4896, + 4892, "[team_suggestions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4894, + 4890, "[team_suggestions_order_by!]" ], "where": [ - 4886 + 4882 ] } ], "team_suggestions_aggregate": [ - 4883, + 4879, { "distinct_on": [ - 4896, + 4892, "[team_suggestions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4894, + 4890, "[team_suggestions_order_by!]" ], "where": [ - 4886 + 4882 ] } ], "team_suggestions_by_pk": [ - 4882, + 4878, { "id": [ - 5458, + 5454, "uuid!" ] } ], "teams": [ - 4909, + 4905, { "distinct_on": [ - 4933, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4931, + 4927, "[teams_order_by!]" ], "where": [ - 4920 + 4916 ] } ], "teams_aggregate": [ - 4910, + 4906, { "distinct_on": [ - 4933, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4931, + 4927, "[teams_order_by!]" ], "where": [ - 4920 + 4916 ] } ], "teams_by_pk": [ - 4909, + 4905, { "id": [ - 5458, + 5454, "uuid!" ] } ], "telemetryStats": [ - 101 + 102 ], "tournament_awards": [ - 4960, + 4956, { "distinct_on": [ - 4982, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4980, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4969 + 4965 ] } ], "tournament_awards_aggregate": [ - 4961, + 4957, { "distinct_on": [ - 4982, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4980, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4969 + 4965 ] } ], "tournament_awards_by_pk": [ - 4960, + 4956, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_brackets": [ - 5002, + 4998, { "distinct_on": [ - 5026, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5024, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 5013 + 5009 ] } ], "tournament_brackets_aggregate": [ - 5003, + 4999, { "distinct_on": [ - 5026, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5024, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 5013 + 5009 ] } ], "tournament_brackets_by_pk": [ - 5002, + 4998, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_categories": [ - 5048, + 5044, { "distinct_on": [ - 5066, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5064, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 5055 + 5051 ] } ], "tournament_categories_aggregate": [ - 5049, + 5045, { "distinct_on": [ - 5066, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5064, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 5055 + 5051 ] } ], "tournament_categories_by_pk": [ - 5048, + 5044, { "category": [ - 1464, + 1465, "e_tournament_categories_enum!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_organizer_teams": [ - 5072, + 5068, { "distinct_on": [ - 5090, + 5086, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5088, + 5084, "[tournament_organizer_teams_order_by!]" ], "where": [ - 5079 + 5075 ] } ], "tournament_organizer_teams_aggregate": [ - 5073, + 5069, { "distinct_on": [ - 5090, + 5086, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5088, + 5084, "[tournament_organizer_teams_order_by!]" ], "where": [ - 5079 + 5075 ] } ], "tournament_organizer_teams_by_pk": [ - 5072, + 5068, { "team_id": [ - 5458, + 5454, "uuid!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_organizers": [ - 5096, + 5092, { "distinct_on": [ - 5117, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5115, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 5105 + 5101 ] } ], "tournament_organizers_aggregate": [ - 5097, + 5093, { "distinct_on": [ - 5117, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5115, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 5105 + 5101 ] } ], "tournament_organizers_by_pk": [ - 5096, + 5092, { "steam_id": [ - 268, + 269, "bigint!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_prizes": [ - 5137, + 5133, { "distinct_on": [ - 5158, + 5154, "[tournament_prizes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5156, + 5152, "[tournament_prizes_order_by!]" ], "where": [ - 5146 + 5142 ] } ], "tournament_prizes_aggregate": [ - 5138, + 5134, { "distinct_on": [ - 5158, + 5154, "[tournament_prizes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5156, + 5152, "[tournament_prizes_order_by!]" ], "where": [ - 5146 + 5142 ] } ], "tournament_prizes_by_pk": [ - 5137, + 5133, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_stage_windows": [ - 5178, + 5174, { "distinct_on": [ - 5199, + 5195, "[tournament_stage_windows_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5197, + 5193, "[tournament_stage_windows_order_by!]" ], "where": [ - 5187 + 5183 ] } ], "tournament_stage_windows_aggregate": [ - 5179, + 5175, { "distinct_on": [ - 5199, + 5195, "[tournament_stage_windows_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5197, + 5193, "[tournament_stage_windows_order_by!]" ], "where": [ - 5187 + 5183 ] } ], "tournament_stage_windows_by_pk": [ - 5178, + 5174, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_stages": [ - 5219, + 5215, { "distinct_on": [ - 5248, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5245, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 5231 + 5227 ] } ], "tournament_stages_aggregate": [ - 5220, + 5216, { "distinct_on": [ - 5248, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5245, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 5231 + 5227 ] } ], "tournament_stages_by_pk": [ - 5219, + 5215, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_team_invites": [ - 5270, + 5266, { "distinct_on": [ - 5291, + 5287, "[tournament_team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5289, + 5285, "[tournament_team_invites_order_by!]" ], "where": [ - 5279 + 5275 ] } ], "tournament_team_invites_aggregate": [ - 5271, + 5267, { "distinct_on": [ - 5291, + 5287, "[tournament_team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5289, + 5285, "[tournament_team_invites_order_by!]" ], "where": [ - 5279 + 5275 ] } ], "tournament_team_invites_by_pk": [ - 5270, + 5266, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_team_roster": [ - 5311, + 5307, { "distinct_on": [ - 5332, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5330, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5320 + 5316 ] } ], "tournament_team_roster_aggregate": [ - 5312, + 5308, { "distinct_on": [ - 5332, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5330, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5320 + 5316 ] } ], "tournament_team_roster_by_pk": [ - 5311, + 5307, { "player_steam_id": [ - 268, + 269, "bigint!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_teams": [ - 5352, + 5348, { "distinct_on": [ - 5374, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5372, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5361 + 5357 ] } ], "tournament_teams_aggregate": [ - 5353, + 5349, { "distinct_on": [ - 5374, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5372, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5361 + 5357 ] } ], "tournament_teams_by_pk": [ - 5352, + 5348, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournaments": [ - 5394, + 5390, { "distinct_on": [ - 5428, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5426, + 5422, "[tournaments_order_by!]" ], "where": [ - 5415 + 5411 ] } ], "tournaments_aggregate": [ - 5395, + 5391, { "distinct_on": [ - 5428, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5426, + 5422, "[tournaments_order_by!]" ], "where": [ - 5415 + 5411 ] } ], "tournaments_by_pk": [ - 5394, + 5390, { "id": [ - 5458, + 5454, "uuid!" ] } ], "v_event_player_stats": [ - 5461, + 5457, { "distinct_on": [ - 5487, + 5483, "[v_event_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5486, + 5482, "[v_event_player_stats_order_by!]" ], "where": [ - 5480 + 5476 ] } ], "v_event_player_stats_aggregate": [ - 5462, + 5458, { "distinct_on": [ - 5487, + 5483, "[v_event_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5486, + 5482, "[v_event_player_stats_order_by!]" ], "where": [ - 5480 + 5476 ] } ], "v_gpu_pool_status": [ - 5512, + 5508, { "distinct_on": [ - 5520, + 5516, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5519, + 5515, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5516 + 5512 ] } ], "v_gpu_pool_status_aggregate": [ - 5513, + 5509, { "distinct_on": [ - 5520, + 5516, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5519, + 5515, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5516 + 5512 ] } ], "v_league_division_standings": [ - 5530, + 5526, { "distinct_on": [ - 5546, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5545, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5539 + 5535 ] } ], "v_league_division_standings_aggregate": [ - 5531, + 5527, { "distinct_on": [ - 5546, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5545, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5539 + 5535 ] } ], "v_league_season_player_stats": [ - 5563, + 5559, { "distinct_on": [ - 5589, + 5585, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5588, + 5584, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5582 + 5578 ] } ], "v_league_season_player_stats_aggregate": [ - 5564, + 5560, { "distinct_on": [ - 5589, + 5585, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5588, + 5584, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5582 + 5578 ] } ], "v_match_captains": [ - 5614, + 5610, { "distinct_on": [ - 5626, + 5622, "[v_match_captains_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5625, + 5621, "[v_match_captains_order_by!]" ], "where": [ - 5618 + 5614 ] } ], "v_match_captains_aggregate": [ - 5615, + 5611, { "distinct_on": [ - 5626, + 5622, "[v_match_captains_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5625, + 5621, "[v_match_captains_order_by!]" ], "where": [ - 5618 + 5614 ] } ], "v_match_clutches": [ - 5638, + 5634, { "distinct_on": [ - 5654, + 5650, "[v_match_clutches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5653, + 5649, "[v_match_clutches_order_by!]" ], "where": [ - 5647 + 5643 ] } ], "v_match_clutches_aggregate": [ - 5639, + 5635, { "distinct_on": [ - 5654, + 5650, "[v_match_clutches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5653, + 5649, "[v_match_clutches_order_by!]" ], "where": [ - 5647 + 5643 ] } ], "v_match_kill_pairs": [ - 5671, + 5667, { "distinct_on": [ - 5679, + 5675, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5678, + 5674, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5675 + 5671 ] } ], "v_match_kill_pairs_aggregate": [ - 5672, + 5668, { "distinct_on": [ - 5679, + 5675, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5678, + 5674, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5675 + 5671 ] } ], "v_match_lineup_buy_types": [ - 5689, + 5685, { "distinct_on": [ - 5697, + 5693, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5696, + 5692, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5693 + 5689 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5690, + 5686, { "distinct_on": [ - 5697, + 5693, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5696, + 5692, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5693 + 5689 ] } ], "v_match_lineup_map_stats": [ - 5707, + 5703, { "distinct_on": [ - 5715, + 5711, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5714, + 5710, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5711 + 5707 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5708, + 5704, { "distinct_on": [ - 5715, + 5711, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5714, + 5710, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5711 + 5707 ] } ], "v_match_map_backup_rounds": [ - 5725, + 5721, { "distinct_on": [ - 5736, + 5732, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5735, + 5731, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5729 + 5725 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5726, + 5722, { "distinct_on": [ - 5736, + 5732, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5735, + 5731, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5729 + 5725 ] } ], "v_match_player_buy_types": [ - 5748, + 5744, { "distinct_on": [ - 5756, + 5752, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5755, + 5751, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5752 + 5748 ] } ], "v_match_player_buy_types_aggregate": [ - 5749, + 5745, { "distinct_on": [ - 5756, + 5752, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5755, + 5751, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5752 + 5748 ] } ], "v_match_player_opening_duels": [ - 5766, + 5762, { "distinct_on": [ - 5782, + 5778, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5781, + 5777, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5775 + 5771 ] } ], "v_match_player_opening_duels_aggregate": [ - 5767, + 5763, { "distinct_on": [ - 5782, + 5778, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5781, + 5777, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5775 + 5771 ] } ], "v_player_arch_nemesis": [ - 5799, + 5795, { "distinct_on": [ - 5807, + 5803, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5806, + 5802, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5803 + 5799 ] } ], "v_player_arch_nemesis_aggregate": [ - 5800, + 5796, { "distinct_on": [ - 5807, + 5803, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5806, + 5802, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5803 + 5799 ] } ], "v_player_damage": [ - 5817, + 5813, { "distinct_on": [ - 5825, + 5821, "[v_player_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5824, + 5820, "[v_player_damage_order_by!]" ], "where": [ - 5821 + 5817 ] } ], "v_player_damage_aggregate": [ - 5818, + 5814, { "distinct_on": [ - 5825, + 5821, "[v_player_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5824, + 5820, "[v_player_damage_order_by!]" ], "where": [ - 5821 + 5817 ] } ], "v_player_elo": [ - 5835, + 5831, { "distinct_on": [ - 5861, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5860, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5854 + 5850 ] } ], "v_player_elo_aggregate": [ - 5836, + 5832, { "distinct_on": [ - 5861, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5860, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5854 + 5850 ] } ], "v_player_map_losses": [ - 5886, + 5882, { "distinct_on": [ - 5894, + 5890, "[v_player_map_losses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5893, + 5889, "[v_player_map_losses_order_by!]" ], "where": [ - 5890 + 5886 ] } ], "v_player_map_losses_aggregate": [ - 5887, + 5883, { "distinct_on": [ - 5894, + 5890, "[v_player_map_losses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5893, + 5889, "[v_player_map_losses_order_by!]" ], "where": [ - 5890 + 5886 ] } ], "v_player_map_wins": [ - 5904, + 5900, { "distinct_on": [ - 5912, + 5908, "[v_player_map_wins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5911, + 5907, "[v_player_map_wins_order_by!]" ], "where": [ - 5908 + 5904 ] } ], "v_player_map_wins_aggregate": [ - 5905, + 5901, { "distinct_on": [ - 5912, + 5908, "[v_player_map_wins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5911, + 5907, "[v_player_map_wins_order_by!]" ], "where": [ - 5908 + 5904 ] } ], "v_player_match_head_to_head": [ - 5922, + 5918, { "distinct_on": [ - 5930, + 5926, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5929, + 5925, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5926 + 5922 ] } ], "v_player_match_head_to_head_aggregate": [ - 5923, + 5919, { "distinct_on": [ - 5930, + 5926, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5929, + 5925, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5926 + 5922 ] } ], "v_player_match_map_hltv": [ - 5940, + 5936, { "distinct_on": [ - 5958, + 5954, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5957, + 5953, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5949 + 5945 ] } ], "v_player_match_map_hltv_aggregate": [ - 5941, + 5937, { "distinct_on": [ - 5958, + 5954, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5957, + 5953, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5949 + 5945 ] } ], "v_player_match_map_roles": [ - 5977, + 5973, { "distinct_on": [ - 5985, + 5981, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5984, + 5980, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5981 + 5977 ] } ], "v_player_match_map_roles_aggregate": [ - 5978, + 5974, { "distinct_on": [ - 5985, + 5981, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5984, + 5980, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5981 + 5977 ] } ], "v_player_match_performance": [ - 5995, + 5991, { "distinct_on": [ - 6003, + 5999, "[v_player_match_performance_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6002, + 5998, "[v_player_match_performance_order_by!]" ], "where": [ - 5999 + 5995 ] } ], "v_player_match_performance_aggregate": [ - 5996, + 5992, { "distinct_on": [ - 6003, + 5999, "[v_player_match_performance_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6002, + 5998, "[v_player_match_performance_order_by!]" ], "where": [ - 5999 + 5995 ] } ], "v_player_match_rating": [ - 6013, + 6009, { "distinct_on": [ - 6021, + 6017, "[v_player_match_rating_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6020, + 6016, "[v_player_match_rating_order_by!]" ], "where": [ - 6017 + 6013 ] } ], "v_player_match_rating_aggregate": [ - 6014, + 6010, { "distinct_on": [ - 6021, + 6017, "[v_player_match_rating_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6020, + 6016, "[v_player_match_rating_order_by!]" ], "where": [ - 6017 + 6013 ] } ], "v_player_multi_kills": [ - 6031, + 6027, { "distinct_on": [ - 6047, + 6043, "[v_player_multi_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6046, + 6042, "[v_player_multi_kills_order_by!]" ], "where": [ - 6040 + 6036 ] } ], "v_player_multi_kills_aggregate": [ - 6032, + 6028, { "distinct_on": [ - 6047, + 6043, "[v_player_multi_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6046, + 6042, "[v_player_multi_kills_order_by!]" ], "where": [ - 6040 + 6036 ] } ], "v_player_queue_partners": [ - 6064, + 6060, { "distinct_on": [ - 6072, + 6068, "[v_player_queue_partners_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6071, + 6067, "[v_player_queue_partners_order_by!]" ], "where": [ - 6068 + 6064 ] } ], "v_player_queue_partners_aggregate": [ - 6065, + 6061, { "distinct_on": [ - 6072, + 6068, "[v_player_queue_partners_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6071, + 6067, "[v_player_queue_partners_order_by!]" ], "where": [ - 6068 + 6064 ] } ], "v_player_weapon_damage": [ - 6082, + 6078, { "distinct_on": [ - 6090, + 6086, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6089, + 6085, "[v_player_weapon_damage_order_by!]" ], "where": [ - 6086 + 6082 ] } ], "v_player_weapon_damage_aggregate": [ - 6083, + 6079, { "distinct_on": [ - 6090, + 6086, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6089, + 6085, "[v_player_weapon_damage_order_by!]" ], "where": [ - 6086 + 6082 ] } ], "v_player_weapon_kills": [ - 6100, + 6096, { "distinct_on": [ - 6108, + 6104, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6107, + 6103, "[v_player_weapon_kills_order_by!]" ], "where": [ - 6104 + 6100 ] } ], "v_player_weapon_kills_aggregate": [ - 6101, + 6097, { "distinct_on": [ - 6108, + 6104, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6107, + 6103, "[v_player_weapon_kills_order_by!]" ], "where": [ - 6104 + 6100 ] } ], "v_pool_maps": [ - 6118, + 6114, { "distinct_on": [ - 6135, + 6131, "[v_pool_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6134, + 6130, "[v_pool_maps_order_by!]" ], "where": [ - 6127 + 6123 ] } ], "v_pool_maps_aggregate": [ - 6119, + 6115, { "distinct_on": [ - 6135, + 6131, "[v_pool_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6134, + 6130, "[v_pool_maps_order_by!]" ], "where": [ - 6127 + 6123 ] } ], "v_steam_account_pool_status": [ - 6142, + 6138, { "distinct_on": [ - 6150, + 6146, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6149, + 6145, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 6146 + 6142 ] } ], "v_steam_account_pool_status_aggregate": [ - 6143, + 6139, { "distinct_on": [ - 6150, + 6146, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6149, + 6145, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 6146 + 6142 ] } ], "v_team_ranks": [ - 6160, + 6156, { "distinct_on": [ - 6170, + 6166, "[v_team_ranks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6169, + 6165, "[v_team_ranks_order_by!]" ], "where": [ - 6164 + 6160 ] } ], "v_team_ranks_aggregate": [ - 6161, + 6157, { "distinct_on": [ - 6170, + 6166, "[v_team_ranks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6169, + 6165, "[v_team_ranks_order_by!]" ], "where": [ - 6164 + 6160 ] } ], "v_team_reputation": [ - 6180, + 6176, { "distinct_on": [ - 6190, + 6186, "[v_team_reputation_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6189, + 6185, "[v_team_reputation_order_by!]" ], "where": [ - 6184 + 6180 ] } ], "v_team_reputation_aggregate": [ - 6181, + 6177, { "distinct_on": [ - 6190, + 6186, "[v_team_reputation_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6189, + 6185, "[v_team_reputation_order_by!]" ], "where": [ - 6184 + 6180 ] } ], "v_team_stage_results": [ - 6200, + 6196, { "distinct_on": [ - 6232, + 6228, "[v_team_stage_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6230, + 6226, "[v_team_stage_results_order_by!]" ], "where": [ - 6219 + 6215 ] } ], "v_team_stage_results_aggregate": [ - 6201, + 6197, { "distinct_on": [ - 6232, + 6228, "[v_team_stage_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6230, + 6226, "[v_team_stage_results_order_by!]" ], "where": [ - 6219 + 6215 ] } ], "v_team_stage_results_by_pk": [ - 6200, + 6196, { "tournament_stage_id": [ - 5458, + 5454, "uuid!" ], "tournament_team_id": [ - 5458, + 5454, "uuid!" ] } ], "v_team_tournament_results": [ - 6260, + 6256, { "distinct_on": [ - 6286, + 6282, "[v_team_tournament_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6285, + 6281, "[v_team_tournament_results_order_by!]" ], "where": [ - 6279 + 6275 ] } ], "v_team_tournament_results_aggregate": [ - 6261, + 6257, { "distinct_on": [ - 6286, + 6282, "[v_team_tournament_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6285, + 6281, "[v_team_tournament_results_order_by!]" ], "where": [ - 6279 + 6275 ] } ], "v_tournament_player_stats": [ - 6311, + 6307, { "distinct_on": [ - 6337, + 6333, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6336, + 6332, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6330 + 6326 ] } ], "v_tournament_player_stats_aggregate": [ - 6312, + 6308, { "distinct_on": [ - 6337, + 6333, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6336, + 6332, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6330 + 6326 ] } ], "webPushStatus": [ - 110 + 111 ], "__typename": [ - 83 + 84 ] }, "Mutation": { "PreviewTournamentMatchReset": [ - 59, + 60, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "ResetTournamentMatch": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ], "reset_status": [ - 83 + 84 ], "scheduled_at": [ - 4958 + 4954 ], "winning_lineup_id": [ - 5458 + 5454 ] } ], "acceptInvite": [ - 86, + 87, { "invite_id": [ - 5458, + 5454, "uuid!" ], "type": [ - 83, + 84, + "String!" + ] + } + ], + "addCustomGamePlugin": [ + 2, + { + "description": [ + 84 + ], + "installPath": [ + 84 + ], + "layout": [ + 84 + ], + "name": [ + 84 + ], + "runtime": [ + 84, + "String!" + ], + "slug": [ + 84 + ], + "url": [ + 84, "String!" + ], + "version": [ + 84 ] } ], "addDraftPlayer": [ - 86, + 87, { "draftGameId": [ - 5458, + 5454, "uuid!" ], "lineup": [ - 40 + 41 ], "steamId": [ - 83, + 84, "String!" ] } ], "addSteamPresenceBotAccount": [ - 86, + 87, { "bot_secret": [ - 83, + 84, "String!" ], "friend_capacity": [ - 40 + 41 ], "username": [ - 83, + 84, "String!" ] } ], "approveNameChange": [ - 86, + 87, { "name": [ - 83, + 84, "String!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "approve_league_season_movements": [ - 2427, + 2423, { "args": [ - 198, + 199, "approve_league_season_movements_args!" ], "distinct_on": [ - 2448, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2446, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2436 + 2432 ] } ], "assignSteamPresenceBot": [ - 79 + 80 ], "attachDemo": [ - 108 + 109 ], "backfillSeasonElo": [ - 62, + 63, { "season_id": [ - 83, + 84, "String!" ] } ], "backfillSeasonEloStatus": [ - 72 + 73 ], "bakeShaders": [ - 86, + 87, { "game_server_node_id": [ - 5458, + 5454, "uuid!" ] } ], "callForOrganizer": [ - 86, + 87, { "match_id": [ - 83, + 84, "String!" ] } ], "cancelBackfillSeasonElo": [ - 86 + 87 ], "cancelBakeShaders": [ - 86, + 87, { "game_server_node_id": [ - 5458, + 5454, "uuid!" ] } ], "cancelClipRender": [ - 86, + 87, { "job_id": [ - 5458, + 5454, "uuid!" ] } ], "cancelClipRenderBatch": [ - 86, + 87, { "match_map_id": [ - 5458, + 5454, "uuid!" ] } ], "cancelMatch": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "cancelRecomputePlayerElo": [ - 86 + 87 ], "cancelRefreshAllPlayers": [ - 86 + 87 ], "cancelReparseAllDemos": [ - 86 + 87 ], "cancelScrimRequest": [ - 86, + 87, { "request_id": [ - 5458, + 5454, "uuid!" ] } ], "checkIntoMatch": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "clearClipRenderBatch": [ - 86, + 87, { "match_map_id": [ - 5458, + 5454, "uuid!" ] } ], "clearFinishedClipRenders": [ - 86 + 87 ], "clearPendingMatchImport": [ - 55, + 56, { "valve_match_id": [ - 83, + 84, "String!" ] } ], "clone_league_season": [ - 2394, + 2390, { "args": [ - 350, + 351, "clone_league_season_args!" ], "distinct_on": [ - 2414, + 2410, "[league_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2411, + 2407, "[league_seasons_order_by!]" ], "where": [ - 2399 + 2395 ] } ], "counterScrimRequest": [ - 86, + 87, { "proposed_scheduled_at": [ - 4958, + 4954, "timestamptz!" ], "request_id": [ - 5458, + 5454, "uuid!" ] } ], "createApiKey": [ - 2, + 3, { "label": [ - 83, + 84, "String!" ] } ], "createClipFromPreset": [ - 15, + 16, { "fps": [ - 40 + 41 ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "preset": [ - 83, + 84, "String!" ], "resolution": [ - 83 + 84 ], "target_name": [ - 83 + 84 ], "target_steam_id": [ - 83, + 84, "String!" ], "title": [ - 83 + 84 ] } ], "createClipRender": [ - 15, + 16, { "spec": [ - 11, + 12, "ClipSpecInput!" ] } ], "createClips": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "createDraftGame": [ - 16, + 17, { "settings": [ - 2191, + 2187, "jsonb!" ] } ], "createScheduledMatch": [ - 17, + 18, { "lineup_1": [ - 71, + 72, "ScheduledLineupInput!" ], "lineup_2": [ - 71, + 72, "ScheduledLineupInput!" ], "options": [ - 2191, + 2187, "jsonb!" ], "scheduled_at": [ - 83, + 84, "String!" ] } ], "createServerDirectory": [ - 86, + 87, { "dir_path": [ - 83, + 84, "String!" ], "node_id": [ - 83, + 84, "String!" ], "server_id": [ - 83 + 84 ] } ], "deleteAward": [ - 86, + 87, { "id": [ - 5458, + 5454, "uuid!" ] } ], "deleteClip": [ - 86, + 87, { "clip_id": [ - 5458, + 5454, "uuid!" ] } ], "deleteMatch": [ - 86, + 87, { "match_id": [ - 83, + 84, "String!" ] } ], "deleteNewsPost": [ - 86, + 87, { "id": [ - 5458, + 5454, "uuid!" ] } ], "deleteOrphanedDemos": [ - 21, + 22, { "keys": [ - 83, + 84, "[String!]" ] } ], "deleteServerItem": [ - 86, + 87, { "node_id": [ - 83, + 84, "String!" ], "path": [ - 83, + 84, "String!" ], "server_id": [ - 83 + 84 ] } ], "deleteTournament": [ - 86, + 87, { "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "delete__map_pool": [ - 119, + 120, { "where": [ - 114, + 115, "_map_pool_bool_exp!" ] } ], "delete__map_pool_by_pk": [ - 111, + 112, { "map_id": [ - 5458, + 5454, "uuid!" ], "map_pool_id": [ - 5458, + 5454, "uuid!" ] } ], "delete_abandoned_matches": [ - 147, + 148, { "where": [ - 139, + 140, "abandoned_matches_bool_exp!" ] } ], "delete_abandoned_matches_by_pk": [ - 130, + 131, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_api_keys": [ - 181, + 182, { "where": [ - 175, + 176, "api_keys_bool_exp!" ] } ], "delete_api_keys_by_pk": [ - 171, + 172, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_award_recipients": [ - 216, + 217, { "where": [ - 208, + 209, "award_recipients_bool_exp!" ] } ], "delete_award_recipients_by_pk": [ - 199, + 200, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_awards": [ - 250, + 251, { "where": [ - 244, + 245, "awards_bool_exp!" ] } ], "delete_awards_by_pk": [ - 240, + 241, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_chat_read_state": [ - 283, + 284, { "where": [ - 277, + 278, "chat_read_state_bool_exp!" ] } ], "delete_chat_read_state_by_pk": [ - 273, + 274, { "steam_id": [ - 268, + 269, "bigint!" ], "thread": [ - 83, + 84, "String!" ] } ], "delete_clip_render_jobs": [ - 323, + 324, { "where": [ - 312, + 313, "clip_render_jobs_bool_exp!" ] } ], "delete_clip_render_jobs_by_pk": [ - 300, + 301, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_custom_pages": [ - 366, + 367, { "where": [ - 357, + 358, "custom_pages_bool_exp!" ] } ], "delete_custom_pages_by_pk": [ - 352, + 353, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_db_backups": [ - 394, + 395, { "where": [ - 388, + 389, "db_backups_bool_exp!" ] } ], "delete_db_backups_by_pk": [ - 384, + 385, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_direct_conversations": [ - 421, + 422, { "where": [ - 415, + 416, "direct_conversations_bool_exp!" ] } ], "delete_direct_conversations_by_pk": [ - 411, + 412, { "room_id": [ - 83, + 84, "String!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_direct_messages": [ - 448, + 449, { "where": [ - 442, + 443, "direct_messages_bool_exp!" ] } ], "delete_direct_messages_by_pk": [ - 438, + 439, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_draft_game_picks": [ - 484, + 485, { "where": [ - 476, + 477, "draft_game_picks_bool_exp!" ] } ], "delete_draft_game_picks_by_pk": [ - 465, + 466, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_draft_game_players": [ - 529, + 530, { "where": [ - 521, + 522, "draft_game_players_bool_exp!" ] } ], "delete_draft_game_players_by_pk": [ - 510, + 511, { "draft_game_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_draft_games": [ - 574, + 575, { "where": [ - 566, + 567, "draft_games_bool_exp!" ] } ], "delete_draft_games_by_pk": [ - 555, + 556, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_e_award_sources": [ - 611, + 612, { "where": [ - 604, + 605, "e_award_sources_bool_exp!" ] } ], "delete_e_award_sources_by_pk": [ - 601, + 602, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_award_tiers": [ - 631, + 632, { "where": [ - 624, + 625, "e_award_tiers_bool_exp!" ] } ], "delete_e_award_tiers_by_pk": [ - 621, + 622, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_check_in_settings": [ - 651, + 652, { "where": [ - 644, + 645, "e_check_in_settings_bool_exp!" ] } ], "delete_e_check_in_settings_by_pk": [ - 641, + 642, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_draft_game_captain_selection": [ - 671, + 672, { "where": [ - 664, + 665, "e_draft_game_captain_selection_bool_exp!" ] } ], "delete_e_draft_game_captain_selection_by_pk": [ - 661, + 662, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_draft_game_draft_order": [ - 692, + 693, { "where": [ - 685, + 686, "e_draft_game_draft_order_bool_exp!" ] } ], "delete_e_draft_game_draft_order_by_pk": [ - 682, + 683, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_draft_game_mode": [ - 713, + 714, { "where": [ - 706, + 707, "e_draft_game_mode_bool_exp!" ] } ], "delete_e_draft_game_mode_by_pk": [ - 703, + 704, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_draft_game_player_status": [ - 734, + 735, { "where": [ - 727, + 728, "e_draft_game_player_status_bool_exp!" ] } ], "delete_e_draft_game_player_status_by_pk": [ - 724, + 725, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_draft_game_status": [ - 755, + 756, { "where": [ - 748, + 749, "e_draft_game_status_bool_exp!" ] } ], "delete_e_draft_game_status_by_pk": [ - 745, + 746, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_event_media_access": [ - 776, + 777, { "where": [ - 769, + 770, "e_event_media_access_bool_exp!" ] } ], "delete_e_event_media_access_by_pk": [ - 766, + 767, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_event_visibility": [ - 796, + 797, { "where": [ - 789, + 790, "e_event_visibility_bool_exp!" ] } ], "delete_e_event_visibility_by_pk": [ - 786, + 787, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_friend_status": [ - 816, + 817, { "where": [ - 809, + 810, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 806, + 807, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_game_cfg_types": [ - 837, + 838, { "where": [ - 830, + 831, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 827, + 828, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_game_plugin_channels": [ - 857, + 858, { "where": [ - 850, + 851, "e_game_plugin_channels_bool_exp!" ] } ], "delete_e_game_plugin_channels_by_pk": [ - 847, + 848, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_game_plugin_install_statuses": [ - 877, + 878, { "where": [ - 870, + 871, "e_game_plugin_install_statuses_bool_exp!" ] } ], "delete_e_game_plugin_install_statuses_by_pk": [ - 867, + 868, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_game_plugin_kinds": [ - 897, + 898, { "where": [ - 890, + 891, "e_game_plugin_kinds_bool_exp!" ] } ], "delete_e_game_plugin_kinds_by_pk": [ - 887, + 888, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_game_server_node_statuses": [ - 917, + 918, { "where": [ - 910, + 911, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 907, + 908, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_league_movement_types": [ - 938, + 939, { "where": [ - 931, + 932, "e_league_movement_types_bool_exp!" ] } ], "delete_e_league_movement_types_by_pk": [ - 928, + 929, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_league_proposal_statuses": [ - 959, + 960, { "where": [ - 952, + 953, "e_league_proposal_statuses_bool_exp!" ] } ], "delete_e_league_proposal_statuses_by_pk": [ - 949, + 950, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_league_registration_statuses": [ - 980, + 981, { "where": [ - 973, + 974, "e_league_registration_statuses_bool_exp!" ] } ], "delete_e_league_registration_statuses_by_pk": [ - 970, + 971, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_league_season_statuses": [ - 1001, + 1002, { "where": [ - 994, + 995, "e_league_season_statuses_bool_exp!" ] } ], "delete_e_league_season_statuses_by_pk": [ - 991, + 992, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_lobby_access": [ - 1022, + 1023, { "where": [ - 1015, + 1016, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 1012, + 1013, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_lobby_player_status": [ - 1043, + 1044, { "where": [ - 1036, + 1037, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 1033, + 1034, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_map_pool_types": [ - 1063, + 1064, { "where": [ - 1056, + 1057, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 1053, + 1054, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_match_clip_visibility": [ - 1084, + 1085, { "where": [ - 1077, + 1078, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 1074, + 1075, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_match_map_status": [ - 1104, + 1105, { "where": [ - 1097, + 1098, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 1094, + 1095, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_match_mode": [ - 1125, + 1126, { "where": [ - 1118, + 1119, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 1115, + 1116, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_match_party_sources": [ - 1145, + 1146, { "where": [ - 1138, + 1139, "e_match_party_sources_bool_exp!" ] } ], "delete_e_match_party_sources_by_pk": [ - 1135, + 1136, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_match_status": [ - 1165, + 1166, { "where": [ - 1158, + 1159, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 1155, + 1156, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_match_types": [ - 1186, + 1187, { "where": [ - 1179, + 1180, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 1176, + 1177, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_notification_types": [ - 1207, + 1208, { "where": [ - 1200, + 1201, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 1197, + 1198, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_objective_types": [ - 1227, + 1228, { "where": [ - 1220, + 1221, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 1217, + 1218, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_player_roles": [ - 1247, + 1248, { "where": [ - 1240, + 1241, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 1237, + 1238, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_plugin_runtimes": [ - 1267, + 1268, { "where": [ - 1260, + 1261, "e_plugin_runtimes_bool_exp!" ] } ], "delete_e_plugin_runtimes_by_pk": [ - 1257, + 1258, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_ready_settings": [ - 1287, + 1288, { "where": [ - 1280, + 1281, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 1277, + 1278, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_sanction_types": [ - 1307, + 1308, { "where": [ - 1300, + 1301, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 1297, + 1298, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_scrim_request_statuses": [ - 1328, + 1329, { "where": [ - 1321, + 1322, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 1318, + 1319, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_server_types": [ - 1348, + 1349, { "where": [ - 1341, + 1342, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 1338, + 1339, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_sides": [ - 1368, + 1369, { "where": [ - 1361, + 1362, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 1358, + 1359, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_system_alert_types": [ - 1388, + 1389, { "where": [ - 1381, + 1382, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 1378, + 1379, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_team_roles": [ - 1408, + 1409, { "where": [ - 1401, + 1402, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 1398, + 1399, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_team_roster_statuses": [ - 1429, + 1430, { "where": [ - 1422, + 1423, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 1419, + 1420, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_timeout_settings": [ - 1449, + 1450, { "where": [ - 1442, + 1443, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 1439, + 1440, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_tournament_categories": [ - 1469, + 1470, { "where": [ - 1462, + 1463, "e_tournament_categories_bool_exp!" ] } ], "delete_e_tournament_categories_by_pk": [ - 1459, + 1460, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_tournament_stage_types": [ - 1490, + 1491, { "where": [ - 1483, + 1484, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 1480, + 1481, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_tournament_status": [ - 1511, + 1512, { "where": [ - 1504, + 1505, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1501, + 1502, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_utility_types": [ - 1532, + 1533, { "where": [ - 1525, + 1526, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1522, + 1523, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_veto_pick_types": [ - 1552, + 1553, { "where": [ - 1545, + 1546, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1542, + 1543, { "value": [ - 83, + 84, "String!" ] } ], "delete_e_winning_reasons": [ - 1572, + 1573, { "where": [ - 1565, + 1566, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1562, + 1563, { "value": [ - 83, + 84, "String!" ] } ], "delete_event_match_links": [ - 1590, + 1591, { "where": [ - 1585, + 1586, "event_match_links_bool_exp!" ] } ], "delete_event_match_links_by_pk": [ - 1582, + 1583, { "event_id": [ - 5458, + 5454, "uuid!" ], "match_id": [ - 5458, + 5454, "uuid!" ] } ], "delete_event_media": [ - 1617, + 1618, { "where": [ - 1609, + 1610, "event_media_bool_exp!" ] } ], "delete_event_media_by_pk": [ - 1600, + 1601, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_event_media_players": [ - 1639, + 1640, { "where": [ - 1631, + 1632, "event_media_players_bool_exp!" ] } ], "delete_event_media_players_by_pk": [ - 1622, + 1623, { "media_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_event_organizers": [ - 1700, + 1701, { "where": [ - 1692, + 1693, "event_organizers_bool_exp!" ] } ], "delete_event_organizers_by_pk": [ - 1683, + 1684, { "event_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_event_players": [ - 1741, + 1742, { "where": [ - 1733, + 1734, "event_players_bool_exp!" ] } ], "delete_event_players_by_pk": [ - 1724, + 1725, { "event_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_event_teams": [ - 1779, + 1780, { "where": [ - 1772, + 1773, "event_teams_bool_exp!" ] } ], "delete_event_teams_by_pk": [ - 1765, + 1766, { "event_id": [ - 5458, + 5454, "uuid!" ], "team_id": [ - 5458, + 5454, "uuid!" ] } ], "delete_event_tournaments": [ - 1803, + 1804, { "where": [ - 1796, + 1797, "event_tournaments_bool_exp!" ] } ], "delete_event_tournaments_by_pk": [ - 1789, + 1790, { "event_id": [ - 5458, + 5454, "uuid!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "delete_events": [ - 1823, + 1824, { "where": [ - 1817, + 1818, "events_bool_exp!" ] } ], "delete_events_by_pk": [ - 1813, + 1814, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_friends": [ - 1853, + 1854, { "where": [ - 1847, + 1848, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1843, + 1844, { "other_player_steam_id": [ - 268, + 269, "bigint!" ], "player_steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_game_mode_plugins": [ - 1893, + 1894, { "where": [ - 1882, + 1883, "game_mode_plugins_bool_exp!" ] } ], "delete_game_mode_plugins_by_pk": [ - 1870, + 1871, { "game_mode_id": [ - 5458, + 5454, "uuid!" ], "plugin_slug": [ - 83, + 84, "String!" ] } ], "delete_game_modes": [ - 1932, + 1929, { "where": [ 1924, @@ -158175,9679 +158169,9664 @@ export default { } ], "delete_game_modes_by_pk": [ - 1920, + 1921, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_game_plugin_installs": [ - 1952, + 1948, { "where": [ - 1947, + 1943, "game_plugin_installs_bool_exp!" ] } ], "delete_game_plugin_installs_by_pk": [ - 1944, + 1940, { "plugin_slug": [ - 83, + 84, "String!" ] } ], "delete_game_plugin_versions": [ - 1981, + 1977, { "where": [ - 1973, + 1969, "game_plugin_versions_bool_exp!" ] } ], "delete_game_plugin_versions_by_pk": [ - 1962, + 1958, { "plugin_slug": [ - 83, + 84, "String!" ], "runtime": [ - 1262, + 1263, "e_plugin_runtimes_enum!" ], "version": [ - 83, + 84, "String!" ] } ], "delete_game_plugins": [ - 2020, + 2016, { "where": [ - 2012, + 2008, "game_plugins_bool_exp!" ] } ], "delete_game_plugins_by_pk": [ - 2007, + 2003, { "slug": [ - 83, + 84, "String!" ] } ], "delete_game_server_node_plugins": [ - 2055, + 2051, { "where": [ - 2048, + 2044, "game_server_node_plugins_bool_exp!" ] } ], "delete_game_server_node_plugins_by_pk": [ - 2039, + 2035, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_game_server_nodes": [ - 2090, + 2086, { "where": [ - 2079, + 2075, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 2067, + 2063, { "id": [ - 83, + 84, "String!" ] } ], "delete_game_versions": [ - 2132, + 2128, { "where": [ - 2123, + 2119, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 2118, + 2114, { "build_id": [ - 40, + 41, "Int!" ] } ], "delete_gamedata_signature_validations": [ - 2165, + 2161, { "where": [ - 2156, + 2152, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 2151, + 2147, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_leaderboard_entries": [ - 2203, + 2199, { "where": [ - 2198, + 2194, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 2228, + 2224, { "where": [ - 2222, + 2218, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 2218, + 2214, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_league_match_weeks": [ - 2263, + 2259, { "where": [ - 2255, + 2251, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 2246, + 2242, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 2304, + 2300, { "where": [ - 2296, + 2292, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 2287, + 2283, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 2345, + 2341, { "where": [ - 2337, + 2333, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 2328, + 2324, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_league_season_divisions": [ - 2383, + 2379, { "where": [ - 2376, + 2372, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 2369, + 2365, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_league_seasons": [ - 2408, + 2404, { "where": [ - 2399, + 2395, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 2394, + 2390, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_league_team_movements": [ - 2444, + 2440, { "where": [ - 2436, + 2432, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 2427, + 2423, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_league_team_rosters": [ - 2485, + 2481, { "where": [ - 2477, + 2473, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 2468, + 2464, { "league_team_season_id": [ - 5458, + 5454, "uuid!" ], "player_steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_league_team_seasons": [ - 2526, + 2522, { "where": [ - 2518, + 2514, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 2509, + 2505, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_league_teams": [ - 2559, + 2555, { "where": [ - 2554, + 2550, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 2551, + 2547, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_lobbies": [ - 2578, + 2574, { "where": [ - 2573, + 2569, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 2570, + 2566, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_lobby_players": [ - 2608, + 2604, { "where": [ - 2600, + 2596, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 2589, + 2585, { "lobby_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_map_pools": [ - 2642, + 2638, { "where": [ - 2637, + 2633, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 2634, + 2630, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_maps": [ - 2669, + 2665, { "where": [ - 2662, + 2658, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 2653, + 2649, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_match_clips": [ - 2699, + 2695, { "where": [ - 2691, + 2687, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 2682, + 2678, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_match_demo_sessions": [ - 2745, + 2741, { "where": [ - 2734, + 2730, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 2724, + 2720, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_match_lineup_players": [ - 2789, + 2785, { "where": [ - 2781, + 2777, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 2770, + 2766, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_match_lineups": [ - 2832, + 2828, { "where": [ - 2824, + 2820, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 2815, + 2811, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_match_map_demos": [ - 2880, + 2876, { "where": [ - 2869, + 2865, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2857, + 2853, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_match_map_rounds": [ - 2925, + 2921, { "where": [ - 2917, + 2913, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2908, + 2904, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2965, + 2961, { "where": [ - 2958, + 2954, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2949, + 2945, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_match_maps": [ - 2994, + 2990, { "where": [ - 2986, + 2982, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2977, + 2973, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_match_options": [ - 3038, + 3034, { "where": [ - 3030, + 3026, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 3019, + 3015, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 3081, + 3077, { "where": [ - 3074, + 3070, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 3065, + 3061, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_match_streams": [ - 3116, + 3112, { "where": [ - 3105, + 3101, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 3093, + 3089, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_match_type_cfgs": [ - 3151, + 3147, { "where": [ - 3146, + 3142, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 3143, + 3139, { "type": [ - 832, + 833, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 3180, + 3176, { "where": [ - 3172, + 3168, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 3161, + 3157, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 3215, + 3211, { "where": [ - 3210, + 3206, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 3207, + 3203, { "name": [ - 83, + 84, "String!" ] } ], "delete_my_friends": [ - 3247, + 3243, { "where": [ - 3237, + 3233, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 3281, + 3277, { "where": [ - 3275, + 3271, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 3271, + 3267, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_notification_preferences": [ - 3308, + 3304, { "where": [ - 3302, + 3298, "notification_preferences_bool_exp!" ] } ], "delete_notification_preferences_by_pk": [ - 3298, + 3294, { "channel": [ - 83, + 84, "String!" ], "key": [ - 83, + 84, "String!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_notifications": [ - 3348, + 3344, { "where": [ - 3337, + 3333, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 3325, + 3321, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_pending_match_import_players": [ - 3395, + 3391, { "where": [ - 3387, + 3383, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 3378, + 3374, { "steam_id": [ - 268, + 269, "bigint!" ], "valve_match_id": [ - 3375, + 3371, "numeric!" ] } ], "delete_pending_match_imports": [ - 3429, + 3425, { "where": [ - 3423, + 3419, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 3419, + 3415, { "valve_match_id": [ - 3375, + 3371, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 3457, + 3453, { "where": [ - 3451, + 3447, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 3447, + 3443, { "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 3491, + 3487, { "where": [ - 3483, + 3479, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 3474, + 3470, { "match_map_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ], "weapon_class": [ - 83, + 84, "String!" ] } ], "delete_player_assists": [ - 3534, + 3530, { "where": [ - 3526, + 3522, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 3515, + 3511, { "attacked_steam_id": [ - 268, + 269, "bigint!" ], "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "delete_player_damages": [ - 3595, + 3591, { "where": [ - 3587, + 3583, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 3578, + 3574, { "id": [ - 5458, + 5454, "uuid!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "delete_player_elo": [ - 3629, + 3625, { "where": [ - 3623, + 3619, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 3619, + 3615, { "match_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ], "type": [ - 1181, + 1182, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 3663, + 3659, { "where": [ - 3655, + 3651, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 3646, + 3642, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_player_flashes": [ - 3706, + 3702, { "where": [ - 3698, + 3694, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 3687, + 3683, { "attacked_steam_id": [ - 268, + 269, "bigint!" ], "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "delete_player_kills": [ - 3792, + 3788, { "where": [ - 3743, + 3739, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 3732, + 3728, { "attacked_steam_id": [ - 268, + 269, "bigint!" ], "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 3761, + 3757, { "where": [ - 3753, + 3749, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 3744, + 3740, { "player_steam_id": [ - 268, + 269, "bigint!" ], "with": [ - 83, + 84, "String!" ] } ], "delete_player_leaderboard_rank": [ - 3827, + 3823, { "where": [ - 3822, + 3818, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 3858, + 3854, { "where": [ - 3850, + 3846, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 3841, + 3837, { "match_map_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_player_objectives": [ - 3950, + 3946, { "where": [ - 3942, + 3938, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3933, + 3929, { "match_map_id": [ - 5458, + 5454, "uuid!" ], "player_steam_id": [ - 268, + 269, "bigint!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 4009, + 4005, { "where": [ - 4001, + 3997, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3992, + 3988, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_player_sanctions": [ - 4050, + 4046, { "where": [ - 4042, + 4038, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 4033, + 4029, { "created_at": [ - 4958, + 4954, "timestamptz!" ], "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_player_season_stats": [ - 4101, + 4097, { "where": [ - 4093, + 4089, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 4074, + 4070, { "player_steam_id": [ - 268, + 269, "bigint!" ], "season_id": [ - 5458, + 5454, "uuid!" ] } ], "delete_player_stats": [ - 4143, + 4139, { "where": [ - 4137, + 4133, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 4133, + 4129, { "player_steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_player_steam_bot_friend": [ - 4175, + 4171, { "where": [ - 4166, + 4162, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 4161, + 4157, { "steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_player_steam_match_auth": [ - 4203, + 4199, { "where": [ - 4197, + 4193, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 4193, + 4189, { "steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_player_unused_utility": [ - 4237, + 4233, { "where": [ - 4229, + 4225, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 4220, + 4216, { "match_map_id": [ - 5458, + 5454, "uuid!" ], "player_steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_player_utility": [ - 4278, + 4274, { "where": [ - 4270, + 4266, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 4261, + 4257, { "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "delete_players": [ - 4345, + 4341, { "where": [ - 4339, + 4335, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 4335, + 4331, { "steam_id": [ - 268, + 269, "bigint!" ] } ], "delete_plugin_versions": [ - 4373, + 4369, { "where": [ - 4367, + 4363, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 4363, + 4359, { "runtime": [ - 1262, + 1263, "e_plugin_runtimes_enum!" ], "version": [ - 83, + 84, "String!" ] } ], "delete_push_subscriptions": [ - 4400, + 4396, { "where": [ - 4394, + 4390, "push_subscriptions_bool_exp!" ] } ], "delete_push_subscriptions_by_pk": [ - 4390, + 4386, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_seasons": [ - 4431, + 4427, { "where": [ - 4425, + 4421, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 4421, + 4417, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_server_regions": [ - 4458, + 4454, { "where": [ - 4453, + 4449, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 4449, + 4445, { "value": [ - 83, + 84, "String!" ] } ], "delete_servers": [ - 4499, + 4495, { "where": [ - 4488, + 4484, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 4476, + 4472, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_settings": [ - 4535, + 4531, { "where": [ - 4530, + 4526, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 4527, + 4523, { "name": [ - 83, + 84, "String!" ] } ], "delete_steam_account_claims": [ - 4561, + 4557, { "where": [ - 4554, + 4550, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 4547, + 4543, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_steam_accounts": [ - 4581, + 4577, { "where": [ - 4575, + 4571, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 4571, + 4567, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_system_alerts": [ - 4609, + 4605, { "where": [ - 4603, + 4599, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 4599, + 4595, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_team_invites": [ - 4643, + 4639, { "where": [ - 4635, + 4631, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 4626, + 4622, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_team_roster": [ - 4686, + 4682, { "where": [ - 4678, + 4674, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 4667, + 4663, { "player_steam_id": [ - 268, + 269, "bigint!" ], "team_id": [ - 5458, + 5454, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 4722, + 4718, { "where": [ - 4716, + 4712, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 4712, + 4708, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_team_scrim_availability": [ - 4755, + 4751, { "where": [ - 4748, + 4744, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 4739, + 4735, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 4784, + 4780, { "where": [ - 4776, + 4772, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 4767, + 4763, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_team_scrim_requests": [ - 4827, + 4823, { "where": [ - 4819, + 4815, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 4808, + 4804, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_team_scrim_settings": [ - 4864, + 4860, { "where": [ - 4858, + 4854, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 4854, + 4850, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_team_suggestions": [ - 4892, + 4888, { "where": [ - 4886, + 4882, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 4882, + 4878, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_teams": [ - 4928, + 4924, { "where": [ - 4920, + 4916, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 4909, + 4905, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_tournament_awards": [ - 4977, + 4973, { "where": [ - 4969, + 4965, "tournament_awards_bool_exp!" ] } ], "delete_tournament_awards_by_pk": [ - 4960, + 4956, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_tournament_brackets": [ - 5021, + 5017, { "where": [ - 5013, + 5009, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 5002, + 4998, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_tournament_categories": [ - 5062, + 5058, { "where": [ - 5055, + 5051, "tournament_categories_bool_exp!" ] } ], "delete_tournament_categories_by_pk": [ - 5048, + 5044, { "category": [ - 1464, + 1465, "e_tournament_categories_enum!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "delete_tournament_organizer_teams": [ - 5086, + 5082, { "where": [ - 5079, + 5075, "tournament_organizer_teams_bool_exp!" ] } ], "delete_tournament_organizer_teams_by_pk": [ - 5072, + 5068, { "team_id": [ - 5458, + 5454, "uuid!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "delete_tournament_organizers": [ - 5113, + 5109, { "where": [ - 5105, + 5101, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 5096, + 5092, { "steam_id": [ - 268, + 269, "bigint!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "delete_tournament_prizes": [ - 5154, + 5150, { "where": [ - 5146, + 5142, "tournament_prizes_bool_exp!" ] } ], "delete_tournament_prizes_by_pk": [ - 5137, + 5133, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 5195, + 5191, { "where": [ - 5187, + 5183, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 5178, + 5174, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_tournament_stages": [ - 5242, + 5238, { "where": [ - 5231, + 5227, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 5219, + 5215, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_tournament_team_invites": [ - 5287, + 5283, { "where": [ - 5279, + 5275, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 5270, + 5266, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_tournament_team_roster": [ - 5328, + 5324, { "where": [ - 5320, + 5316, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 5311, + 5307, { "player_steam_id": [ - 268, + 269, "bigint!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "delete_tournament_teams": [ - 5369, + 5365, { "where": [ - 5361, + 5357, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 5352, + 5348, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_tournaments": [ - 5423, + 5419, { "where": [ - 5415, + 5411, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 5394, + 5390, { "id": [ - 5458, + 5454, "uuid!" ] } ], "delete_v_match_captains": [ - 5623, + 5619, { "where": [ - 5618, + 5614, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 5734, + 5730, { "where": [ - 5729, + 5725, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 5956, + 5952, { "where": [ - 5949, + 5945, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 6133, + 6129, { "where": [ - 6127, + 6123, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 6227, + 6223, { "where": [ - 6219, + 6215, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 6200, + 6196, { "tournament_stage_id": [ - 5458, + 5454, "uuid!" ], "tournament_team_id": [ - 5458, + 5454, "uuid!" ] } ], "denyInvite": [ - 86, + 87, { "invite_id": [ - 5458, + 5454, "uuid!" ], "type": [ - 83, + 84, "String!" ] } ], "denyNameChange": [ - 86, + 87, { "name": [ - 83, + 84, "String!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "forfeitMatch": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ], "winning_lineup_id": [ - 5458, + 5454, "uuid!" ] } ], "getLiveStreamSpecState": [ - 45, + 46, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "getPluginReadme": [ - 56, + 57, { "runtime": [ - 83 + 84 ], "slug": [ - 83, + 84, "String!" ] } ], "getTestUploadLink": [ - 33 + 34 ], "grantAward": [ - 4, + 5, { "award_id": [ - 5458, + 5454, "uuid!" ], "event_id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "note": [ - 83 + 84 ], "player_steam_id": [ - 83 + 84 ], "season_id": [ - 5458 + 5454 ], "team_id": [ - 5458 + 5454 ], "tournament_id": [ - 5458 + 5454 ] } ], "insert__map_pool": [ - 119, + 120, { "objects": [ - 116, + 117, "[_map_pool_insert_input!]!" ], "on_conflict": [ - 120 + 121 ] } ], "insert__map_pool_one": [ - 111, + 112, { "object": [ - 116, + 117, "_map_pool_insert_input!" ], "on_conflict": [ - 120 + 121 ] } ], "insert_abandoned_matches": [ - 147, + 148, { "objects": [ - 142, + 143, "[abandoned_matches_insert_input!]!" ], "on_conflict": [ - 148 + 149 ] } ], "insert_abandoned_matches_one": [ - 130, + 131, { "object": [ - 142, + 143, "abandoned_matches_insert_input!" ], "on_conflict": [ - 148 + 149 ] } ], "insert_api_keys": [ - 181, + 182, { "objects": [ - 178, + 179, "[api_keys_insert_input!]!" ], "on_conflict": [ - 182 + 183 ] } ], "insert_api_keys_one": [ - 171, + 172, { "object": [ - 178, + 179, "api_keys_insert_input!" ], "on_conflict": [ - 182 + 183 ] } ], "insert_award_recipients": [ - 216, + 217, { "objects": [ - 211, + 212, "[award_recipients_insert_input!]!" ], "on_conflict": [ - 217 + 218 ] } ], "insert_award_recipients_one": [ - 199, + 200, { "object": [ - 211, + 212, "award_recipients_insert_input!" ], "on_conflict": [ - 217 + 218 ] } ], "insert_awards": [ - 250, + 251, { "objects": [ - 247, + 248, "[awards_insert_input!]!" ], "on_conflict": [ - 252 + 253 ] } ], "insert_awards_one": [ - 240, + 241, { "object": [ - 247, + 248, "awards_insert_input!" ], "on_conflict": [ - 252 + 253 ] } ], "insert_chat_read_state": [ - 283, + 284, { "objects": [ - 280, + 281, "[chat_read_state_insert_input!]!" ], "on_conflict": [ - 284 + 285 ] } ], "insert_chat_read_state_one": [ - 273, + 274, { "object": [ - 280, + 281, "chat_read_state_insert_input!" ], "on_conflict": [ - 284 + 285 ] } ], "insert_clip_render_jobs": [ - 323, + 324, { "objects": [ - 318, + 319, "[clip_render_jobs_insert_input!]!" ], "on_conflict": [ - 324 + 325 ] } ], "insert_clip_render_jobs_one": [ - 300, + 301, { "object": [ - 318, + 319, "clip_render_jobs_insert_input!" ], "on_conflict": [ - 324 + 325 ] } ], "insert_custom_pages": [ - 366, + 367, { "objects": [ - 363, + 364, "[custom_pages_insert_input!]!" ], "on_conflict": [ - 367 + 368 ] } ], "insert_custom_pages_one": [ - 352, + 353, { "object": [ - 363, + 364, "custom_pages_insert_input!" ], "on_conflict": [ - 367 + 368 ] } ], "insert_db_backups": [ - 394, + 395, { "objects": [ - 391, + 392, "[db_backups_insert_input!]!" ], "on_conflict": [ - 395 + 396 ] } ], "insert_db_backups_one": [ - 384, + 385, { "object": [ - 391, + 392, "db_backups_insert_input!" ], "on_conflict": [ - 395 + 396 ] } ], "insert_direct_conversations": [ - 421, + 422, { "objects": [ - 418, + 419, "[direct_conversations_insert_input!]!" ], "on_conflict": [ - 422 + 423 ] } ], "insert_direct_conversations_one": [ - 411, + 412, { "object": [ - 418, + 419, "direct_conversations_insert_input!" ], "on_conflict": [ - 422 + 423 ] } ], "insert_direct_messages": [ - 448, + 449, { "objects": [ - 445, + 446, "[direct_messages_insert_input!]!" ], "on_conflict": [ - 449 + 450 ] } ], "insert_direct_messages_one": [ - 438, + 439, { "object": [ - 445, + 446, "direct_messages_insert_input!" ], "on_conflict": [ - 449 + 450 ] } ], "insert_draft_game_picks": [ - 484, + 485, { "objects": [ - 479, + 480, "[draft_game_picks_insert_input!]!" ], "on_conflict": [ - 485 + 486 ] } ], "insert_draft_game_picks_one": [ - 465, + 466, { "object": [ - 479, + 480, "draft_game_picks_insert_input!" ], "on_conflict": [ - 485 + 486 ] } ], "insert_draft_game_players": [ - 529, + 530, { "objects": [ - 524, + 525, "[draft_game_players_insert_input!]!" ], "on_conflict": [ - 530 + 531 ] } ], "insert_draft_game_players_one": [ - 510, + 511, { "object": [ - 524, + 525, "draft_game_players_insert_input!" ], "on_conflict": [ - 530 + 531 ] } ], "insert_draft_games": [ - 574, + 575, { "objects": [ - 569, + 570, "[draft_games_insert_input!]!" ], "on_conflict": [ - 576 + 577 ] } ], "insert_draft_games_one": [ - 555, + 556, { "object": [ - 569, + 570, "draft_games_insert_input!" ], "on_conflict": [ - 576 + 577 ] } ], "insert_e_award_sources": [ - 611, + 612, { "objects": [ - 608, + 609, "[e_award_sources_insert_input!]!" ], "on_conflict": [ - 612 + 613 ] } ], "insert_e_award_sources_one": [ - 601, + 602, { "object": [ - 608, + 609, "e_award_sources_insert_input!" ], "on_conflict": [ - 612 + 613 ] } ], "insert_e_award_tiers": [ - 631, + 632, { "objects": [ - 628, + 629, "[e_award_tiers_insert_input!]!" ], "on_conflict": [ - 632 + 633 ] } ], "insert_e_award_tiers_one": [ - 621, + 622, { "object": [ - 628, + 629, "e_award_tiers_insert_input!" ], "on_conflict": [ - 632 + 633 ] } ], "insert_e_check_in_settings": [ - 651, + 652, { "objects": [ - 648, + 649, "[e_check_in_settings_insert_input!]!" ], "on_conflict": [ - 652 + 653 ] } ], "insert_e_check_in_settings_one": [ - 641, + 642, { "object": [ - 648, + 649, "e_check_in_settings_insert_input!" ], "on_conflict": [ - 652 + 653 ] } ], "insert_e_draft_game_captain_selection": [ - 671, + 672, { "objects": [ - 668, + 669, "[e_draft_game_captain_selection_insert_input!]!" ], "on_conflict": [ - 673 + 674 ] } ], "insert_e_draft_game_captain_selection_one": [ - 661, + 662, { "object": [ - 668, + 669, "e_draft_game_captain_selection_insert_input!" ], "on_conflict": [ - 673 + 674 ] } ], "insert_e_draft_game_draft_order": [ - 692, + 693, { "objects": [ - 689, + 690, "[e_draft_game_draft_order_insert_input!]!" ], "on_conflict": [ - 694 + 695 ] } ], "insert_e_draft_game_draft_order_one": [ - 682, + 683, { "object": [ - 689, + 690, "e_draft_game_draft_order_insert_input!" ], "on_conflict": [ - 694 + 695 ] } ], "insert_e_draft_game_mode": [ - 713, + 714, { "objects": [ - 710, + 711, "[e_draft_game_mode_insert_input!]!" ], "on_conflict": [ - 715 + 716 ] } ], "insert_e_draft_game_mode_one": [ - 703, + 704, { "object": [ - 710, + 711, "e_draft_game_mode_insert_input!" ], "on_conflict": [ - 715 + 716 ] } ], "insert_e_draft_game_player_status": [ - 734, + 735, { "objects": [ - 731, + 732, "[e_draft_game_player_status_insert_input!]!" ], "on_conflict": [ - 736 + 737 ] } ], "insert_e_draft_game_player_status_one": [ - 724, + 725, { "object": [ - 731, + 732, "e_draft_game_player_status_insert_input!" ], "on_conflict": [ - 736 + 737 ] } ], "insert_e_draft_game_status": [ - 755, + 756, { "objects": [ - 752, + 753, "[e_draft_game_status_insert_input!]!" ], "on_conflict": [ - 757 + 758 ] } ], "insert_e_draft_game_status_one": [ - 745, + 746, { "object": [ - 752, + 753, "e_draft_game_status_insert_input!" ], "on_conflict": [ - 757 + 758 ] } ], "insert_e_event_media_access": [ - 776, + 777, { "objects": [ - 773, + 774, "[e_event_media_access_insert_input!]!" ], "on_conflict": [ - 777 + 778 ] } ], "insert_e_event_media_access_one": [ - 766, + 767, { "object": [ - 773, + 774, "e_event_media_access_insert_input!" ], "on_conflict": [ - 777 + 778 ] } ], "insert_e_event_visibility": [ - 796, + 797, { "objects": [ - 793, + 794, "[e_event_visibility_insert_input!]!" ], "on_conflict": [ - 797 + 798 ] } ], "insert_e_event_visibility_one": [ - 786, + 787, { "object": [ - 793, + 794, "e_event_visibility_insert_input!" ], "on_conflict": [ - 797 + 798 ] } ], "insert_e_friend_status": [ - 816, + 817, { "objects": [ - 813, + 814, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 818 + 819 ] } ], "insert_e_friend_status_one": [ - 806, + 807, { "object": [ - 813, + 814, "e_friend_status_insert_input!" ], "on_conflict": [ - 818 + 819 ] } ], "insert_e_game_cfg_types": [ - 837, + 838, { "objects": [ - 834, + 835, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 838 + 839 ] } ], "insert_e_game_cfg_types_one": [ - 827, + 828, { "object": [ - 834, + 835, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 838 + 839 ] } ], "insert_e_game_plugin_channels": [ - 857, + 858, { "objects": [ - 854, + 855, "[e_game_plugin_channels_insert_input!]!" ], "on_conflict": [ - 858 + 859 ] } ], "insert_e_game_plugin_channels_one": [ - 847, + 848, { "object": [ - 854, + 855, "e_game_plugin_channels_insert_input!" ], "on_conflict": [ - 858 + 859 ] } ], "insert_e_game_plugin_install_statuses": [ - 877, + 878, { "objects": [ - 874, + 875, "[e_game_plugin_install_statuses_insert_input!]!" ], "on_conflict": [ - 878 + 879 ] } ], "insert_e_game_plugin_install_statuses_one": [ - 867, + 868, { "object": [ - 874, + 875, "e_game_plugin_install_statuses_insert_input!" ], "on_conflict": [ - 878 + 879 ] } ], "insert_e_game_plugin_kinds": [ - 897, + 898, { "objects": [ - 894, + 895, "[e_game_plugin_kinds_insert_input!]!" ], "on_conflict": [ - 898 + 899 ] } ], "insert_e_game_plugin_kinds_one": [ - 887, + 888, { "object": [ - 894, + 895, "e_game_plugin_kinds_insert_input!" ], "on_conflict": [ - 898 + 899 ] } ], "insert_e_game_server_node_statuses": [ - 917, + 918, { "objects": [ - 914, + 915, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 919 + 920 ] } ], "insert_e_game_server_node_statuses_one": [ - 907, + 908, { "object": [ - 914, + 915, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 919 + 920 ] } ], "insert_e_league_movement_types": [ - 938, + 939, { "objects": [ - 935, + 936, "[e_league_movement_types_insert_input!]!" ], "on_conflict": [ - 940 + 941 ] } ], "insert_e_league_movement_types_one": [ - 928, + 929, { "object": [ - 935, + 936, "e_league_movement_types_insert_input!" ], "on_conflict": [ - 940 + 941 ] } ], "insert_e_league_proposal_statuses": [ - 959, + 960, { "objects": [ - 956, + 957, "[e_league_proposal_statuses_insert_input!]!" ], "on_conflict": [ - 961 + 962 ] } ], "insert_e_league_proposal_statuses_one": [ - 949, + 950, { "object": [ - 956, + 957, "e_league_proposal_statuses_insert_input!" ], "on_conflict": [ - 961 + 962 ] } ], "insert_e_league_registration_statuses": [ - 980, + 981, { "objects": [ - 977, + 978, "[e_league_registration_statuses_insert_input!]!" ], "on_conflict": [ - 982 + 983 ] } ], "insert_e_league_registration_statuses_one": [ - 970, + 971, { "object": [ - 977, + 978, "e_league_registration_statuses_insert_input!" ], "on_conflict": [ - 982 + 983 ] } ], "insert_e_league_season_statuses": [ - 1001, + 1002, { "objects": [ - 998, + 999, "[e_league_season_statuses_insert_input!]!" ], "on_conflict": [ - 1003 + 1004 ] } ], "insert_e_league_season_statuses_one": [ - 991, + 992, { "object": [ - 998, + 999, "e_league_season_statuses_insert_input!" ], "on_conflict": [ - 1003 + 1004 ] } ], "insert_e_lobby_access": [ - 1022, + 1023, { "objects": [ - 1019, + 1020, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 1024 + 1025 ] } ], "insert_e_lobby_access_one": [ - 1012, + 1013, { "object": [ - 1019, + 1020, "e_lobby_access_insert_input!" ], "on_conflict": [ - 1024 + 1025 ] } ], "insert_e_lobby_player_status": [ - 1043, + 1044, { "objects": [ - 1040, + 1041, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 1044 + 1045 ] } ], "insert_e_lobby_player_status_one": [ - 1033, + 1034, { "object": [ - 1040, + 1041, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 1044 + 1045 ] } ], "insert_e_map_pool_types": [ - 1063, + 1064, { "objects": [ - 1060, + 1061, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 1065 + 1066 ] } ], "insert_e_map_pool_types_one": [ - 1053, + 1054, { "object": [ - 1060, + 1061, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 1065 + 1066 ] } ], "insert_e_match_clip_visibility": [ - 1084, + 1085, { "objects": [ - 1081, + 1082, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 1085 + 1086 ] } ], "insert_e_match_clip_visibility_one": [ - 1074, + 1075, { "object": [ - 1081, + 1082, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 1085 + 1086 ] } ], "insert_e_match_map_status": [ - 1104, + 1105, { "objects": [ - 1101, + 1102, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 1106 + 1107 ] } ], "insert_e_match_map_status_one": [ - 1094, + 1095, { "object": [ - 1101, + 1102, "e_match_map_status_insert_input!" ], "on_conflict": [ - 1106 + 1107 ] } ], "insert_e_match_mode": [ - 1125, + 1126, { "objects": [ - 1122, + 1123, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 1126 + 1127 ] } ], "insert_e_match_mode_one": [ - 1115, + 1116, { "object": [ - 1122, + 1123, "e_match_mode_insert_input!" ], "on_conflict": [ - 1126 + 1127 ] } ], "insert_e_match_party_sources": [ - 1145, + 1146, { "objects": [ - 1142, + 1143, "[e_match_party_sources_insert_input!]!" ], "on_conflict": [ - 1146 + 1147 ] } ], "insert_e_match_party_sources_one": [ - 1135, + 1136, { "object": [ - 1142, + 1143, "e_match_party_sources_insert_input!" ], "on_conflict": [ - 1146 + 1147 ] } ], "insert_e_match_status": [ - 1165, + 1166, { "objects": [ - 1162, + 1163, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 1167 + 1168 ] } ], "insert_e_match_status_one": [ - 1155, + 1156, { "object": [ - 1162, + 1163, "e_match_status_insert_input!" ], "on_conflict": [ - 1167 + 1168 ] } ], "insert_e_match_types": [ - 1186, + 1187, { "objects": [ - 1183, + 1184, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 1188 + 1189 ] } ], "insert_e_match_types_one": [ - 1176, + 1177, { "object": [ - 1183, + 1184, "e_match_types_insert_input!" ], "on_conflict": [ - 1188 + 1189 ] } ], "insert_e_notification_types": [ - 1207, + 1208, { "objects": [ - 1204, + 1205, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 1208 + 1209 ] } ], "insert_e_notification_types_one": [ - 1197, + 1198, { "object": [ - 1204, + 1205, "e_notification_types_insert_input!" ], "on_conflict": [ - 1208 + 1209 ] } ], "insert_e_objective_types": [ - 1227, + 1228, { "objects": [ - 1224, + 1225, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 1228 + 1229 ] } ], "insert_e_objective_types_one": [ - 1217, + 1218, { "object": [ - 1224, + 1225, "e_objective_types_insert_input!" ], "on_conflict": [ - 1228 + 1229 ] } ], "insert_e_player_roles": [ - 1247, + 1248, { "objects": [ - 1244, + 1245, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 1248 + 1249 ] } ], "insert_e_player_roles_one": [ - 1237, + 1238, { "object": [ - 1244, + 1245, "e_player_roles_insert_input!" ], "on_conflict": [ - 1248 + 1249 ] } ], "insert_e_plugin_runtimes": [ - 1267, + 1268, { "objects": [ - 1264, + 1265, "[e_plugin_runtimes_insert_input!]!" ], "on_conflict": [ - 1268 + 1269 ] } ], "insert_e_plugin_runtimes_one": [ - 1257, + 1258, { "object": [ - 1264, + 1265, "e_plugin_runtimes_insert_input!" ], "on_conflict": [ - 1268 + 1269 ] } ], "insert_e_ready_settings": [ - 1287, + 1288, { "objects": [ - 1284, + 1285, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 1288 + 1289 ] } ], "insert_e_ready_settings_one": [ - 1277, + 1278, { "object": [ - 1284, + 1285, "e_ready_settings_insert_input!" ], "on_conflict": [ - 1288 + 1289 ] } ], "insert_e_sanction_types": [ - 1307, + 1308, { "objects": [ - 1304, + 1305, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 1309 + 1310 ] } ], "insert_e_sanction_types_one": [ - 1297, + 1298, { "object": [ - 1304, + 1305, "e_sanction_types_insert_input!" ], "on_conflict": [ - 1309 + 1310 ] } ], "insert_e_scrim_request_statuses": [ - 1328, + 1329, { "objects": [ - 1325, + 1326, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 1329 + 1330 ] } ], "insert_e_scrim_request_statuses_one": [ - 1318, + 1319, { "object": [ - 1325, + 1326, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 1329 + 1330 ] } ], "insert_e_server_types": [ - 1348, + 1349, { "objects": [ - 1345, + 1346, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 1349 + 1350 ] } ], "insert_e_server_types_one": [ - 1338, + 1339, { "object": [ - 1345, + 1346, "e_server_types_insert_input!" ], "on_conflict": [ - 1349 + 1350 ] } ], "insert_e_sides": [ - 1368, + 1369, { "objects": [ - 1365, + 1366, "[e_sides_insert_input!]!" ], "on_conflict": [ - 1369 + 1370 ] } ], "insert_e_sides_one": [ - 1358, + 1359, { "object": [ - 1365, + 1366, "e_sides_insert_input!" ], "on_conflict": [ - 1369 + 1370 ] } ], "insert_e_system_alert_types": [ - 1388, + 1389, { "objects": [ - 1385, + 1386, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 1389 + 1390 ] } ], "insert_e_system_alert_types_one": [ - 1378, + 1379, { "object": [ - 1385, + 1386, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 1389 + 1390 ] } ], "insert_e_team_roles": [ - 1408, + 1409, { "objects": [ - 1405, + 1406, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 1410 + 1411 ] } ], "insert_e_team_roles_one": [ - 1398, + 1399, { "object": [ - 1405, + 1406, "e_team_roles_insert_input!" ], "on_conflict": [ - 1410 + 1411 ] } ], "insert_e_team_roster_statuses": [ - 1429, + 1430, { "objects": [ - 1426, + 1427, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 1430 + 1431 ] } ], "insert_e_team_roster_statuses_one": [ - 1419, + 1420, { "object": [ - 1426, + 1427, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 1430 + 1431 ] } ], "insert_e_timeout_settings": [ - 1449, + 1450, { "objects": [ - 1446, + 1447, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 1450 + 1451 ] } ], "insert_e_timeout_settings_one": [ - 1439, + 1440, { "object": [ - 1446, + 1447, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 1450 + 1451 ] } ], "insert_e_tournament_categories": [ - 1469, + 1470, { "objects": [ - 1466, + 1467, "[e_tournament_categories_insert_input!]!" ], "on_conflict": [ - 1471 + 1472 ] } ], "insert_e_tournament_categories_one": [ - 1459, + 1460, { "object": [ - 1466, + 1467, "e_tournament_categories_insert_input!" ], "on_conflict": [ - 1471 + 1472 ] } ], "insert_e_tournament_stage_types": [ - 1490, + 1491, { "objects": [ - 1487, + 1488, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 1492 + 1493 ] } ], "insert_e_tournament_stage_types_one": [ - 1480, + 1481, { "object": [ - 1487, + 1488, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 1492 + 1493 ] } ], "insert_e_tournament_status": [ - 1511, + 1512, { "objects": [ - 1508, + 1509, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1513 + 1514 ] } ], "insert_e_tournament_status_one": [ - 1501, + 1502, { "object": [ - 1508, + 1509, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1513 + 1514 ] } ], "insert_e_utility_types": [ - 1532, + 1533, { "objects": [ - 1529, + 1530, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1533 + 1534 ] } ], "insert_e_utility_types_one": [ - 1522, + 1523, { "object": [ - 1529, + 1530, "e_utility_types_insert_input!" ], "on_conflict": [ - 1533 + 1534 ] } ], "insert_e_veto_pick_types": [ - 1552, + 1553, { "objects": [ - 1549, + 1550, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1553 + 1554 ] } ], "insert_e_veto_pick_types_one": [ - 1542, + 1543, { "object": [ - 1549, + 1550, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1553 + 1554 ] } ], "insert_e_winning_reasons": [ - 1572, + 1573, { "objects": [ - 1569, + 1570, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1573 + 1574 ] } ], "insert_e_winning_reasons_one": [ - 1562, + 1563, { "object": [ - 1569, + 1570, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1573 + 1574 ] } ], "insert_event_match_links": [ - 1590, + 1591, { "objects": [ - 1587, + 1588, "[event_match_links_insert_input!]!" ], "on_conflict": [ - 1591 + 1592 ] } ], "insert_event_match_links_one": [ - 1582, + 1583, { "object": [ - 1587, + 1588, "event_match_links_insert_input!" ], "on_conflict": [ - 1591 + 1592 ] } ], "insert_event_media": [ - 1617, + 1618, { "objects": [ - 1612, + 1613, "[event_media_insert_input!]!" ], "on_conflict": [ - 1619 + 1620 ] } ], "insert_event_media_one": [ - 1600, + 1601, { "object": [ - 1612, + 1613, "event_media_insert_input!" ], "on_conflict": [ - 1619 + 1620 ] } ], "insert_event_media_players": [ - 1639, + 1640, { "objects": [ - 1634, + 1635, "[event_media_players_insert_input!]!" ], "on_conflict": [ - 1640 + 1641 ] } ], "insert_event_media_players_one": [ - 1622, + 1623, { "object": [ - 1634, + 1635, "event_media_players_insert_input!" ], "on_conflict": [ - 1640 + 1641 ] } ], "insert_event_organizers": [ - 1700, + 1701, { "objects": [ - 1695, + 1696, "[event_organizers_insert_input!]!" ], "on_conflict": [ - 1701 + 1702 ] } ], "insert_event_organizers_one": [ - 1683, + 1684, { "object": [ - 1695, + 1696, "event_organizers_insert_input!" ], "on_conflict": [ - 1701 + 1702 ] } ], "insert_event_players": [ - 1741, + 1742, { "objects": [ - 1736, + 1737, "[event_players_insert_input!]!" ], "on_conflict": [ - 1742 + 1743 ] } ], "insert_event_players_one": [ - 1724, + 1725, { "object": [ - 1736, + 1737, "event_players_insert_input!" ], "on_conflict": [ - 1742 + 1743 ] } ], "insert_event_teams": [ - 1779, + 1780, { "objects": [ - 1774, + 1775, "[event_teams_insert_input!]!" ], "on_conflict": [ - 1780 + 1781 ] } ], "insert_event_teams_one": [ - 1765, + 1766, { "object": [ - 1774, + 1775, "event_teams_insert_input!" ], "on_conflict": [ - 1780 + 1781 ] } ], "insert_event_tournaments": [ - 1803, + 1804, { "objects": [ - 1798, + 1799, "[event_tournaments_insert_input!]!" ], "on_conflict": [ - 1804 + 1805 ] } ], "insert_event_tournaments_one": [ - 1789, + 1790, { "object": [ - 1798, + 1799, "event_tournaments_insert_input!" ], "on_conflict": [ - 1804 + 1805 ] } ], "insert_events": [ - 1823, + 1824, { "objects": [ - 1820, + 1821, "[events_insert_input!]!" ], "on_conflict": [ - 1825 + 1826 ] } ], "insert_events_one": [ - 1813, + 1814, { "object": [ - 1820, + 1821, "events_insert_input!" ], "on_conflict": [ - 1825 + 1826 ] } ], "insert_friends": [ - 1853, + 1854, { "objects": [ - 1850, + 1851, "[friends_insert_input!]!" ], "on_conflict": [ - 1854 + 1855 ] } ], "insert_friends_one": [ - 1843, + 1844, { "object": [ - 1850, + 1851, "friends_insert_input!" ], "on_conflict": [ - 1854 + 1855 ] } ], "insert_game_mode_plugins": [ - 1893, + 1894, { "objects": [ - 1888, + 1889, "[game_mode_plugins_insert_input!]!" ], "on_conflict": [ - 1894 + 1895 ] } ], "insert_game_mode_plugins_one": [ - 1870, + 1871, { "object": [ - 1888, + 1889, "game_mode_plugins_insert_input!" ], "on_conflict": [ - 1894 + 1895 ] } ], "insert_game_modes": [ - 1932, + 1929, { "objects": [ - 1929, + 1926, "[game_modes_insert_input!]!" ], "on_conflict": [ - 1934 + 1931 ] } ], "insert_game_modes_one": [ - 1920, + 1921, { "object": [ - 1929, + 1926, "game_modes_insert_input!" ], "on_conflict": [ - 1934 + 1931 ] } ], "insert_game_plugin_installs": [ - 1952, + 1948, { "objects": [ - 1949, + 1945, "[game_plugin_installs_insert_input!]!" ], "on_conflict": [ - 1953 + 1949 ] } ], "insert_game_plugin_installs_one": [ - 1944, + 1940, { "object": [ - 1949, + 1945, "game_plugin_installs_insert_input!" ], "on_conflict": [ - 1953 + 1949 ] } ], "insert_game_plugin_versions": [ - 1981, + 1977, { "objects": [ - 1976, + 1972, "[game_plugin_versions_insert_input!]!" ], "on_conflict": [ - 1982 + 1978 ] } ], "insert_game_plugin_versions_one": [ - 1962, + 1958, { "object": [ - 1976, + 1972, "game_plugin_versions_insert_input!" ], "on_conflict": [ - 1982 + 1978 ] } ], "insert_game_plugins": [ - 2020, + 2016, { "objects": [ - 2017, + 2013, "[game_plugins_insert_input!]!" ], "on_conflict": [ - 2022 + 2018 ] } ], "insert_game_plugins_one": [ - 2007, + 2003, { "object": [ - 2017, + 2013, "game_plugins_insert_input!" ], "on_conflict": [ - 2022 + 2018 ] } ], "insert_game_server_node_plugins": [ - 2055, + 2051, { "objects": [ - 2050, + 2046, "[game_server_node_plugins_insert_input!]!" ], "on_conflict": [ - 2056 + 2052 ] } ], "insert_game_server_node_plugins_one": [ - 2039, + 2035, { "object": [ - 2050, + 2046, "game_server_node_plugins_insert_input!" ], "on_conflict": [ - 2056 + 2052 ] } ], "insert_game_server_nodes": [ - 2090, + 2086, { "objects": [ - 2085, + 2081, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 2092 + 2088 ] } ], "insert_game_server_nodes_one": [ - 2067, + 2063, { "object": [ - 2085, + 2081, "game_server_nodes_insert_input!" ], "on_conflict": [ - 2092 + 2088 ] } ], "insert_game_versions": [ - 2132, + 2128, { "objects": [ - 2129, + 2125, "[game_versions_insert_input!]!" ], "on_conflict": [ - 2134 + 2130 ] } ], "insert_game_versions_one": [ - 2118, + 2114, { "object": [ - 2129, + 2125, "game_versions_insert_input!" ], "on_conflict": [ - 2134 + 2130 ] } ], "insert_gamedata_signature_validations": [ - 2165, + 2161, { "objects": [ - 2162, + 2158, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 2166 + 2162 ] } ], "insert_gamedata_signature_validations_one": [ - 2151, + 2147, { "object": [ - 2162, + 2158, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 2166 + 2162 ] } ], "insert_leaderboard_entries": [ - 2203, + 2199, { "objects": [ - 2200, + 2196, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 2194, + 2190, { "object": [ - 2200, + 2196, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 2228, + 2224, { "objects": [ - 2225, + 2221, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 2230 + 2226 ] } ], "insert_league_divisions_one": [ - 2218, + 2214, { "object": [ - 2225, + 2221, "league_divisions_insert_input!" ], "on_conflict": [ - 2230 + 2226 ] } ], "insert_league_match_weeks": [ - 2263, + 2259, { "objects": [ - 2258, + 2254, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 2264 + 2260 ] } ], "insert_league_match_weeks_one": [ - 2246, + 2242, { "object": [ - 2258, + 2254, "league_match_weeks_insert_input!" ], "on_conflict": [ - 2264 + 2260 ] } ], "insert_league_relegation_playoffs": [ - 2304, + 2300, { "objects": [ - 2299, + 2295, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 2305 + 2301 ] } ], "insert_league_relegation_playoffs_one": [ - 2287, + 2283, { "object": [ - 2299, + 2295, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 2305 + 2301 ] } ], "insert_league_scheduling_proposals": [ - 2345, + 2341, { "objects": [ - 2340, + 2336, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 2346 + 2342 ] } ], "insert_league_scheduling_proposals_one": [ - 2328, + 2324, { "object": [ - 2340, + 2336, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 2346 + 2342 ] } ], "insert_league_season_divisions": [ - 2383, + 2379, { "objects": [ - 2378, + 2374, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 2385 + 2381 ] } ], "insert_league_season_divisions_one": [ - 2369, + 2365, { "object": [ - 2378, + 2374, "league_season_divisions_insert_input!" ], "on_conflict": [ - 2385 + 2381 ] } ], "insert_league_seasons": [ - 2408, + 2404, { "objects": [ - 2405, + 2401, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 2410 + 2406 ] } ], "insert_league_seasons_one": [ - 2394, + 2390, { "object": [ - 2405, + 2401, "league_seasons_insert_input!" ], "on_conflict": [ - 2410 + 2406 ] } ], "insert_league_team_movements": [ - 2444, + 2440, { "objects": [ - 2439, + 2435, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 2445 + 2441 ] } ], "insert_league_team_movements_one": [ - 2427, + 2423, { "object": [ - 2439, + 2435, "league_team_movements_insert_input!" ], "on_conflict": [ - 2445 + 2441 ] } ], "insert_league_team_rosters": [ - 2485, + 2481, { "objects": [ - 2480, + 2476, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 2486 + 2482 ] } ], "insert_league_team_rosters_one": [ - 2468, + 2464, { "object": [ - 2480, + 2476, "league_team_rosters_insert_input!" ], "on_conflict": [ - 2486 + 2482 ] } ], "insert_league_team_seasons": [ - 2526, + 2522, { "objects": [ - 2521, + 2517, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 2528 + 2524 ] } ], "insert_league_team_seasons_one": [ - 2509, + 2505, { "object": [ - 2521, + 2517, "league_team_seasons_insert_input!" ], "on_conflict": [ - 2528 + 2524 ] } ], "insert_league_teams": [ - 2559, + 2555, { "objects": [ - 2556, + 2552, "[league_teams_insert_input!]!" ], "on_conflict": [ - 2561 + 2557 ] } ], "insert_league_teams_one": [ - 2551, + 2547, { "object": [ - 2556, + 2552, "league_teams_insert_input!" ], "on_conflict": [ - 2561 + 2557 ] } ], "insert_lobbies": [ - 2578, + 2574, { "objects": [ - 2575, + 2571, "[lobbies_insert_input!]!" ], "on_conflict": [ - 2580 + 2576 ] } ], "insert_lobbies_one": [ - 2570, + 2566, { "object": [ - 2575, + 2571, "lobbies_insert_input!" ], "on_conflict": [ - 2580 + 2576 ] } ], "insert_lobby_players": [ - 2608, + 2604, { "objects": [ - 2603, + 2599, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 2609 + 2605 ] } ], "insert_lobby_players_one": [ - 2589, + 2585, { "object": [ - 2603, + 2599, "lobby_players_insert_input!" ], "on_conflict": [ - 2609 + 2605 ] } ], "insert_map_pools": [ - 2642, + 2638, { "objects": [ - 2639, + 2635, "[map_pools_insert_input!]!" ], "on_conflict": [ - 2644 + 2640 ] } ], "insert_map_pools_one": [ - 2634, + 2630, { "object": [ - 2639, + 2635, "map_pools_insert_input!" ], "on_conflict": [ - 2644 + 2640 ] } ], "insert_maps": [ - 2669, + 2665, { "objects": [ - 2664, + 2660, "[maps_insert_input!]!" ], "on_conflict": [ - 2671 + 2667 ] } ], "insert_maps_one": [ - 2653, + 2649, { "object": [ - 2664, + 2660, "maps_insert_input!" ], "on_conflict": [ - 2671 + 2667 ] } ], "insert_match_clips": [ - 2699, + 2695, { "objects": [ - 2694, + 2690, "[match_clips_insert_input!]!" ], "on_conflict": [ - 2701 + 2697 ] } ], "insert_match_clips_one": [ - 2682, + 2678, { "object": [ - 2694, + 2690, "match_clips_insert_input!" ], "on_conflict": [ - 2701 + 2697 ] } ], "insert_match_demo_sessions": [ - 2745, + 2741, { "objects": [ - 2740, + 2736, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 2746 + 2742 ] } ], "insert_match_demo_sessions_one": [ - 2724, + 2720, { "object": [ - 2740, + 2736, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 2746 + 2742 ] } ], "insert_match_lineup_players": [ - 2789, + 2785, { "objects": [ - 2784, + 2780, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 2790 + 2786 ] } ], "insert_match_lineup_players_one": [ - 2770, + 2766, { "object": [ - 2784, + 2780, "match_lineup_players_insert_input!" ], "on_conflict": [ - 2790 + 2786 ] } ], "insert_match_lineups": [ - 2832, + 2828, { "objects": [ - 2827, + 2823, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 2834 + 2830 ] } ], "insert_match_lineups_one": [ - 2815, + 2811, { "object": [ - 2827, + 2823, "match_lineups_insert_input!" ], "on_conflict": [ - 2834 + 2830 ] } ], "insert_match_map_demos": [ - 2880, + 2876, { "objects": [ - 2875, + 2871, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2882 + 2878 ] } ], "insert_match_map_demos_one": [ - 2857, + 2853, { "object": [ - 2875, + 2871, "match_map_demos_insert_input!" ], "on_conflict": [ - 2882 + 2878 ] } ], "insert_match_map_rounds": [ - 2925, + 2921, { "objects": [ - 2920, + 2916, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2926 + 2922 ] } ], "insert_match_map_rounds_one": [ - 2908, + 2904, { "object": [ - 2920, + 2916, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2926 + 2922 ] } ], "insert_match_map_veto_picks": [ - 2965, + 2961, { "objects": [ - 2960, + 2956, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2966 + 2962 ] } ], "insert_match_map_veto_picks_one": [ - 2949, + 2945, { "object": [ - 2960, + 2956, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2966 + 2962 ] } ], "insert_match_maps": [ - 2994, + 2990, { "objects": [ - 2989, + 2985, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2996 + 2992 ] } ], "insert_match_maps_one": [ - 2977, + 2973, { "object": [ - 2989, + 2985, "match_maps_insert_input!" ], "on_conflict": [ - 2996 + 2992 ] } ], "insert_match_options": [ - 3038, + 3034, { "objects": [ - 3033, + 3029, "[match_options_insert_input!]!" ], "on_conflict": [ - 3040 + 3036 ] } ], "insert_match_options_one": [ - 3019, + 3015, { "object": [ - 3033, + 3029, "match_options_insert_input!" ], "on_conflict": [ - 3040 + 3036 ] } ], "insert_match_region_veto_picks": [ - 3081, + 3077, { "objects": [ - 3076, + 3072, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 3082 + 3078 ] } ], "insert_match_region_veto_picks_one": [ - 3065, + 3061, { "object": [ - 3076, + 3072, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 3082 + 3078 ] } ], "insert_match_streams": [ - 3116, + 3112, { "objects": [ - 3111, + 3107, "[match_streams_insert_input!]!" ], "on_conflict": [ - 3117 + 3113 ] } ], "insert_match_streams_one": [ - 3093, + 3089, { "object": [ - 3111, + 3107, "match_streams_insert_input!" ], "on_conflict": [ - 3117 + 3113 ] } ], "insert_match_type_cfgs": [ - 3151, + 3147, { "objects": [ - 3148, + 3144, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 3152 + 3148 ] } ], "insert_match_type_cfgs_one": [ - 3143, + 3139, { "object": [ - 3148, + 3144, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 3152 + 3148 ] } ], "insert_matches": [ - 3180, + 3176, { "objects": [ - 3175, + 3171, "[matches_insert_input!]!" ], "on_conflict": [ - 3182 + 3178 ] } ], "insert_matches_one": [ - 3161, + 3157, { "object": [ - 3175, + 3171, "matches_insert_input!" ], "on_conflict": [ - 3182 + 3178 ] } ], "insert_migration_hashes_hashes": [ - 3215, + 3211, { "objects": [ - 3212, + 3208, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 3216 + 3212 ] } ], "insert_migration_hashes_hashes_one": [ - 3207, + 3203, { "object": [ - 3212, + 3208, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 3216 + 3212 ] } ], "insert_my_friends": [ - 3247, + 3243, { "objects": [ - 3242, + 3238, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 3225, + 3221, { "object": [ - 3242, + 3238, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 3281, + 3277, { "objects": [ - 3278, + 3274, "[news_articles_insert_input!]!" ], "on_conflict": [ - 3282 + 3278 ] } ], "insert_news_articles_one": [ - 3271, + 3267, { "object": [ - 3278, + 3274, "news_articles_insert_input!" ], "on_conflict": [ - 3282 + 3278 ] } ], "insert_notification_preferences": [ - 3308, + 3304, { "objects": [ - 3305, + 3301, "[notification_preferences_insert_input!]!" ], "on_conflict": [ - 3309 + 3305 ] } ], "insert_notification_preferences_one": [ - 3298, + 3294, { "object": [ - 3305, + 3301, "notification_preferences_insert_input!" ], "on_conflict": [ - 3309 + 3305 ] } ], "insert_notifications": [ - 3348, + 3344, { "objects": [ - 3343, + 3339, "[notifications_insert_input!]!" ], "on_conflict": [ - 3349 + 3345 ] } ], "insert_notifications_one": [ - 3325, + 3321, { "object": [ - 3343, + 3339, "notifications_insert_input!" ], "on_conflict": [ - 3349 + 3345 ] } ], "insert_pending_match_import_players": [ - 3395, + 3391, { "objects": [ - 3390, + 3386, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 3396 + 3392 ] } ], "insert_pending_match_import_players_one": [ - 3378, + 3374, { "object": [ - 3390, + 3386, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 3396 + 3392 ] } ], "insert_pending_match_imports": [ - 3429, + 3425, { "objects": [ - 3426, + 3422, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 3431 + 3427 ] } ], "insert_pending_match_imports_one": [ - 3419, + 3415, { "object": [ - 3426, + 3422, "pending_match_imports_insert_input!" ], "on_conflict": [ - 3431 + 3427 ] } ], "insert_player_aim_stats_demo": [ - 3457, + 3453, { "objects": [ - 3454, + 3450, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 3458 + 3454 ] } ], "insert_player_aim_stats_demo_one": [ - 3447, + 3443, { "object": [ - 3454, + 3450, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 3458 + 3454 ] } ], "insert_player_aim_weapon_stats": [ - 3491, + 3487, { "objects": [ - 3486, + 3482, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 3492 + 3488 ] } ], "insert_player_aim_weapon_stats_one": [ - 3474, + 3470, { "object": [ - 3486, + 3482, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 3492 + 3488 ] } ], "insert_player_assists": [ - 3534, + 3530, { "objects": [ - 3529, + 3525, "[player_assists_insert_input!]!" ], "on_conflict": [ - 3535 + 3531 ] } ], "insert_player_assists_one": [ - 3515, + 3511, { "object": [ - 3529, + 3525, "player_assists_insert_input!" ], "on_conflict": [ - 3535 + 3531 ] } ], "insert_player_damages": [ - 3595, + 3591, { "objects": [ - 3590, + 3586, "[player_damages_insert_input!]!" ], "on_conflict": [ - 3596 + 3592 ] } ], "insert_player_damages_one": [ - 3578, + 3574, { "object": [ - 3590, + 3586, "player_damages_insert_input!" ], "on_conflict": [ - 3596 + 3592 ] } ], "insert_player_elo": [ - 3629, + 3625, { "objects": [ - 3626, + 3622, "[player_elo_insert_input!]!" ], "on_conflict": [ - 3630 + 3626 ] } ], "insert_player_elo_one": [ - 3619, + 3615, { "object": [ - 3626, + 3622, "player_elo_insert_input!" ], "on_conflict": [ - 3630 + 3626 ] } ], "insert_player_faceit_rank_history": [ - 3663, + 3659, { "objects": [ - 3658, + 3654, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 3664 + 3660 ] } ], "insert_player_faceit_rank_history_one": [ - 3646, + 3642, { "object": [ - 3658, + 3654, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 3664 + 3660 ] } ], "insert_player_flashes": [ - 3706, + 3702, { "objects": [ - 3701, + 3697, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 3707 + 3703 ] } ], "insert_player_flashes_one": [ - 3687, + 3683, { "object": [ - 3701, + 3697, "player_flashes_insert_input!" ], "on_conflict": [ - 3707 + 3703 ] } ], "insert_player_kills": [ - 3792, + 3788, { "objects": [ - 3787, + 3783, "[player_kills_insert_input!]!" ], "on_conflict": [ - 3793 + 3789 ] } ], "insert_player_kills_by_weapon": [ - 3761, + 3757, { "objects": [ - 3756, + 3752, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 3762 + 3758 ] } ], "insert_player_kills_by_weapon_one": [ - 3744, + 3740, { "object": [ - 3756, + 3752, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 3762 + 3758 ] } ], "insert_player_kills_one": [ - 3732, + 3728, { "object": [ - 3787, + 3783, "player_kills_insert_input!" ], "on_conflict": [ - 3793 + 3789 ] } ], "insert_player_leaderboard_rank": [ - 3827, + 3823, { "objects": [ - 3824, + 3820, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 3818, + 3814, { "object": [ - 3824, + 3820, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 3858, + 3854, { "objects": [ - 3853, + 3849, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 3859 + 3855 ] } ], "insert_player_match_map_stats_one": [ - 3841, + 3837, { "object": [ - 3853, + 3849, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 3859 + 3855 ] } ], "insert_player_objectives": [ - 3950, + 3946, { "objects": [ - 3945, + 3941, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3951 + 3947 ] } ], "insert_player_objectives_one": [ - 3933, + 3929, { "object": [ - 3945, + 3941, "player_objectives_insert_input!" ], "on_conflict": [ - 3951 + 3947 ] } ], "insert_player_premier_rank_history": [ - 4009, + 4005, { "objects": [ - 4004, + 4000, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 4010 + 4006 ] } ], "insert_player_premier_rank_history_one": [ - 3992, + 3988, { "object": [ - 4004, + 4000, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 4010 + 4006 ] } ], "insert_player_sanctions": [ - 4050, + 4046, { "objects": [ - 4045, + 4041, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 4051 + 4047 ] } ], "insert_player_sanctions_one": [ - 4033, + 4029, { "object": [ - 4045, + 4041, "player_sanctions_insert_input!" ], "on_conflict": [ - 4051 + 4047 ] } ], "insert_player_season_stats": [ - 4101, + 4097, { "objects": [ - 4096, + 4092, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 4102 + 4098 ] } ], "insert_player_season_stats_one": [ - 4074, + 4070, { "object": [ - 4096, + 4092, "player_season_stats_insert_input!" ], "on_conflict": [ - 4102 + 4098 ] } ], "insert_player_stats": [ - 4143, + 4139, { "objects": [ - 4140, + 4136, "[player_stats_insert_input!]!" ], "on_conflict": [ - 4145 + 4141 ] } ], "insert_player_stats_one": [ - 4133, + 4129, { "object": [ - 4140, + 4136, "player_stats_insert_input!" ], "on_conflict": [ - 4145 + 4141 ] } ], "insert_player_steam_bot_friend": [ - 4175, + 4171, { "objects": [ - 4172, + 4168, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 4176 + 4172 ] } ], "insert_player_steam_bot_friend_one": [ - 4161, + 4157, { "object": [ - 4172, + 4168, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 4176 + 4172 ] } ], "insert_player_steam_match_auth": [ - 4203, + 4199, { "objects": [ - 4200, + 4196, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 4204 + 4200 ] } ], "insert_player_steam_match_auth_one": [ - 4193, + 4189, { "object": [ - 4200, + 4196, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 4204 + 4200 ] } ], "insert_player_unused_utility": [ - 4237, + 4233, { "objects": [ - 4232, + 4228, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 4238 + 4234 ] } ], "insert_player_unused_utility_one": [ - 4220, + 4216, { "object": [ - 4232, + 4228, "player_unused_utility_insert_input!" ], "on_conflict": [ - 4238 + 4234 ] } ], "insert_player_utility": [ - 4278, + 4274, { "objects": [ - 4273, + 4269, "[player_utility_insert_input!]!" ], "on_conflict": [ - 4279 + 4275 ] } ], "insert_player_utility_one": [ - 4261, + 4257, { "object": [ - 4273, + 4269, "player_utility_insert_input!" ], "on_conflict": [ - 4279 + 4275 ] } ], "insert_players": [ - 4345, + 4341, { "objects": [ - 4342, + 4338, "[players_insert_input!]!" ], "on_conflict": [ - 4347 + 4343 ] } ], "insert_players_one": [ - 4335, + 4331, { "object": [ - 4342, + 4338, "players_insert_input!" ], "on_conflict": [ - 4347 + 4343 ] } ], "insert_plugin_versions": [ - 4373, + 4369, { "objects": [ - 4370, + 4366, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 4374 + 4370 ] } ], "insert_plugin_versions_one": [ - 4363, + 4359, { "object": [ - 4370, + 4366, "plugin_versions_insert_input!" ], "on_conflict": [ - 4374 + 4370 ] } ], "insert_push_subscriptions": [ - 4400, + 4396, { "objects": [ - 4397, + 4393, "[push_subscriptions_insert_input!]!" ], "on_conflict": [ - 4401 + 4397 ] } ], "insert_push_subscriptions_one": [ - 4390, + 4386, { "object": [ - 4397, + 4393, "push_subscriptions_insert_input!" ], "on_conflict": [ - 4401 + 4397 ] } ], "insert_seasons": [ - 4431, + 4427, { "objects": [ - 4428, + 4424, "[seasons_insert_input!]!" ], "on_conflict": [ - 4433 + 4429 ] } ], "insert_seasons_one": [ - 4421, + 4417, { "object": [ - 4428, + 4424, "seasons_insert_input!" ], "on_conflict": [ - 4433 + 4429 ] } ], "insert_server_regions": [ - 4458, + 4454, { "objects": [ - 4455, + 4451, "[server_regions_insert_input!]!" ], "on_conflict": [ - 4460 + 4456 ] } ], "insert_server_regions_one": [ - 4449, + 4445, { "object": [ - 4455, + 4451, "server_regions_insert_input!" ], "on_conflict": [ - 4460 + 4456 ] } ], "insert_servers": [ - 4499, + 4495, { "objects": [ - 4494, + 4490, "[servers_insert_input!]!" ], "on_conflict": [ - 4501 + 4497 ] } ], "insert_servers_one": [ - 4476, + 4472, { "object": [ - 4494, + 4490, "servers_insert_input!" ], "on_conflict": [ - 4501 + 4497 ] } ], "insert_settings": [ - 4535, + 4531, { "objects": [ - 4532, + 4528, "[settings_insert_input!]!" ], "on_conflict": [ - 4536 + 4532 ] } ], "insert_settings_one": [ - 4527, + 4523, { "object": [ - 4532, + 4528, "settings_insert_input!" ], "on_conflict": [ - 4536 + 4532 ] } ], "insert_steam_account_claims": [ - 4561, + 4557, { "objects": [ - 4556, + 4552, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 4562 + 4558 ] } ], "insert_steam_account_claims_one": [ - 4547, + 4543, { "object": [ - 4556, + 4552, "steam_account_claims_insert_input!" ], "on_conflict": [ - 4562 + 4558 ] } ], "insert_steam_accounts": [ - 4581, + 4577, { "objects": [ - 4578, + 4574, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 4583 + 4579 ] } ], "insert_steam_accounts_one": [ - 4571, + 4567, { "object": [ - 4578, + 4574, "steam_accounts_insert_input!" ], "on_conflict": [ - 4583 + 4579 ] } ], "insert_system_alerts": [ - 4609, + 4605, { "objects": [ - 4606, + 4602, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 4610 + 4606 ] } ], "insert_system_alerts_one": [ - 4599, + 4595, { "object": [ - 4606, + 4602, "system_alerts_insert_input!" ], "on_conflict": [ - 4610 + 4606 ] } ], "insert_team_invites": [ - 4643, + 4639, { "objects": [ - 4638, + 4634, "[team_invites_insert_input!]!" ], "on_conflict": [ - 4644 + 4640 ] } ], "insert_team_invites_one": [ - 4626, + 4622, { "object": [ - 4638, + 4634, "team_invites_insert_input!" ], "on_conflict": [ - 4644 + 4640 ] } ], "insert_team_roster": [ - 4686, + 4682, { "objects": [ - 4681, + 4677, "[team_roster_insert_input!]!" ], "on_conflict": [ - 4687 + 4683 ] } ], "insert_team_roster_one": [ - 4667, + 4663, { "object": [ - 4681, + 4677, "team_roster_insert_input!" ], "on_conflict": [ - 4687 + 4683 ] } ], "insert_team_scrim_alerts": [ - 4722, + 4718, { "objects": [ - 4719, + 4715, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 4723 + 4719 ] } ], "insert_team_scrim_alerts_one": [ - 4712, + 4708, { "object": [ - 4719, + 4715, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 4723 + 4719 ] } ], "insert_team_scrim_availability": [ - 4755, + 4751, { "objects": [ - 4750, + 4746, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 4756 + 4752 ] } ], "insert_team_scrim_availability_one": [ - 4739, + 4735, { "object": [ - 4750, + 4746, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 4756 + 4752 ] } ], "insert_team_scrim_request_proposals": [ - 4784, + 4780, { "objects": [ - 4779, + 4775, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 4785 + 4781 ] } ], "insert_team_scrim_request_proposals_one": [ - 4767, + 4763, { "object": [ - 4779, + 4775, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 4785 + 4781 ] } ], "insert_team_scrim_requests": [ - 4827, + 4823, { "objects": [ - 4822, + 4818, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 4829 + 4825 ] } ], "insert_team_scrim_requests_one": [ - 4808, + 4804, { "object": [ - 4822, + 4818, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 4829 + 4825 ] } ], "insert_team_scrim_settings": [ - 4864, + 4860, { "objects": [ - 4861, + 4857, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 4866 + 4862 ] } ], "insert_team_scrim_settings_one": [ - 4854, + 4850, { "object": [ - 4861, + 4857, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 4866 + 4862 ] } ], "insert_team_suggestions": [ - 4892, + 4888, { "objects": [ - 4889, + 4885, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 4893 + 4889 ] } ], "insert_team_suggestions_one": [ - 4882, + 4878, { "object": [ - 4889, + 4885, "team_suggestions_insert_input!" ], "on_conflict": [ - 4893 + 4889 ] } ], "insert_teams": [ - 4928, + 4924, { "objects": [ - 4923, + 4919, "[teams_insert_input!]!" ], "on_conflict": [ - 4930 + 4926 ] } ], "insert_teams_one": [ - 4909, + 4905, { "object": [ - 4923, + 4919, "teams_insert_input!" ], "on_conflict": [ - 4930 + 4926 ] } ], "insert_tournament_awards": [ - 4977, + 4973, { "objects": [ - 4972, + 4968, "[tournament_awards_insert_input!]!" ], "on_conflict": [ - 4979 + 4975 ] } ], "insert_tournament_awards_one": [ - 4960, + 4956, { "object": [ - 4972, + 4968, "tournament_awards_insert_input!" ], "on_conflict": [ - 4979 + 4975 ] } ], "insert_tournament_brackets": [ - 5021, + 5017, { "objects": [ - 5016, + 5012, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 5023 + 5019 ] } ], "insert_tournament_brackets_one": [ - 5002, + 4998, { "object": [ - 5016, + 5012, "tournament_brackets_insert_input!" ], "on_conflict": [ - 5023 + 5019 ] } ], "insert_tournament_categories": [ - 5062, + 5058, { "objects": [ - 5057, + 5053, "[tournament_categories_insert_input!]!" ], "on_conflict": [ - 5063 + 5059 ] } ], "insert_tournament_categories_one": [ - 5048, + 5044, { "object": [ - 5057, + 5053, "tournament_categories_insert_input!" ], "on_conflict": [ - 5063 + 5059 ] } ], "insert_tournament_organizer_teams": [ - 5086, + 5082, { "objects": [ - 5081, + 5077, "[tournament_organizer_teams_insert_input!]!" ], "on_conflict": [ - 5087 + 5083 ] } ], "insert_tournament_organizer_teams_one": [ - 5072, + 5068, { "object": [ - 5081, + 5077, "tournament_organizer_teams_insert_input!" ], "on_conflict": [ - 5087 + 5083 ] } ], "insert_tournament_organizers": [ - 5113, + 5109, { "objects": [ - 5108, + 5104, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 5114 + 5110 ] } ], "insert_tournament_organizers_one": [ - 5096, + 5092, { "object": [ - 5108, + 5104, "tournament_organizers_insert_input!" ], "on_conflict": [ - 5114 + 5110 ] } ], "insert_tournament_prizes": [ - 5154, + 5150, { "objects": [ - 5149, + 5145, "[tournament_prizes_insert_input!]!" ], "on_conflict": [ - 5155 + 5151 ] } ], "insert_tournament_prizes_one": [ - 5137, + 5133, { "object": [ - 5149, + 5145, "tournament_prizes_insert_input!" ], "on_conflict": [ - 5155 + 5151 ] } ], "insert_tournament_stage_windows": [ - 5195, + 5191, { "objects": [ - 5190, + 5186, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 5196 + 5192 ] } ], "insert_tournament_stage_windows_one": [ - 5178, + 5174, { "object": [ - 5190, + 5186, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 5196 + 5192 ] } ], "insert_tournament_stages": [ - 5242, + 5238, { "objects": [ - 5237, + 5233, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 5244 + 5240 ] } ], "insert_tournament_stages_one": [ - 5219, + 5215, { "object": [ - 5237, + 5233, "tournament_stages_insert_input!" ], "on_conflict": [ - 5244 + 5240 ] } ], "insert_tournament_team_invites": [ - 5287, + 5283, { "objects": [ - 5282, + 5278, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 5288 + 5284 ] } ], "insert_tournament_team_invites_one": [ - 5270, + 5266, { "object": [ - 5282, + 5278, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 5288 + 5284 ] } ], "insert_tournament_team_roster": [ - 5328, + 5324, { "objects": [ - 5323, + 5319, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 5329 + 5325 ] } ], "insert_tournament_team_roster_one": [ - 5311, + 5307, { "object": [ - 5323, + 5319, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 5329 + 5325 ] } ], "insert_tournament_teams": [ - 5369, + 5365, { "objects": [ - 5364, + 5360, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 5371 + 5367 ] } ], "insert_tournament_teams_one": [ - 5352, + 5348, { "object": [ - 5364, + 5360, "tournament_teams_insert_input!" ], "on_conflict": [ - 5371 + 5367 ] } ], "insert_tournaments": [ - 5423, + 5419, { "objects": [ - 5418, + 5414, "[tournaments_insert_input!]!" ], "on_conflict": [ - 5425 + 5421 ] } ], "insert_tournaments_one": [ - 5394, + 5390, { "object": [ - 5418, + 5414, "tournaments_insert_input!" ], "on_conflict": [ - 5425 + 5421 ] } ], "insert_v_match_captains": [ - 5623, + 5619, { "objects": [ - 5620, + 5616, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 5614, + 5610, { "object": [ - 5620, + 5616, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 5734, + 5730, { "objects": [ - 5731, + 5727, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 5725, + 5721, { "object": [ - 5731, + 5727, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 5956, + 5952, { "objects": [ - 5951, + 5947, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 5940, + 5936, { "object": [ - 5951, + 5947, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 6133, + 6129, { "objects": [ - 6128, + 6124, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 6118, + 6114, { "object": [ - 6128, + 6124, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 6227, + 6223, { "objects": [ - 6222, + 6218, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 6229 + 6225 ] } ], "insert_v_team_stage_results_one": [ - 6200, + 6196, { "object": [ - 6222, + 6218, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 6229 + 6225 ] } ], "installGamePlugin": [ - 86, + 87, { "slug": [ - 83, + 84, "String!" ], "version": [ - 83 + 84 ] } ], "joinDraftGame": [ - 86, + 87, { "draftGameId": [ - 5458, + 5454, "uuid!" ], "inviteCode": [ - 83 + 84 ] } ], "joinDraftGameAsParty": [ - 86, + 87, { "draftGameId": [ - 5458, + 5454, "uuid!" ], "inviteCode": [ - 83 + 84 ] } ], "kickServerPlayer": [ - 42, + 43, { "reason": [ - 83 + 84 ], "serverId": [ - 83, + 84, "String!" ], "steam_id": [ - 83, + 84, "String!" ] } ], "league_award_forfeit": [ - 3161, + 3157, { "args": [ - 2217, + 2213, "league_award_forfeit_args!" ], "distinct_on": [ - 3185, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3183, + 3179, "[matches_order_by!]" ], "where": [ - 3172 + 3168 ] } ], "leaveLineup": [ - 86, + 87, { "match_id": [ - 83, + 84, "String!" ] } ], "linkSteamMatchHistory": [ - 75, + 76, { "auth_code": [ - 83, + 84, "String!" ], "share_code": [ - 83, + 84, "String!" ] } ], "loadFixtures": [ - 86 + 87 ], "logout": [ - 86 + 87 ], "moveServerItem": [ - 86, + 87, { "dest_path": [ - 83, + 84, "String!" ], "node_id": [ - 83, + 84, "String!" ], "server_id": [ - 83 + 84 ], "source_path": [ - 83, + 84, "String!" ] } ], "orphanedDemosScanResult": [ - 54 + 55 ], "pauseClipRenderBatch": [ - 86, + 87, { "match_map_id": [ - 5458, + 5454, "uuid!" ] } ], "pollSteamMatchHistory": [ - 76 + 77 ], "previewDraftGame": [ - 24, + 25, { "draftGameId": [ - 5458, + 5454, "uuid!" ], "inviteCode": [ - 83 + 84 ] } ], "previewGameMode": [ - 58, + 59, { "gameModeId": [ - 5458, + 5454, "uuid!" ] } ], "queueClipFromPreset": [ - 15, + 16, { "fps": [ - 40 + 41 ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "preset": [ - 83, + 84, "String!" ], "resolution": [ - 83 + 84 ], "target_name": [ - 83 + 84 ], "target_steam_id": [ - 83, + 84, "String!" ], "title": [ - 83 + 84 ] } ], "randomizeTeams": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "rebootMatchServer": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "recalculate_tournament_awards": [ - 199, + 200, { "args": [ - 4417, + 4413, "recalculate_tournament_awards_args!" ], "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "recomputePlayerElo": [ - 62 + 63 ], "recomputePlayerEloStatus": [ - 63 + 64 ], "reconcileNodePlugins": [ - 64, + 65, { "nodeId": [ - 83, + 84, "String!" ] } ], "reconnectLive": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "refreshAllPlayers": [ - 65 + 66 ], "refreshAllPlayersStatus": [ - 66 + 67 ], "refreshFaceitRank": [ - 86, + 87, { "steam_id": [ - 83, + 84, "String!" ] } ], "refreshLiveHud": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "registerName": [ - 86, + 87, { "name": [ - 83, + 84, "String!" ] } ], "removeFixtures": [ - 86 + 87 ], "removeSteamPresenceBotAccount": [ - 86, + 87, { "account_id": [ - 83, + 84, "String!" ] } ], "remove_league_team_from_season": [ - 2509, + 2505, { "args": [ - 4418, + 4414, "remove_league_team_from_season_args!" ], "distinct_on": [ - 2531, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2529, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2518 + 2514 ] } ], "renameServerItem": [ - 86, + 87, { "new_path": [ - 83, + 84, "String!" ], "node_id": [ - 83, + 84, "String!" ], "old_path": [ - 83, + 84, "String!" ], "server_id": [ - 83 + 84 ] } ], "reorder_league_divisions": [ - 2218, + 2214, { "args": [ - 4419, + 4415, "reorder_league_divisions_args!" ], "distinct_on": [ - 2233, + 2229, "[league_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2231, + 2227, "[league_divisions_order_by!]" ], "where": [ - 2222 + 2218 ] } ], "reparseAllDemos": [ - 67 + 68 ], "reparseAllDemosStatus": [ - 68 + 69 ], "reparseDemo": [ - 86, + 87, { "match_map_id": [ - 5458, + 5454, "uuid!" ] } ], "reparseMatchDemos": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "requestNameChange": [ - 86, + 87, { "name": [ - 83, + 84, "String!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "requeueClipRender": [ - 86, + 87, { "job_id": [ - 5458, + 5454, "uuid!" ] } ], "respondDraftInvite": [ - 86, + 87, { "accept": [ - 5, + 6, "Boolean!" ], "draftGameId": [ - 5458, + 5454, "uuid!" ] } ], "respondToScrimRequest": [ - 86, + 87, { "accept": [ - 5, + 6, "Boolean!" ], "request_id": [ - 5458, + 5454, "uuid!" ] } ], "restartService": [ - 86, + 87, { "service": [ - 83, + 84, "String!" ] } ], "restart_league_season": [ - 2394, + 2390, { "args": [ - 4420, + 4416, "restart_league_season_args!" ], "distinct_on": [ - 2414, + 2410, "[league_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2411, + 2407, "[league_seasons_order_by!]" ], "where": [ - 2399 + 2395 ] } ], "resumeClipRenderBatch": [ - 86, + 87, { "match_map_id": [ - 5458, + 5454, "uuid!" ] } ], "retryClipRenderBatch": [ - 86, + 87, { "match_map_id": [ - 5458, + 5454, "uuid!" ], "only_failed": [ - 5 + 6 ] } ], "retryPendingMatchImport": [ - 55, + 56, { "valve_match_id": [ - 83, + 84, "String!" ] } ], "revokeAward": [ - 86, + 87, { "id": [ - 5458, + 5454, "uuid!" ] } ], "sanctionServerPlayer": [ - 69, + 70, { "duration": [ - 31 + 32 ], "reason": [ - 83 + 84 ], "serverId": [ - 83 + 84 ], "steam_id": [ - 83, + 84, "String!" ], "type": [ - 83, + 84, "String!" ] } ], "saveAward": [ - 3, + 4, { "allow_multiple": [ - 5 + 6 ], "description": [ - 83 + 84 ], "event_id": [ - 5458 + 5454 ], "id": [ - 5458 + 5454 ], "league_season_id": [ - 5458 + 5454 ], "name": [ - 83, + 84, "String!" ], "season_id": [ - 5458 + 5454 ], "silhouette": [ - 40 + 41 ], "tier": [ - 83, + 84, "String!" ], "tournament_id": [ - 5458 + 5454 ] } ], "saveNewsPost": [ - 50, + 51, { "content_markdown": [ - 83, + 84, "String!" ], "cover_image_url": [ - 83 + 84 ], "id": [ - 5458 + 5454 ], "teaser": [ - 83 + 84 ], "title": [ - 83, + 84, "String!" ] } ], "scanOrphanedDemos": [ - 70 + 71 ], "scanSteamBans": [ - 86 + 87 ], "scheduleMatch": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958 + 4954 ] } ], "sendScrimRequest": [ - 86, + 87, { "best_of": [ - 40 + 41 ], "from_team_id": [ - 5458, + 5454, "uuid!" ], "proposed_scheduled_at": [ - 4958, + 4954, "timestamptz!" ], "region": [ - 83 + 84 ], "to_team_id": [ - 5458, + 5454, "uuid!" ] } ], "setGameNodeSchedulingState": [ - 86, + 87, { "enabled": [ - 5, + 6, "Boolean!" ], "game_server_node_id": [ - 83, + 84, "String!" ] } ], "setHudMode": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ], "mode": [ - 83, + 84, "String!" ] } ], "setMapWinner": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "winning_lineup_id": [ - 5458, + 5454, "uuid!" ] } ], "setMatchWinner": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ], "winning_lineup_id": [ - 5458, + 5454, "uuid!" ] } ], "setNewsPostStatus": [ - 50, + 51, { "id": [ - 5458, + 5454, "uuid!" ], "status": [ - 83, + 84, "String!" ] } ], "setTournamentAward": [ - 106, + 107, { "award_id": [ - 5458 + 5454 ], "custom_name": [ - 83 + 84 ], "placement": [ - 40, + 41, "Int!" ], "silhouette": [ - 40 + 41 ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "setupGameServer": [ - 74 + 75 ], "skipShaders": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "specAutodirector": [ - 86, + 87, { "enabled": [ - 5, + 6, "Boolean!" ], "match_id": [ - 5458, + 5454, "uuid!" ] } ], "specClick": [ - 86, + 87, { "button": [ - 83, + 84, "String!" ], "match_id": [ - 5458, + 5454, "uuid!" ] } ], "specHud": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ], "visible": [ - 5, + 6, "Boolean!" ] } ], "specHudSides": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "specJump": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "specPlayer": [ - 86, + 87, { "accountid": [ - 40, + 41, "Int!" ], "match_id": [ - 5458, + 5454, "uuid!" ] } ], "specScoreboard": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ], "show": [ - 5, + 6, "Boolean!" ] } ], "specSlot": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ], "slot": [ - 40, + 41, "Int!" ] } ], "specXray": [ - 86, + 87, { "enabled": [ - 5, + 6, "Boolean!" ], "match_id": [ - 5458, + 5454, "uuid!" ] } ], "startLive": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ], "mode": [ - 83, + 84, "String!" ] } ], "startMatch": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ], "server_id": [ - 5458 + 5454 ] } ], "stopGpuSession": [ - 86, + 87, { "game_server_node_id": [ - 5458, + 5454, "uuid!" ] } ], "stopLive": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "stopWatchDemo": [ - 86, + 87, { "match_map_id": [ - 5458, + 5454, "uuid!" ] } ], "submitSteamPresenceSteamGuard": [ - 86, + 87, { "account_id": [ - 83, + 84, "String!" ], "code": [ - 83, + 84, "String!" ] } ], "swapLineups": [ - 86, + 87, { "match_id": [ - 5458, + 5454, "uuid!" ] } ], "switchLineup": [ - 86, + 87, { "match_id": [ - 83, + 84, "String!" ] } ], "switchLiveMatch": [ - 86, + 87, { "from_match_id": [ - 5458, + 5454, "uuid!" ], "mode": [ - 83, + 84, "String!" ], "to_match_id": [ - 5458, + 5454, "uuid!" ] } ], "syncPluginRegistry": [ - 87 + 88 ], "syncSteamFriends": [ - 86 + 87 ], "testFaceitIntegration": [ - 26 + 27 ], "testUpload": [ - 103 + 104 ], "uninstallGamePlugin": [ - 86, + 87, { "force": [ - 5 + 6 ], "slug": [ - 83, + 84, "String!" ] } ], "unlinkDiscord": [ - 86 + 87 ], "unlinkSteamMatchHistory": [ - 86 + 87 ], "unsanctionServerPlayer": [ - 69, + 70, { "serverId": [ - 83 + 84 ], "steam_id": [ - 83, + 84, "String!" ], "type": [ - 83, + 84, "String!" ] } ], "updateClip": [ - 86, + 87, { "clip_id": [ - 5458, + 5454, "uuid!" ], "target_steam_id": [ - 83 + 84 ], "title": [ - 83 + 84 ], "visibility": [ - 83 + 84 ] } ], "updateCs": [ - 86, + 87, { "game": [ - 83 + 84 ], "game_server_node_id": [ - 5458 + 5454 ] } ], "updateDraftGame": [ - 86, + 87, { "draftGameId": [ - 5458, + 5454, "uuid!" ], "settings": [ - 2191, + 2187, "jsonb!" ] } ], "updateServices": [ - 86 + 87 ], "update__map_pool": [ - 119, + 120, { "_set": [ - 124 + 125 ], "where": [ - 114, + 115, "_map_pool_bool_exp!" ] } ], "update__map_pool_by_pk": [ - 111, + 112, { "_set": [ - 124 + 125 ], "pk_columns": [ - 122, + 123, "_map_pool_pk_columns_input!" ] } ], "update__map_pool_many": [ - 119, + 120, { "updates": [ - 128, + 129, "[_map_pool_updates!]!" ] } ], "update_abandoned_matches": [ - 147, + 148, { "_inc": [ - 141 + 142 ], "_set": [ - 152 + 153 ], "where": [ - 139, + 140, "abandoned_matches_bool_exp!" ] } ], "update_abandoned_matches_by_pk": [ - 130, + 131, { "_inc": [ - 141 + 142 ], "_set": [ - 152 + 153 ], "pk_columns": [ - 150, + 151, "abandoned_matches_pk_columns_input!" ] } ], "update_abandoned_matches_many": [ - 147, + 148, { "updates": [ - 164, + 165, "[abandoned_matches_updates!]!" ] } ], "update_api_keys": [ - 181, + 182, { "_inc": [ - 177 + 178 ], "_set": [ - 186 + 187 ], "where": [ - 175, + 176, "api_keys_bool_exp!" ] } ], "update_api_keys_by_pk": [ - 171, + 172, { "_inc": [ - 177 + 178 ], "_set": [ - 186 + 187 ], "pk_columns": [ - 184, + 185, "api_keys_pk_columns_input!" ] } ], "update_api_keys_many": [ - 181, + 182, { "updates": [ - 194, + 195, "[api_keys_updates!]!" ] } ], "update_award_recipients": [ - 216, + 217, { "_inc": [ - 210 + 211 ], "_set": [ - 221 + 222 ], "where": [ - 208, + 209, "award_recipients_bool_exp!" ] } ], "update_award_recipients_by_pk": [ - 199, + 200, { "_inc": [ - 210 + 211 ], "_set": [ - 221 + 222 ], "pk_columns": [ - 219, + 220, "award_recipients_pk_columns_input!" ] } ], "update_award_recipients_many": [ - 216, + 217, { "updates": [ - 233, + 234, "[award_recipients_updates!]!" ] } ], "update_awards": [ - 250, + 251, { "_inc": [ - 246 + 247 ], "_set": [ - 256 + 257 ], "where": [ - 244, + 245, "awards_bool_exp!" ] } ], "update_awards_by_pk": [ - 240, + 241, { "_inc": [ - 246 + 247 ], "_set": [ - 256 + 257 ], "pk_columns": [ - 254, + 255, "awards_pk_columns_input!" ] } ], "update_awards_many": [ - 250, + 251, { "updates": [ - 264, + 265, "[awards_updates!]!" ] } ], "update_chat_read_state": [ - 283, + 284, { "_inc": [ - 279 + 280 ], "_set": [ - 288 + 289 ], "where": [ - 277, + 278, "chat_read_state_bool_exp!" ] } ], "update_chat_read_state_by_pk": [ - 273, + 274, { "_inc": [ - 279 + 280 ], "_set": [ - 288 + 289 ], "pk_columns": [ - 286, + 287, "chat_read_state_pk_columns_input!" ] } ], "update_chat_read_state_many": [ - 283, + 284, { "updates": [ - 296, + 297, "[chat_read_state_updates!]!" ] } ], "update_clip_render_jobs": [ - 323, + 324, { "_append": [ - 308 + 309 ], "_delete_at_path": [ - 314 + 315 ], "_delete_elem": [ - 315 + 316 ], "_delete_key": [ - 316 + 317 ], "_inc": [ - 317 + 318 ], "_prepend": [ - 327 + 328 ], "_set": [ - 331 + 332 ], "where": [ - 312, + 313, "clip_render_jobs_bool_exp!" ] } ], "update_clip_render_jobs_by_pk": [ - 300, + 301, { "_append": [ - 308 + 309 ], "_delete_at_path": [ - 314 + 315 ], "_delete_elem": [ - 315 + 316 ], "_delete_key": [ - 316 + 317 ], "_inc": [ - 317 + 318 ], "_prepend": [ - 327 + 328 ], "_set": [ - 331 + 332 ], "pk_columns": [ - 326, + 327, "clip_render_jobs_pk_columns_input!" ] } ], "update_clip_render_jobs_many": [ - 323, + 324, { "updates": [ - 343, + 344, "[clip_render_jobs_updates!]!" ] } ], "update_custom_pages": [ - 366, + 367, { "_append": [ - 355 + 356 ], "_delete_at_path": [ - 359 + 360 ], "_delete_elem": [ - 360 + 361 ], "_delete_key": [ - 361 + 362 ], "_inc": [ - 362 + 363 ], "_prepend": [ - 370 + 371 ], "_set": [ - 372 + 373 ], "where": [ - 357, + 358, "custom_pages_bool_exp!" ] } ], "update_custom_pages_by_pk": [ - 352, + 353, { "_append": [ - 355 + 356 ], "_delete_at_path": [ - 359 + 360 ], "_delete_elem": [ - 360 + 361 ], "_delete_key": [ - 361 + 362 ], "_inc": [ - 362 + 363 ], "_prepend": [ - 370 + 371 ], "_set": [ - 372 + 373 ], "pk_columns": [ - 369, + 370, "custom_pages_pk_columns_input!" ] } ], "update_custom_pages_many": [ - 366, + 367, { "updates": [ - 380, + 381, "[custom_pages_updates!]!" ] } ], "update_db_backups": [ - 394, + 395, { "_inc": [ - 390 + 391 ], "_set": [ - 399 + 400 ], "where": [ - 388, + 389, "db_backups_bool_exp!" ] } ], "update_db_backups_by_pk": [ - 384, + 385, { "_inc": [ - 390 + 391 ], "_set": [ - 399 + 400 ], "pk_columns": [ - 397, + 398, "db_backups_pk_columns_input!" ] } ], "update_db_backups_many": [ - 394, + 395, { "updates": [ - 407, + 408, "[db_backups_updates!]!" ] } ], "update_direct_conversations": [ - 421, + 422, { "_inc": [ - 417 + 418 ], "_set": [ - 426 + 427 ], "where": [ - 415, + 416, "direct_conversations_bool_exp!" ] } ], "update_direct_conversations_by_pk": [ - 411, + 412, { "_inc": [ - 417 + 418 ], "_set": [ - 426 + 427 ], "pk_columns": [ - 424, + 425, "direct_conversations_pk_columns_input!" ] } ], "update_direct_conversations_many": [ - 421, + 422, { "updates": [ - 434, + 435, "[direct_conversations_updates!]!" ] } ], "update_direct_messages": [ - 448, + 449, { "_inc": [ - 444 + 445 ], "_set": [ - 453 + 454 ], "where": [ - 442, + 443, "direct_messages_bool_exp!" ] } ], "update_direct_messages_by_pk": [ - 438, + 439, { "_inc": [ - 444 + 445 ], "_set": [ - 453 + 454 ], "pk_columns": [ - 451, + 452, "direct_messages_pk_columns_input!" ] } ], "update_direct_messages_many": [ - 448, + 449, { "updates": [ - 461, + 462, "[direct_messages_updates!]!" ] } ], "update_draft_game_picks": [ - 484, + 485, { "_inc": [ - 478 + 479 ], "_set": [ - 491 + 492 ], "where": [ - 476, + 477, "draft_game_picks_bool_exp!" ] } ], "update_draft_game_picks_by_pk": [ - 465, + 466, { "_inc": [ - 478 + 479 ], "_set": [ - 491 + 492 ], "pk_columns": [ - 487, + 488, "draft_game_picks_pk_columns_input!" ] } ], "update_draft_game_picks_many": [ - 484, + 485, { "updates": [ - 503, + 504, "[draft_game_picks_updates!]!" ] } ], "update_draft_game_players": [ - 529, + 530, { "_inc": [ - 523 + 524 ], "_set": [ - 536 + 537 ], "where": [ - 521, + 522, "draft_game_players_bool_exp!" ] } ], "update_draft_game_players_by_pk": [ - 510, + 511, { "_inc": [ - 523 + 524 ], "_set": [ - 536 + 537 ], "pk_columns": [ - 532, + 533, "draft_game_players_pk_columns_input!" ] } ], "update_draft_game_players_many": [ - 529, + 530, { "updates": [ - 548, + 549, "[draft_game_players_updates!]!" ] } ], "update_draft_games": [ - 574, + 575, { "_inc": [ - 568 + 569 ], "_set": [ - 582 + 583 ], "where": [ - 566, + 567, "draft_games_bool_exp!" ] } ], "update_draft_games_by_pk": [ - 555, + 556, { "_inc": [ - 568 + 569 ], "_set": [ - 582 + 583 ], "pk_columns": [ - 578, + 579, "draft_games_pk_columns_input!" ] } ], "update_draft_games_many": [ - 574, + 575, { "updates": [ - 594, + 595, "[draft_games_updates!]!" ] } ], "update_e_award_sources": [ - 611, + 612, { "_set": [ - 616 + 617 ], "where": [ - 604, + 605, "e_award_sources_bool_exp!" ] } ], "update_e_award_sources_by_pk": [ - 601, + 602, { "_set": [ - 616 + 617 ], "pk_columns": [ - 614, + 615, "e_award_sources_pk_columns_input!" ] } ], "update_e_award_sources_many": [ - 611, + 612, { "updates": [ - 620, + 621, "[e_award_sources_updates!]!" ] } ], "update_e_award_tiers": [ - 631, + 632, { "_set": [ - 636 + 637 ], "where": [ - 624, + 625, "e_award_tiers_bool_exp!" ] } ], "update_e_award_tiers_by_pk": [ - 621, + 622, { "_set": [ - 636 + 637 ], "pk_columns": [ - 634, + 635, "e_award_tiers_pk_columns_input!" ] } ], "update_e_award_tiers_many": [ - 631, + 632, { "updates": [ - 640, + 641, "[e_award_tiers_updates!]!" ] } ], "update_e_check_in_settings": [ - 651, + 652, { "_set": [ - 656 + 657 ], "where": [ - 644, + 645, "e_check_in_settings_bool_exp!" ] } ], "update_e_check_in_settings_by_pk": [ - 641, + 642, { "_set": [ - 656 + 657 ], "pk_columns": [ - 654, + 655, "e_check_in_settings_pk_columns_input!" ] } ], "update_e_check_in_settings_many": [ - 651, + 652, { "updates": [ - 660, + 661, "[e_check_in_settings_updates!]!" ] } ], "update_e_draft_game_captain_selection": [ - 671, + 672, { "_set": [ - 677 + 678 ], "where": [ - 664, + 665, "e_draft_game_captain_selection_bool_exp!" ] } ], "update_e_draft_game_captain_selection_by_pk": [ - 661, + 662, { "_set": [ - 677 + 678 ], "pk_columns": [ - 675, + 676, "e_draft_game_captain_selection_pk_columns_input!" ] } ], "update_e_draft_game_captain_selection_many": [ - 671, + 672, { "updates": [ - 681, + 682, "[e_draft_game_captain_selection_updates!]!" ] } ], "update_e_draft_game_draft_order": [ - 692, + 693, { "_set": [ - 698 + 699 ], "where": [ - 685, + 686, "e_draft_game_draft_order_bool_exp!" ] } ], "update_e_draft_game_draft_order_by_pk": [ - 682, + 683, { "_set": [ - 698 + 699 ], "pk_columns": [ - 696, + 697, "e_draft_game_draft_order_pk_columns_input!" ] } ], "update_e_draft_game_draft_order_many": [ - 692, + 693, { "updates": [ - 702, + 703, "[e_draft_game_draft_order_updates!]!" ] } ], "update_e_draft_game_mode": [ - 713, + 714, { "_set": [ - 719 + 720 ], "where": [ - 706, + 707, "e_draft_game_mode_bool_exp!" ] } ], "update_e_draft_game_mode_by_pk": [ - 703, + 704, { "_set": [ - 719 + 720 ], "pk_columns": [ - 717, + 718, "e_draft_game_mode_pk_columns_input!" ] } ], "update_e_draft_game_mode_many": [ - 713, + 714, { "updates": [ - 723, + 724, "[e_draft_game_mode_updates!]!" ] } ], "update_e_draft_game_player_status": [ - 734, + 735, { "_set": [ - 740 + 741 ], "where": [ - 727, + 728, "e_draft_game_player_status_bool_exp!" ] } ], "update_e_draft_game_player_status_by_pk": [ - 724, + 725, { "_set": [ - 740 + 741 ], "pk_columns": [ - 738, + 739, "e_draft_game_player_status_pk_columns_input!" ] } ], "update_e_draft_game_player_status_many": [ - 734, + 735, { "updates": [ - 744, + 745, "[e_draft_game_player_status_updates!]!" ] } ], "update_e_draft_game_status": [ - 755, + 756, { "_set": [ - 761 + 762 ], "where": [ - 748, + 749, "e_draft_game_status_bool_exp!" ] } ], "update_e_draft_game_status_by_pk": [ - 745, + 746, { "_set": [ - 761 + 762 ], "pk_columns": [ - 759, + 760, "e_draft_game_status_pk_columns_input!" ] } ], "update_e_draft_game_status_many": [ - 755, + 756, { "updates": [ - 765, + 766, "[e_draft_game_status_updates!]!" ] } ], "update_e_event_media_access": [ - 776, + 777, { "_set": [ - 781 + 782 ], "where": [ - 769, + 770, "e_event_media_access_bool_exp!" ] } ], "update_e_event_media_access_by_pk": [ - 766, + 767, { "_set": [ - 781 + 782 ], "pk_columns": [ - 779, + 780, "e_event_media_access_pk_columns_input!" ] } ], "update_e_event_media_access_many": [ - 776, + 777, { "updates": [ - 785, + 786, "[e_event_media_access_updates!]!" ] } ], "update_e_event_visibility": [ - 796, + 797, { "_set": [ - 801 + 802 ], "where": [ - 789, + 790, "e_event_visibility_bool_exp!" ] } ], "update_e_event_visibility_by_pk": [ - 786, + 787, { "_set": [ - 801 + 802 ], "pk_columns": [ - 799, + 800, "e_event_visibility_pk_columns_input!" ] } ], "update_e_event_visibility_many": [ - 796, + 797, { "updates": [ - 805, + 806, "[e_event_visibility_updates!]!" ] } ], "update_e_friend_status": [ - 816, + 817, { "_set": [ - 822 + 823 ], "where": [ - 809, + 810, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 806, + 807, { "_set": [ - 822 + 823 ], "pk_columns": [ - 820, + 821, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 816, + 817, { "updates": [ - 826, + 827, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 837, + 838, { "_set": [ - 842 + 843 ], "where": [ - 830, + 831, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 827, + 828, { "_set": [ - 842 + 843 ], "pk_columns": [ - 840, + 841, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 837, + 838, { "updates": [ - 846, + 847, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_plugin_channels": [ - 857, + 858, { "_set": [ - 862 + 863 ], "where": [ - 850, + 851, "e_game_plugin_channels_bool_exp!" ] } ], "update_e_game_plugin_channels_by_pk": [ - 847, + 848, { "_set": [ - 862 + 863 ], "pk_columns": [ - 860, + 861, "e_game_plugin_channels_pk_columns_input!" ] } ], "update_e_game_plugin_channels_many": [ - 857, + 858, { "updates": [ - 866, + 867, "[e_game_plugin_channels_updates!]!" ] } ], "update_e_game_plugin_install_statuses": [ - 877, + 878, { "_set": [ - 882 + 883 ], "where": [ - 870, + 871, "e_game_plugin_install_statuses_bool_exp!" ] } ], "update_e_game_plugin_install_statuses_by_pk": [ - 867, + 868, { "_set": [ - 882 + 883 ], "pk_columns": [ - 880, + 881, "e_game_plugin_install_statuses_pk_columns_input!" ] } ], "update_e_game_plugin_install_statuses_many": [ - 877, + 878, { "updates": [ - 886, + 887, "[e_game_plugin_install_statuses_updates!]!" ] } ], "update_e_game_plugin_kinds": [ - 897, + 898, { "_set": [ - 902 + 903 ], "where": [ - 890, + 891, "e_game_plugin_kinds_bool_exp!" ] } ], "update_e_game_plugin_kinds_by_pk": [ - 887, + 888, { "_set": [ - 902 + 903 ], "pk_columns": [ - 900, + 901, "e_game_plugin_kinds_pk_columns_input!" ] } ], "update_e_game_plugin_kinds_many": [ - 897, + 898, { "updates": [ - 906, + 907, "[e_game_plugin_kinds_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 917, + 918, { "_set": [ - 923 + 924 ], "where": [ - 910, + 911, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 907, + 908, { "_set": [ - 923 + 924 ], "pk_columns": [ - 921, + 922, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 917, + 918, { "updates": [ - 927, + 928, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_league_movement_types": [ - 938, + 939, { "_set": [ - 944 + 945 ], "where": [ - 931, + 932, "e_league_movement_types_bool_exp!" ] } ], "update_e_league_movement_types_by_pk": [ - 928, + 929, { "_set": [ - 944 + 945 ], "pk_columns": [ - 942, + 943, "e_league_movement_types_pk_columns_input!" ] } ], "update_e_league_movement_types_many": [ - 938, + 939, { "updates": [ - 948, + 949, "[e_league_movement_types_updates!]!" ] } ], "update_e_league_proposal_statuses": [ - 959, + 960, { "_set": [ - 965 + 966 ], "where": [ - 952, + 953, "e_league_proposal_statuses_bool_exp!" ] } ], "update_e_league_proposal_statuses_by_pk": [ - 949, + 950, { "_set": [ - 965 + 966 ], "pk_columns": [ - 963, + 964, "e_league_proposal_statuses_pk_columns_input!" ] } ], "update_e_league_proposal_statuses_many": [ - 959, + 960, { "updates": [ - 969, + 970, "[e_league_proposal_statuses_updates!]!" ] } ], "update_e_league_registration_statuses": [ - 980, + 981, { "_set": [ - 986 + 987 ], "where": [ - 973, + 974, "e_league_registration_statuses_bool_exp!" ] } ], "update_e_league_registration_statuses_by_pk": [ - 970, + 971, { "_set": [ - 986 + 987 ], "pk_columns": [ - 984, + 985, "e_league_registration_statuses_pk_columns_input!" ] } ], "update_e_league_registration_statuses_many": [ - 980, + 981, { "updates": [ - 990, + 991, "[e_league_registration_statuses_updates!]!" ] } ], "update_e_league_season_statuses": [ - 1001, + 1002, { "_set": [ - 1007 + 1008 ], "where": [ - 994, + 995, "e_league_season_statuses_bool_exp!" ] } ], "update_e_league_season_statuses_by_pk": [ - 991, + 992, { "_set": [ - 1007 + 1008 ], "pk_columns": [ - 1005, + 1006, "e_league_season_statuses_pk_columns_input!" ] } ], "update_e_league_season_statuses_many": [ - 1001, + 1002, { "updates": [ - 1011, + 1012, "[e_league_season_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 1022, + 1023, { "_set": [ - 1028 + 1029 ], "where": [ - 1015, + 1016, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 1012, + 1013, { "_set": [ - 1028 + 1029 ], "pk_columns": [ - 1026, + 1027, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 1022, + 1023, { "updates": [ - 1032, + 1033, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 1043, + 1044, { "_set": [ - 1048 + 1049 ], "where": [ - 1036, + 1037, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 1033, + 1034, { "_set": [ - 1048 + 1049 ], "pk_columns": [ - 1046, + 1047, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 1043, + 1044, { "updates": [ - 1052, + 1053, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 1063, + 1064, { "_set": [ - 1069 + 1070 ], "where": [ - 1056, + 1057, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 1053, + 1054, { "_set": [ - 1069 + 1070 ], "pk_columns": [ - 1067, + 1068, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 1063, + 1064, { "updates": [ - 1073, + 1074, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 1084, + 1085, { "_set": [ - 1089 + 1090 ], "where": [ - 1077, + 1078, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 1074, + 1075, { "_set": [ - 1089 + 1090 ], "pk_columns": [ - 1087, + 1088, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 1084, + 1085, { "updates": [ - 1093, + 1094, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 1104, + 1105, { "_set": [ - 1110 + 1111 ], "where": [ - 1097, + 1098, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 1094, + 1095, { "_set": [ - 1110 + 1111 ], "pk_columns": [ - 1108, + 1109, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 1104, + 1105, { "updates": [ - 1114, + 1115, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 1125, + 1126, { "_set": [ - 1130 + 1131 ], "where": [ - 1118, + 1119, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 1115, + 1116, { "_set": [ - 1130 + 1131 ], "pk_columns": [ - 1128, + 1129, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 1125, + 1126, { "updates": [ - 1134, + 1135, "[e_match_mode_updates!]!" ] } ], "update_e_match_party_sources": [ - 1145, + 1146, { "_set": [ - 1150 + 1151 ], "where": [ - 1138, + 1139, "e_match_party_sources_bool_exp!" ] } ], "update_e_match_party_sources_by_pk": [ - 1135, + 1136, { "_set": [ - 1150 + 1151 ], "pk_columns": [ - 1148, + 1149, "e_match_party_sources_pk_columns_input!" ] } ], "update_e_match_party_sources_many": [ - 1145, + 1146, { "updates": [ - 1154, + 1155, "[e_match_party_sources_updates!]!" ] } ], "update_e_match_status": [ - 1165, + 1166, { "_set": [ - 1171 + 1172 ], "where": [ - 1158, + 1159, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 1155, + 1156, { "_set": [ - 1171 + 1172 ], "pk_columns": [ - 1169, + 1170, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 1165, + 1166, { "updates": [ - 1175, + 1176, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 1186, + 1187, { "_set": [ - 1192 + 1193 ], "where": [ - 1179, + 1180, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 1176, + 1177, { "_set": [ - 1192 + 1193 ], "pk_columns": [ - 1190, + 1191, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 1186, + 1187, { "updates": [ - 1196, + 1197, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 1207, + 1208, { "_set": [ - 1212 + 1213 ], "where": [ - 1200, + 1201, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 1197, + 1198, { "_set": [ - 1212 + 1213 ], "pk_columns": [ - 1210, + 1211, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 1207, + 1208, { "updates": [ - 1216, + 1217, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 1227, + 1228, { "_set": [ - 1232 + 1233 ], "where": [ - 1220, + 1221, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 1217, + 1218, { "_set": [ - 1232 + 1233 ], "pk_columns": [ - 1230, + 1231, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 1227, + 1228, { "updates": [ - 1236, + 1237, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 1247, + 1248, { "_set": [ - 1252 + 1253 ], "where": [ - 1240, + 1241, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 1237, + 1238, { "_set": [ - 1252 + 1253 ], "pk_columns": [ - 1250, + 1251, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 1247, + 1248, { "updates": [ - 1256, + 1257, "[e_player_roles_updates!]!" ] } ], "update_e_plugin_runtimes": [ - 1267, + 1268, { "_set": [ - 1272 + 1273 ], "where": [ - 1260, + 1261, "e_plugin_runtimes_bool_exp!" ] } ], "update_e_plugin_runtimes_by_pk": [ - 1257, + 1258, { "_set": [ - 1272 + 1273 ], "pk_columns": [ - 1270, + 1271, "e_plugin_runtimes_pk_columns_input!" ] } ], "update_e_plugin_runtimes_many": [ - 1267, + 1268, { "updates": [ - 1276, + 1277, "[e_plugin_runtimes_updates!]!" ] } ], "update_e_ready_settings": [ - 1287, + 1288, { "_set": [ - 1292 + 1293 ], "where": [ - 1280, + 1281, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 1277, + 1278, { "_set": [ - 1292 + 1293 ], "pk_columns": [ - 1290, + 1291, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 1287, + 1288, { "updates": [ - 1296, + 1297, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 1307, + 1308, { "_set": [ - 1313 + 1314 ], "where": [ - 1300, + 1301, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 1297, + 1298, { "_set": [ - 1313 + 1314 ], "pk_columns": [ - 1311, + 1312, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 1307, + 1308, { "updates": [ - 1317, + 1318, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 1328, + 1329, { "_set": [ - 1333 + 1334 ], "where": [ - 1321, + 1322, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 1318, + 1319, { "_set": [ - 1333 + 1334 ], "pk_columns": [ - 1331, + 1332, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 1328, + 1329, { "updates": [ - 1337, + 1338, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 1348, + 1349, { "_set": [ - 1353 + 1354 ], "where": [ - 1341, + 1342, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 1338, + 1339, { "_set": [ - 1353 + 1354 ], "pk_columns": [ - 1351, + 1352, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 1348, + 1349, { "updates": [ - 1357, + 1358, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 1368, + 1369, { "_set": [ - 1373 + 1374 ], "where": [ - 1361, + 1362, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 1358, + 1359, { "_set": [ - 1373 + 1374 ], "pk_columns": [ - 1371, + 1372, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 1368, + 1369, { "updates": [ - 1377, + 1378, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 1388, + 1389, { "_set": [ - 1393 + 1394 ], "where": [ - 1381, + 1382, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 1378, + 1379, { "_set": [ - 1393 + 1394 ], "pk_columns": [ - 1391, + 1392, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 1388, + 1389, { "updates": [ - 1397, + 1398, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 1408, + 1409, { "_set": [ - 1414 + 1415 ], "where": [ - 1401, + 1402, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 1398, + 1399, { "_set": [ - 1414 + 1415 ], "pk_columns": [ - 1412, + 1413, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 1408, + 1409, { "updates": [ - 1418, + 1419, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 1429, + 1430, { "_set": [ - 1434 + 1435 ], "where": [ - 1422, + 1423, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 1419, + 1420, { "_set": [ - 1434 + 1435 ], "pk_columns": [ - 1432, + 1433, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 1429, + 1430, { "updates": [ - 1438, + 1439, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 1449, + 1450, { "_set": [ - 1454 + 1455 ], "where": [ - 1442, + 1443, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 1439, + 1440, { "_set": [ - 1454 + 1455 ], "pk_columns": [ - 1452, + 1453, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 1449, + 1450, { "updates": [ - 1458, + 1459, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_categories": [ - 1469, + 1470, { "_set": [ - 1475 + 1476 ], "where": [ - 1462, + 1463, "e_tournament_categories_bool_exp!" ] } ], "update_e_tournament_categories_by_pk": [ - 1459, + 1460, { "_set": [ - 1475 + 1476 ], "pk_columns": [ - 1473, + 1474, "e_tournament_categories_pk_columns_input!" ] } ], "update_e_tournament_categories_many": [ - 1469, + 1470, { "updates": [ - 1479, + 1480, "[e_tournament_categories_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 1490, + 1491, { "_set": [ - 1496 + 1497 ], "where": [ - 1483, + 1484, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 1480, + 1481, { "_set": [ - 1496 + 1497 ], "pk_columns": [ - 1494, + 1495, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 1490, + 1491, { "updates": [ - 1500, + 1501, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1511, + 1512, { "_set": [ - 1517 + 1518 ], "where": [ - 1504, + 1505, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1501, + 1502, { "_set": [ - 1517 + 1518 ], "pk_columns": [ - 1515, + 1516, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1511, + 1512, { "updates": [ - 1521, + 1522, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1532, + 1533, { "_set": [ - 1537 + 1538 ], "where": [ - 1525, + 1526, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1522, + 1523, { "_set": [ - 1537 + 1538 ], "pk_columns": [ - 1535, + 1536, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1532, + 1533, { "updates": [ - 1541, + 1542, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1552, + 1553, { "_set": [ - 1557 + 1558 ], "where": [ - 1545, + 1546, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1542, + 1543, { "_set": [ - 1557 + 1558 ], "pk_columns": [ - 1555, + 1556, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1552, + 1553, { "updates": [ - 1561, + 1562, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1572, + 1573, { "_set": [ - 1577 + 1578 ], "where": [ - 1565, + 1566, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1562, + 1563, { "_set": [ - 1577 + 1578 ], "pk_columns": [ - 1575, + 1576, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1572, + 1573, { "updates": [ - 1581, + 1582, "[e_winning_reasons_updates!]!" ] } ], "update_event_match_links": [ - 1590, + 1591, { "_set": [ - 1595 + 1596 ], "where": [ - 1585, + 1586, "event_match_links_bool_exp!" ] } ], "update_event_match_links_by_pk": [ - 1582, + 1583, { "_set": [ - 1595 + 1596 ], "pk_columns": [ - 1593, + 1594, "event_match_links_pk_columns_input!" ] } ], "update_event_match_links_many": [ - 1590, + 1591, { "updates": [ - 1599, + 1600, "[event_match_links_updates!]!" ] } ], "update_event_media": [ - 1617, + 1618, { "_inc": [ - 1611 + 1612 ], "_set": [ - 1664 + 1665 ], "where": [ - 1609, + 1610, "event_media_bool_exp!" ] } ], "update_event_media_by_pk": [ - 1600, + 1601, { "_inc": [ - 1611 + 1612 ], "_set": [ - 1664 + 1665 ], "pk_columns": [ - 1621, + 1622, "event_media_pk_columns_input!" ] } ], "update_event_media_many": [ - 1617, + 1618, { "updates": [ - 1676, + 1677, "[event_media_updates!]!" ] } ], "update_event_media_players": [ - 1639, + 1640, { "_inc": [ - 1633 + 1634 ], "_set": [ - 1644 + 1645 ], "where": [ - 1631, + 1632, "event_media_players_bool_exp!" ] } ], "update_event_media_players_by_pk": [ - 1622, + 1623, { "_inc": [ - 1633 + 1634 ], "_set": [ - 1644 + 1645 ], "pk_columns": [ - 1642, + 1643, "event_media_players_pk_columns_input!" ] } ], "update_event_media_players_many": [ - 1639, + 1640, { "updates": [ - 1656, + 1657, "[event_media_players_updates!]!" ] } ], "update_event_organizers": [ - 1700, + 1701, { "_inc": [ - 1694 + 1695 ], "_set": [ - 1705 + 1706 ], "where": [ - 1692, + 1693, "event_organizers_bool_exp!" ] } ], "update_event_organizers_by_pk": [ - 1683, + 1684, { "_inc": [ - 1694 + 1695 ], "_set": [ - 1705 + 1706 ], "pk_columns": [ - 1703, + 1704, "event_organizers_pk_columns_input!" ] } ], "update_event_organizers_many": [ - 1700, + 1701, { "updates": [ - 1717, + 1718, "[event_organizers_updates!]!" ] } ], "update_event_players": [ - 1741, + 1742, { "_inc": [ - 1735 + 1736 ], "_set": [ - 1746 + 1747 ], "where": [ - 1733, + 1734, "event_players_bool_exp!" ] } ], "update_event_players_by_pk": [ - 1724, + 1725, { "_inc": [ - 1735 + 1736 ], "_set": [ - 1746 + 1747 ], "pk_columns": [ - 1744, + 1745, "event_players_pk_columns_input!" ] } ], "update_event_players_many": [ - 1741, + 1742, { "updates": [ - 1758, + 1759, "[event_players_updates!]!" ] } ], "update_event_teams": [ - 1779, + 1780, { "_set": [ - 1784 + 1785 ], "where": [ - 1772, + 1773, "event_teams_bool_exp!" ] } ], "update_event_teams_by_pk": [ - 1765, + 1766, { "_set": [ - 1784 + 1785 ], "pk_columns": [ - 1782, + 1783, "event_teams_pk_columns_input!" ] } ], "update_event_teams_many": [ - 1779, + 1780, { "updates": [ - 1788, + 1789, "[event_teams_updates!]!" ] } ], "update_event_tournaments": [ - 1803, + 1804, { "_set": [ - 1808 + 1809 ], "where": [ - 1796, + 1797, "event_tournaments_bool_exp!" ] } ], "update_event_tournaments_by_pk": [ - 1789, + 1790, { "_set": [ - 1808 + 1809 ], "pk_columns": [ - 1806, + 1807, "event_tournaments_pk_columns_input!" ] } ], "update_event_tournaments_many": [ - 1803, + 1804, { "updates": [ - 1812, + 1813, "[event_tournaments_updates!]!" ] } ], "update_events": [ - 1823, + 1824, { "_inc": [ - 1819 + 1820 ], "_set": [ - 1829 + 1830 ], "where": [ - 1817, + 1818, "events_bool_exp!" ] } ], "update_events_by_pk": [ - 1813, + 1814, { "_inc": [ - 1819 + 1820 ], "_set": [ - 1829 + 1830 ], "pk_columns": [ - 1827, + 1828, "events_pk_columns_input!" ] } ], "update_events_many": [ - 1823, + 1824, { "updates": [ - 1837, + 1838, "[events_updates!]!" ] } ], "update_friends": [ - 1853, + 1854, { "_inc": [ - 1849 + 1850 ], "_set": [ - 1858 + 1859 ], "where": [ - 1847, + 1848, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1843, + 1844, { "_inc": [ - 1849 + 1850 ], "_set": [ - 1858 + 1859 ], "pk_columns": [ - 1856, + 1857, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1853, + 1854, { "updates": [ - 1866, + 1867, "[friends_updates!]!" ] } ], "update_game_mode_plugins": [ - 1893, + 1894, { "_append": [ - 1878 + 1879 ], "_delete_at_path": [ - 1884 + 1885 ], "_delete_elem": [ - 1885 + 1886 ], "_delete_key": [ - 1886 + 1887 ], "_inc": [ - 1887 + 1888 ], "_prepend": [ - 1897 + 1898 ], "_set": [ - 1901 + 1902 ], "where": [ - 1882, + 1883, "game_mode_plugins_bool_exp!" ] } ], "update_game_mode_plugins_by_pk": [ - 1870, + 1871, { "_append": [ - 1878 + 1879 ], "_delete_at_path": [ - 1884 + 1885 ], "_delete_elem": [ - 1885 + 1886 ], "_delete_key": [ - 1886 + 1887 ], "_inc": [ - 1887 + 1888 ], "_prepend": [ - 1897 + 1898 ], "_set": [ - 1901 + 1902 ], "pk_columns": [ - 1896, + 1897, "game_mode_plugins_pk_columns_input!" ] } ], "update_game_mode_plugins_many": [ - 1893, + 1894, { "updates": [ - 1913, + 1914, "[game_mode_plugins_updates!]!" ] } ], "update_game_modes": [ - 1932, + 1929, { - "_append": [ - 1923 - ], - "_delete_at_path": [ - 1926 - ], - "_delete_elem": [ - 1927 - ], - "_delete_key": [ - 1928 - ], - "_prepend": [ - 1937 - ], "_set": [ - 1939 + 1935 ], "where": [ 1924, @@ -167856,9099 +167835,9084 @@ export default { } ], "update_game_modes_by_pk": [ - 1920, + 1921, { - "_append": [ - 1923 - ], - "_delete_at_path": [ - 1926 - ], - "_delete_elem": [ - 1927 - ], - "_delete_key": [ - 1928 - ], - "_prepend": [ - 1937 - ], "_set": [ - 1939 + 1935 ], "pk_columns": [ - 1936, + 1933, "game_modes_pk_columns_input!" ] } ], "update_game_modes_many": [ - 1932, + 1929, { "updates": [ - 1943, + 1939, "[game_modes_updates!]!" ] } ], "update_game_plugin_installs": [ - 1952, + 1948, { "_set": [ - 1957 + 1953 ], "where": [ - 1947, + 1943, "game_plugin_installs_bool_exp!" ] } ], "update_game_plugin_installs_by_pk": [ - 1944, + 1940, { "_set": [ - 1957 + 1953 ], "pk_columns": [ - 1955, + 1951, "game_plugin_installs_pk_columns_input!" ] } ], "update_game_plugin_installs_many": [ - 1952, + 1948, { "updates": [ - 1961, + 1957, "[game_plugin_installs_updates!]!" ] } ], "update_game_plugin_versions": [ - 1981, + 1977, { "_inc": [ - 1975 + 1971 ], "_set": [ - 1988 + 1984 ], "where": [ - 1973, + 1969, "game_plugin_versions_bool_exp!" ] } ], "update_game_plugin_versions_by_pk": [ - 1962, + 1958, { "_inc": [ - 1975 + 1971 ], "_set": [ - 1988 + 1984 ], "pk_columns": [ - 1984, + 1980, "game_plugin_versions_pk_columns_input!" ] } ], "update_game_plugin_versions_many": [ - 1981, + 1977, { "updates": [ - 2000, + 1996, "[game_plugin_versions_updates!]!" ] } ], "update_game_plugins": [ - 2020, + 2016, { "_append": [ - 2010 + 2006 ], "_delete_at_path": [ - 2014 + 2010 ], "_delete_elem": [ - 2015 + 2011 ], "_delete_key": [ - 2016 + 2012 ], "_prepend": [ - 2025 + 2021 ], "_set": [ - 2027 + 2023 ], "where": [ - 2012, + 2008, "game_plugins_bool_exp!" ] } ], "update_game_plugins_by_pk": [ - 2007, + 2003, { "_append": [ - 2010 + 2006 ], "_delete_at_path": [ - 2014 + 2010 ], "_delete_elem": [ - 2015 + 2011 ], "_delete_key": [ - 2016 + 2012 ], "_prepend": [ - 2025 + 2021 ], "_set": [ - 2027 + 2023 ], "pk_columns": [ - 2024, + 2020, "game_plugins_pk_columns_input!" ] } ], "update_game_plugins_many": [ - 2020, + 2016, { "updates": [ - 2035, + 2031, "[game_plugins_updates!]!" ] } ], "update_game_server_node_plugins": [ - 2055, + 2051, { "_set": [ - 2062 + 2058 ], "where": [ - 2048, + 2044, "game_server_node_plugins_bool_exp!" ] } ], "update_game_server_node_plugins_by_pk": [ - 2039, + 2035, { "_set": [ - 2062 + 2058 ], "pk_columns": [ - 2058, + 2054, "game_server_node_plugins_pk_columns_input!" ] } ], "update_game_server_node_plugins_many": [ - 2055, + 2051, { "updates": [ - 2066, + 2062, "[game_server_node_plugins_updates!]!" ] } ], "update_game_server_nodes": [ - 2090, + 2086, { "_append": [ - 2075 + 2071 ], "_delete_at_path": [ - 2081 + 2077 ], "_delete_elem": [ - 2082 + 2078 ], "_delete_key": [ - 2083 + 2079 ], "_inc": [ - 2084 + 2080 ], "_prepend": [ - 2095 + 2091 ], "_set": [ - 2099 + 2095 ], "where": [ - 2079, + 2075, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 2067, + 2063, { "_append": [ - 2075 + 2071 ], "_delete_at_path": [ - 2081 + 2077 ], "_delete_elem": [ - 2082 + 2078 ], "_delete_key": [ - 2083 + 2079 ], "_inc": [ - 2084 + 2080 ], "_prepend": [ - 2095 + 2091 ], "_set": [ - 2099 + 2095 ], "pk_columns": [ - 2094, + 2090, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 2090, + 2086, { "updates": [ - 2111, + 2107, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 2132, + 2128, { "_append": [ - 2121 + 2117 ], "_delete_at_path": [ - 2125 + 2121 ], "_delete_elem": [ - 2126 + 2122 ], "_delete_key": [ - 2127 + 2123 ], "_inc": [ - 2128 + 2124 ], "_prepend": [ - 2137 + 2133 ], "_set": [ - 2139 + 2135 ], "where": [ - 2123, + 2119, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 2118, + 2114, { "_append": [ - 2121 + 2117 ], "_delete_at_path": [ - 2125 + 2121 ], "_delete_elem": [ - 2126 + 2122 ], "_delete_key": [ - 2127 + 2123 ], "_inc": [ - 2128 + 2124 ], "_prepend": [ - 2137 + 2133 ], "_set": [ - 2139 + 2135 ], "pk_columns": [ - 2136, + 2132, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 2132, + 2128, { "updates": [ - 2147, + 2143, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 2165, + 2161, { "_append": [ - 2154 + 2150 ], "_delete_at_path": [ - 2158 + 2154 ], "_delete_elem": [ - 2159 + 2155 ], "_delete_key": [ - 2160 + 2156 ], "_inc": [ - 2161 + 2157 ], "_prepend": [ - 2169 + 2165 ], "_set": [ - 2171 + 2167 ], "where": [ - 2156, + 2152, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 2151, + 2147, { "_append": [ - 2154 + 2150 ], "_delete_at_path": [ - 2158 + 2154 ], "_delete_elem": [ - 2159 + 2155 ], "_delete_key": [ - 2160 + 2156 ], "_inc": [ - 2161 + 2157 ], "_prepend": [ - 2169 + 2165 ], "_set": [ - 2171 + 2167 ], "pk_columns": [ - 2168, + 2164, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 2165, + 2161, { "updates": [ - 2179, + 2175, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 2203, + 2199, { "_inc": [ - 2199 + 2195 ], "_set": [ - 2206 + 2202 ], "where": [ - 2198, + 2194, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 2203, + 2199, { "updates": [ - 2213, + 2209, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 2228, + 2224, { "_inc": [ - 2224 + 2220 ], "_set": [ - 2234 + 2230 ], "where": [ - 2222, + 2218, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 2218, + 2214, { "_inc": [ - 2224 + 2220 ], "_set": [ - 2234 + 2230 ], "pk_columns": [ - 2232, + 2228, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 2228, + 2224, { "updates": [ - 2242, + 2238, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 2263, + 2259, { "_inc": [ - 2257 + 2253 ], "_set": [ - 2268 + 2264 ], "where": [ - 2255, + 2251, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 2246, + 2242, { "_inc": [ - 2257 + 2253 ], "_set": [ - 2268 + 2264 ], "pk_columns": [ - 2266, + 2262, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 2263, + 2259, { "updates": [ - 2280, + 2276, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 2304, + 2300, { "_inc": [ - 2298 + 2294 ], "_set": [ - 2309 + 2305 ], "where": [ - 2296, + 2292, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 2287, + 2283, { "_inc": [ - 2298 + 2294 ], "_set": [ - 2309 + 2305 ], "pk_columns": [ - 2307, + 2303, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 2304, + 2300, { "updates": [ - 2321, + 2317, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 2345, + 2341, { "_inc": [ - 2339 + 2335 ], "_set": [ - 2350 + 2346 ], "where": [ - 2337, + 2333, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 2328, + 2324, { "_inc": [ - 2339 + 2335 ], "_set": [ - 2350 + 2346 ], "pk_columns": [ - 2348, + 2344, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 2345, + 2341, { "updates": [ - 2362, + 2358, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 2383, + 2379, { "_set": [ - 2389 + 2385 ], "where": [ - 2376, + 2372, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 2369, + 2365, { "_set": [ - 2389 + 2385 ], "pk_columns": [ - 2387, + 2383, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 2383, + 2379, { "updates": [ - 2393, + 2389, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 2408, + 2404, { "_append": [ - 2397 + 2393 ], "_delete_at_path": [ - 2401 + 2397 ], "_delete_elem": [ - 2402 + 2398 ], "_delete_key": [ - 2403 + 2399 ], "_inc": [ - 2404 + 2400 ], "_prepend": [ - 2413 + 2409 ], "_set": [ - 2415 + 2411 ], "where": [ - 2399, + 2395, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 2394, + 2390, { "_append": [ - 2397 + 2393 ], "_delete_at_path": [ - 2401 + 2397 ], "_delete_elem": [ - 2402 + 2398 ], "_delete_key": [ - 2403 + 2399 ], "_inc": [ - 2404 + 2400 ], "_prepend": [ - 2413 + 2409 ], "_set": [ - 2415 + 2411 ], "pk_columns": [ - 2412, + 2408, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 2408, + 2404, { "updates": [ - 2423, + 2419, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 2444, + 2440, { "_inc": [ - 2438 + 2434 ], "_set": [ - 2449 + 2445 ], "where": [ - 2436, + 2432, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 2427, + 2423, { "_inc": [ - 2438 + 2434 ], "_set": [ - 2449 + 2445 ], "pk_columns": [ - 2447, + 2443, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 2444, + 2440, { "updates": [ - 2461, + 2457, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 2485, + 2481, { "_inc": [ - 2479 + 2475 ], "_set": [ - 2490 + 2486 ], "where": [ - 2477, + 2473, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 2468, + 2464, { "_inc": [ - 2479 + 2475 ], "_set": [ - 2490 + 2486 ], "pk_columns": [ - 2488, + 2484, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 2485, + 2481, { "updates": [ - 2502, + 2498, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 2526, + 2522, { "_inc": [ - 2520 + 2516 ], "_set": [ - 2532 + 2528 ], "where": [ - 2518, + 2514, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 2509, + 2505, { "_inc": [ - 2520 + 2516 ], "_set": [ - 2532 + 2528 ], "pk_columns": [ - 2530, + 2526, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 2526, + 2522, { "updates": [ - 2544, + 2540, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 2559, + 2555, { "_set": [ - 2565 + 2561 ], "where": [ - 2554, + 2550, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 2551, + 2547, { "_set": [ - 2565 + 2561 ], "pk_columns": [ - 2563, + 2559, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 2559, + 2555, { "updates": [ - 2569, + 2565, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 2578, + 2574, { "_set": [ - 2584 + 2580 ], "where": [ - 2573, + 2569, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 2570, + 2566, { "_set": [ - 2584 + 2580 ], "pk_columns": [ - 2582, + 2578, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 2578, + 2574, { "updates": [ - 2588, + 2584, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 2608, + 2604, { "_inc": [ - 2602 + 2598 ], "_set": [ - 2615 + 2611 ], "where": [ - 2600, + 2596, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 2589, + 2585, { "_inc": [ - 2602 + 2598 ], "_set": [ - 2615 + 2611 ], "pk_columns": [ - 2611, + 2607, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 2608, + 2604, { "updates": [ - 2627, + 2623, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 2642, + 2638, { "_set": [ - 2648 + 2644 ], "where": [ - 2637, + 2633, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 2634, + 2630, { "_set": [ - 2648 + 2644 ], "pk_columns": [ - 2646, + 2642, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 2642, + 2638, { "updates": [ - 2652, + 2648, "[map_pools_updates!]!" ] } ], "update_maps": [ - 2669, + 2665, { "_set": [ - 2677 + 2673 ], "where": [ - 2662, + 2658, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 2653, + 2649, { "_set": [ - 2677 + 2673 ], "pk_columns": [ - 2673, + 2669, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 2669, + 2665, { "updates": [ - 2681, + 2677, "[maps_updates!]!" ] } ], "update_match_clips": [ - 2699, + 2695, { "_inc": [ - 2693 + 2689 ], "_set": [ - 2705 + 2701 ], "where": [ - 2691, + 2687, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 2682, + 2678, { "_inc": [ - 2693 + 2689 ], "_set": [ - 2705 + 2701 ], "pk_columns": [ - 2703, + 2699, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 2699, + 2695, { "updates": [ - 2717, + 2713, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 2745, + 2741, { "_append": [ - 2730 + 2726 ], "_delete_at_path": [ - 2736 + 2732 ], "_delete_elem": [ - 2737 + 2733 ], "_delete_key": [ - 2738 + 2734 ], "_inc": [ - 2739 + 2735 ], "_prepend": [ - 2749 + 2745 ], "_set": [ - 2751 + 2747 ], "where": [ - 2734, + 2730, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 2724, + 2720, { "_append": [ - 2730 + 2726 ], "_delete_at_path": [ - 2736 + 2732 ], "_delete_elem": [ - 2737 + 2733 ], "_delete_key": [ - 2738 + 2734 ], "_inc": [ - 2739 + 2735 ], "_prepend": [ - 2749 + 2745 ], "_set": [ - 2751 + 2747 ], "pk_columns": [ - 2748, + 2744, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 2745, + 2741, { "updates": [ - 2763, + 2759, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 2789, + 2785, { "_inc": [ - 2783 + 2779 ], "_set": [ - 2796 + 2792 ], "where": [ - 2781, + 2777, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 2770, + 2766, { "_inc": [ - 2783 + 2779 ], "_set": [ - 2796 + 2792 ], "pk_columns": [ - 2792, + 2788, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 2789, + 2785, { "updates": [ - 2808, + 2804, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 2832, + 2828, { "_inc": [ - 2826 + 2822 ], "_set": [ - 2838 + 2834 ], "where": [ - 2824, + 2820, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 2815, + 2811, { "_inc": [ - 2826 + 2822 ], "_set": [ - 2838 + 2834 ], "pk_columns": [ - 2836, + 2832, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 2832, + 2828, { "updates": [ - 2850, + 2846, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2880, + 2876, { "_append": [ - 2865 + 2861 ], "_delete_at_path": [ - 2871 + 2867 ], "_delete_elem": [ - 2872 + 2868 ], "_delete_key": [ - 2873 + 2869 ], "_inc": [ - 2874 + 2870 ], "_prepend": [ - 2885 + 2881 ], "_set": [ - 2889 + 2885 ], "where": [ - 2869, + 2865, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2857, + 2853, { "_append": [ - 2865 + 2861 ], "_delete_at_path": [ - 2871 + 2867 ], "_delete_elem": [ - 2872 + 2868 ], "_delete_key": [ - 2873 + 2869 ], "_inc": [ - 2874 + 2870 ], "_prepend": [ - 2885 + 2881 ], "_set": [ - 2889 + 2885 ], "pk_columns": [ - 2884, + 2880, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2880, + 2876, { "updates": [ - 2901, + 2897, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2925, + 2921, { "_inc": [ - 2919 + 2915 ], "_set": [ - 2930 + 2926 ], "where": [ - 2917, + 2913, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2908, + 2904, { "_inc": [ - 2919 + 2915 ], "_set": [ - 2930 + 2926 ], "pk_columns": [ - 2928, + 2924, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2925, + 2921, { "updates": [ - 2942, + 2938, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2965, + 2961, { "_set": [ - 2972 + 2968 ], "where": [ - 2958, + 2954, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2949, + 2945, { "_set": [ - 2972 + 2968 ], "pk_columns": [ - 2968, + 2964, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2965, + 2961, { "updates": [ - 2976, + 2972, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2994, + 2990, { "_inc": [ - 2988 + 2984 ], "_set": [ - 3000 + 2996 ], "where": [ - 2986, + 2982, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2977, + 2973, { "_inc": [ - 2988 + 2984 ], "_set": [ - 3000 + 2996 ], "pk_columns": [ - 2998, + 2994, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2994, + 2990, { "updates": [ - 3012, + 3008, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 3038, + 3034, { "_inc": [ - 3032 + 3028 ], "_set": [ - 3046 + 3042 ], "where": [ - 3030, + 3026, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 3019, + 3015, { "_inc": [ - 3032 + 3028 ], "_set": [ - 3046 + 3042 ], "pk_columns": [ - 3042, + 3038, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 3038, + 3034, { "updates": [ - 3058, + 3054, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 3081, + 3077, { "_set": [ - 3088 + 3084 ], "where": [ - 3074, + 3070, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 3065, + 3061, { "_set": [ - 3088 + 3084 ], "pk_columns": [ - 3084, + 3080, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 3081, + 3077, { "updates": [ - 3092, + 3088, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 3116, + 3112, { "_append": [ - 3101 + 3097 ], "_delete_at_path": [ - 3107 + 3103 ], "_delete_elem": [ - 3108 + 3104 ], "_delete_key": [ - 3109 + 3105 ], "_inc": [ - 3110 + 3106 ], "_prepend": [ - 3120 + 3116 ], "_set": [ - 3124 + 3120 ], "where": [ - 3105, + 3101, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 3093, + 3089, { "_append": [ - 3101 + 3097 ], "_delete_at_path": [ - 3107 + 3103 ], "_delete_elem": [ - 3108 + 3104 ], "_delete_key": [ - 3109 + 3105 ], "_inc": [ - 3110 + 3106 ], "_prepend": [ - 3120 + 3116 ], "_set": [ - 3124 + 3120 ], "pk_columns": [ - 3119, + 3115, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 3116, + 3112, { "updates": [ - 3136, + 3132, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 3151, + 3147, { "_set": [ - 3156 + 3152 ], "where": [ - 3146, + 3142, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 3143, + 3139, { "_set": [ - 3156 + 3152 ], "pk_columns": [ - 3154, + 3150, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 3151, + 3147, { "updates": [ - 3160, + 3156, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 3180, + 3176, { "_inc": [ - 3174 + 3170 ], "_set": [ - 3188 + 3184 ], "where": [ - 3172, + 3168, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 3161, + 3157, { "_inc": [ - 3174 + 3170 ], "_set": [ - 3188 + 3184 ], "pk_columns": [ - 3184, + 3180, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 3180, + 3176, { "updates": [ - 3200, + 3196, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 3215, + 3211, { "_set": [ - 3220 + 3216 ], "where": [ - 3210, + 3206, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 3207, + 3203, { "_set": [ - 3220 + 3216 ], "pk_columns": [ - 3218, + 3214, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 3215, + 3211, { "updates": [ - 3224, + 3220, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 3247, + 3243, { "_append": [ - 3233 + 3229 ], "_delete_at_path": [ - 3238 + 3234 ], "_delete_elem": [ - 3239 + 3235 ], "_delete_key": [ - 3240 + 3236 ], "_inc": [ - 3241 + 3237 ], "_prepend": [ - 3249 + 3245 ], "_set": [ - 3253 + 3249 ], "where": [ - 3237, + 3233, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 3247, + 3243, { "updates": [ - 3264, + 3260, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 3281, + 3277, { "_inc": [ - 3277 + 3273 ], "_set": [ - 3286 + 3282 ], "where": [ - 3275, + 3271, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 3271, + 3267, { "_inc": [ - 3277 + 3273 ], "_set": [ - 3286 + 3282 ], "pk_columns": [ - 3284, + 3280, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 3281, + 3277, { "updates": [ - 3294, + 3290, "[news_articles_updates!]!" ] } ], "update_notification_preferences": [ - 3308, + 3304, { "_inc": [ - 3304 + 3300 ], "_set": [ - 3313 + 3309 ], "where": [ - 3302, + 3298, "notification_preferences_bool_exp!" ] } ], "update_notification_preferences_by_pk": [ - 3298, + 3294, { "_inc": [ - 3304 + 3300 ], "_set": [ - 3313 + 3309 ], "pk_columns": [ - 3311, + 3307, "notification_preferences_pk_columns_input!" ] } ], "update_notification_preferences_many": [ - 3308, + 3304, { "updates": [ - 3321, + 3317, "[notification_preferences_updates!]!" ] } ], "update_notifications": [ - 3348, + 3344, { "_append": [ - 3333 + 3329 ], "_delete_at_path": [ - 3339 + 3335 ], "_delete_elem": [ - 3340 + 3336 ], "_delete_key": [ - 3341 + 3337 ], "_inc": [ - 3342 + 3338 ], "_prepend": [ - 3352 + 3348 ], "_set": [ - 3356 + 3352 ], "where": [ - 3337, + 3333, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 3325, + 3321, { "_append": [ - 3333 + 3329 ], "_delete_at_path": [ - 3339 + 3335 ], "_delete_elem": [ - 3340 + 3336 ], "_delete_key": [ - 3341 + 3337 ], "_inc": [ - 3342 + 3338 ], "_prepend": [ - 3352 + 3348 ], "_set": [ - 3356 + 3352 ], "pk_columns": [ - 3351, + 3347, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 3348, + 3344, { "updates": [ - 3368, + 3364, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 3395, + 3391, { "_inc": [ - 3389 + 3385 ], "_set": [ - 3400 + 3396 ], "where": [ - 3387, + 3383, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 3378, + 3374, { "_inc": [ - 3389 + 3385 ], "_set": [ - 3400 + 3396 ], "pk_columns": [ - 3398, + 3394, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 3395, + 3391, { "updates": [ - 3412, + 3408, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 3429, + 3425, { "_inc": [ - 3425 + 3421 ], "_set": [ - 3435 + 3431 ], "where": [ - 3423, + 3419, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 3419, + 3415, { "_inc": [ - 3425 + 3421 ], "_set": [ - 3435 + 3431 ], "pk_columns": [ - 3433, + 3429, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 3429, + 3425, { "updates": [ - 3443, + 3439, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 3457, + 3453, { "_inc": [ - 3453 + 3449 ], "_set": [ - 3462 + 3458 ], "where": [ - 3451, + 3447, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 3447, + 3443, { "_inc": [ - 3453 + 3449 ], "_set": [ - 3462 + 3458 ], "pk_columns": [ - 3460, + 3456, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 3457, + 3453, { "updates": [ - 3470, + 3466, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 3491, + 3487, { "_inc": [ - 3485 + 3481 ], "_set": [ - 3496 + 3492 ], "where": [ - 3483, + 3479, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 3474, + 3470, { "_inc": [ - 3485 + 3481 ], "_set": [ - 3496 + 3492 ], "pk_columns": [ - 3494, + 3490, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 3491, + 3487, { "updates": [ - 3508, + 3504, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 3534, + 3530, { "_inc": [ - 3528 + 3524 ], "_set": [ - 3541 + 3537 ], "where": [ - 3526, + 3522, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 3515, + 3511, { "_inc": [ - 3528 + 3524 ], "_set": [ - 3541 + 3537 ], "pk_columns": [ - 3537, + 3533, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 3534, + 3530, { "updates": [ - 3553, + 3549, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 3595, + 3591, { "_inc": [ - 3589 + 3585 ], "_set": [ - 3600 + 3596 ], "where": [ - 3587, + 3583, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 3578, + 3574, { "_inc": [ - 3589 + 3585 ], "_set": [ - 3600 + 3596 ], "pk_columns": [ - 3598, + 3594, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 3595, + 3591, { "updates": [ - 3612, + 3608, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 3629, + 3625, { "_inc": [ - 3625 + 3621 ], "_set": [ - 3634 + 3630 ], "where": [ - 3623, + 3619, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 3619, + 3615, { "_inc": [ - 3625 + 3621 ], "_set": [ - 3634 + 3630 ], "pk_columns": [ - 3632, + 3628, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 3629, + 3625, { "updates": [ - 3642, + 3638, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 3663, + 3659, { "_inc": [ - 3657 + 3653 ], "_set": [ - 3668 + 3664 ], "where": [ - 3655, + 3651, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 3646, + 3642, { "_inc": [ - 3657 + 3653 ], "_set": [ - 3668 + 3664 ], "pk_columns": [ - 3666, + 3662, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 3663, + 3659, { "updates": [ - 3680, + 3676, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 3706, + 3702, { "_inc": [ - 3700 + 3696 ], "_set": [ - 3713 + 3709 ], "where": [ - 3698, + 3694, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 3687, + 3683, { "_inc": [ - 3700 + 3696 ], "_set": [ - 3713 + 3709 ], "pk_columns": [ - 3709, + 3705, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 3706, + 3702, { "updates": [ - 3725, + 3721, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 3792, + 3788, { "_inc": [ - 3786 + 3782 ], "_set": [ - 3799 + 3795 ], "where": [ - 3743, + 3739, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 3732, + 3728, { "_inc": [ - 3786 + 3782 ], "_set": [ - 3799 + 3795 ], "pk_columns": [ - 3795, + 3791, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 3761, + 3757, { "_inc": [ - 3755 + 3751 ], "_set": [ - 3766 + 3762 ], "where": [ - 3753, + 3749, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 3744, + 3740, { "_inc": [ - 3755 + 3751 ], "_set": [ - 3766 + 3762 ], "pk_columns": [ - 3764, + 3760, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 3761, + 3757, { "updates": [ - 3778, + 3774, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 3792, + 3788, { "updates": [ - 3811, + 3807, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 3827, + 3823, { "_inc": [ - 3823 + 3819 ], "_set": [ - 3830 + 3826 ], "where": [ - 3822, + 3818, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 3827, + 3823, { "updates": [ - 3837, + 3833, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 3858, + 3854, { "_inc": [ - 3852 + 3848 ], "_set": [ - 3863 + 3859 ], "where": [ - 3850, + 3846, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 3841, + 3837, { "_inc": [ - 3852 + 3848 ], "_set": [ - 3863 + 3859 ], "pk_columns": [ - 3861, + 3857, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 3858, + 3854, { "updates": [ - 3875, + 3871, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3950, + 3946, { "_inc": [ - 3944 + 3940 ], "_set": [ - 3955 + 3951 ], "where": [ - 3942, + 3938, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3933, + 3929, { "_inc": [ - 3944 + 3940 ], "_set": [ - 3955 + 3951 ], "pk_columns": [ - 3953, + 3949, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3950, + 3946, { "updates": [ - 3967, + 3963, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 4009, + 4005, { "_inc": [ - 4003 + 3999 ], "_set": [ - 4014 + 4010 ], "where": [ - 4001, + 3997, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3992, + 3988, { "_inc": [ - 4003 + 3999 ], "_set": [ - 4014 + 4010 ], "pk_columns": [ - 4012, + 4008, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 4009, + 4005, { "updates": [ - 4026, + 4022, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 4050, + 4046, { "_inc": [ - 4044 + 4040 ], "_set": [ - 4055 + 4051 ], "where": [ - 4042, + 4038, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 4033, + 4029, { "_inc": [ - 4044 + 4040 ], "_set": [ - 4055 + 4051 ], "pk_columns": [ - 4053, + 4049, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 4050, + 4046, { "updates": [ - 4067, + 4063, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 4101, + 4097, { "_inc": [ - 4095 + 4091 ], "_set": [ - 4114 + 4110 ], "where": [ - 4093, + 4089, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 4074, + 4070, { "_inc": [ - 4095 + 4091 ], "_set": [ - 4114 + 4110 ], "pk_columns": [ - 4104, + 4100, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 4101, + 4097, { "updates": [ - 4126, + 4122, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 4143, + 4139, { "_inc": [ - 4139 + 4135 ], "_set": [ - 4149 + 4145 ], "where": [ - 4137, + 4133, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 4133, + 4129, { "_inc": [ - 4139 + 4135 ], "_set": [ - 4149 + 4145 ], "pk_columns": [ - 4147, + 4143, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 4143, + 4139, { "updates": [ - 4157, + 4153, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 4175, + 4171, { "_append": [ - 4164 + 4160 ], "_delete_at_path": [ - 4168 + 4164 ], "_delete_elem": [ - 4169 + 4165 ], "_delete_key": [ - 4170 + 4166 ], "_inc": [ - 4171 + 4167 ], "_prepend": [ - 4179 + 4175 ], "_set": [ - 4181 + 4177 ], "where": [ - 4166, + 4162, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 4161, + 4157, { "_append": [ - 4164 + 4160 ], "_delete_at_path": [ - 4168 + 4164 ], "_delete_elem": [ - 4169 + 4165 ], "_delete_key": [ - 4170 + 4166 ], "_inc": [ - 4171 + 4167 ], "_prepend": [ - 4179 + 4175 ], "_set": [ - 4181 + 4177 ], "pk_columns": [ - 4178, + 4174, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 4175, + 4171, { "updates": [ - 4189, + 4185, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 4203, + 4199, { "_inc": [ - 4199 + 4195 ], "_set": [ - 4208 + 4204 ], "where": [ - 4197, + 4193, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 4193, + 4189, { "_inc": [ - 4199 + 4195 ], "_set": [ - 4208 + 4204 ], "pk_columns": [ - 4206, + 4202, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 4203, + 4199, { "updates": [ - 4216, + 4212, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 4237, + 4233, { "_inc": [ - 4231 + 4227 ], "_set": [ - 4242 + 4238 ], "where": [ - 4229, + 4225, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 4220, + 4216, { "_inc": [ - 4231 + 4227 ], "_set": [ - 4242 + 4238 ], "pk_columns": [ - 4240, + 4236, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 4237, + 4233, { "updates": [ - 4254, + 4250, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 4278, + 4274, { "_inc": [ - 4272 + 4268 ], "_set": [ - 4283 + 4279 ], "where": [ - 4270, + 4266, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 4261, + 4257, { "_inc": [ - 4272 + 4268 ], "_set": [ - 4283 + 4279 ], "pk_columns": [ - 4281, + 4277, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 4278, + 4274, { "updates": [ - 4295, + 4291, "[player_utility_updates!]!" ] } ], "update_players": [ - 4345, + 4341, { "_inc": [ - 4341 + 4337 ], "_set": [ - 4351 + 4347 ], "where": [ - 4339, + 4335, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 4335, + 4331, { "_inc": [ - 4341 + 4337 ], "_set": [ - 4351 + 4347 ], "pk_columns": [ - 4349, + 4345, "players_pk_columns_input!" ] } ], "update_players_many": [ - 4345, + 4341, { "updates": [ - 4359, + 4355, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 4373, + 4369, { "_inc": [ - 4369 + 4365 ], "_set": [ - 4378 + 4374 ], "where": [ - 4367, + 4363, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 4363, + 4359, { "_inc": [ - 4369 + 4365 ], "_set": [ - 4378 + 4374 ], "pk_columns": [ - 4376, + 4372, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 4373, + 4369, { "updates": [ - 4386, + 4382, "[plugin_versions_updates!]!" ] } ], "update_push_subscriptions": [ - 4400, + 4396, { "_inc": [ - 4396 + 4392 ], "_set": [ - 4405 + 4401 ], "where": [ - 4394, + 4390, "push_subscriptions_bool_exp!" ] } ], "update_push_subscriptions_by_pk": [ - 4390, + 4386, { "_inc": [ - 4396 + 4392 ], "_set": [ - 4405 + 4401 ], "pk_columns": [ - 4403, + 4399, "push_subscriptions_pk_columns_input!" ] } ], "update_push_subscriptions_many": [ - 4400, + 4396, { "updates": [ - 4413, + 4409, "[push_subscriptions_updates!]!" ] } ], "update_seasons": [ - 4431, + 4427, { "_inc": [ - 4427 + 4423 ], "_set": [ - 4437 + 4433 ], "where": [ - 4425, + 4421, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 4421, + 4417, { "_inc": [ - 4427 + 4423 ], "_set": [ - 4437 + 4433 ], "pk_columns": [ - 4435, + 4431, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 4431, + 4427, { "updates": [ - 4445, + 4441, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 4458, + 4454, { "_set": [ - 4464 + 4460 ], "where": [ - 4453, + 4449, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 4449, + 4445, { "_set": [ - 4464 + 4460 ], "pk_columns": [ - 4462, + 4458, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 4458, + 4454, { "updates": [ - 4472, + 4468, "[server_regions_updates!]!" ] } ], "update_servers": [ - 4499, + 4495, { "_append": [ - 4484 + 4480 ], "_delete_at_path": [ - 4490 + 4486 ], "_delete_elem": [ - 4491 + 4487 ], "_delete_key": [ - 4492 + 4488 ], "_inc": [ - 4493 + 4489 ], "_prepend": [ - 4504 + 4500 ], "_set": [ - 4508 + 4504 ], "where": [ - 4488, + 4484, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 4476, + 4472, { "_append": [ - 4484 + 4480 ], "_delete_at_path": [ - 4490 + 4486 ], "_delete_elem": [ - 4491 + 4487 ], "_delete_key": [ - 4492 + 4488 ], "_inc": [ - 4493 + 4489 ], "_prepend": [ - 4504 + 4500 ], "_set": [ - 4508 + 4504 ], "pk_columns": [ - 4503, + 4499, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 4499, + 4495, { "updates": [ - 4520, + 4516, "[servers_updates!]!" ] } ], "update_settings": [ - 4535, + 4531, { "_set": [ - 4540 + 4536 ], "where": [ - 4530, + 4526, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 4527, + 4523, { "_set": [ - 4540 + 4536 ], "pk_columns": [ - 4538, + 4534, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 4535, + 4531, { "updates": [ - 4544, + 4540, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 4561, + 4557, { "_set": [ - 4566 + 4562 ], "where": [ - 4554, + 4550, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 4547, + 4543, { "_set": [ - 4566 + 4562 ], "pk_columns": [ - 4564, + 4560, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 4561, + 4557, { "updates": [ - 4570, + 4566, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 4581, + 4577, { "_inc": [ - 4577 + 4573 ], "_set": [ - 4587 + 4583 ], "where": [ - 4575, + 4571, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 4571, + 4567, { "_inc": [ - 4577 + 4573 ], "_set": [ - 4587 + 4583 ], "pk_columns": [ - 4585, + 4581, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 4581, + 4577, { "updates": [ - 4595, + 4591, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 4609, + 4605, { "_inc": [ - 4605 + 4601 ], "_set": [ - 4614 + 4610 ], "where": [ - 4603, + 4599, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 4599, + 4595, { "_inc": [ - 4605 + 4601 ], "_set": [ - 4614 + 4610 ], "pk_columns": [ - 4612, + 4608, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 4609, + 4605, { "updates": [ - 4622, + 4618, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 4643, + 4639, { "_inc": [ - 4637 + 4633 ], "_set": [ - 4648 + 4644 ], "where": [ - 4635, + 4631, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 4626, + 4622, { "_inc": [ - 4637 + 4633 ], "_set": [ - 4648 + 4644 ], "pk_columns": [ - 4646, + 4642, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 4643, + 4639, { "updates": [ - 4660, + 4656, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 4686, + 4682, { "_inc": [ - 4680 + 4676 ], "_set": [ - 4693 + 4689 ], "where": [ - 4678, + 4674, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 4667, + 4663, { "_inc": [ - 4680 + 4676 ], "_set": [ - 4693 + 4689 ], "pk_columns": [ - 4689, + 4685, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 4686, + 4682, { "updates": [ - 4705, + 4701, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 4722, + 4718, { "_inc": [ - 4718 + 4714 ], "_set": [ - 4727 + 4723 ], "where": [ - 4716, + 4712, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 4712, + 4708, { "_inc": [ - 4718 + 4714 ], "_set": [ - 4727 + 4723 ], "pk_columns": [ - 4725, + 4721, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 4722, + 4718, { "updates": [ - 4735, + 4731, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 4755, + 4751, { "_set": [ - 4762 + 4758 ], "where": [ - 4748, + 4744, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 4739, + 4735, { "_set": [ - 4762 + 4758 ], "pk_columns": [ - 4758, + 4754, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 4755, + 4751, { "updates": [ - 4766, + 4762, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 4784, + 4780, { "_inc": [ - 4778 + 4774 ], "_set": [ - 4789 + 4785 ], "where": [ - 4776, + 4772, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 4767, + 4763, { "_inc": [ - 4778 + 4774 ], "_set": [ - 4789 + 4785 ], "pk_columns": [ - 4787, + 4783, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 4784, + 4780, { "updates": [ - 4801, + 4797, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 4827, + 4823, { "_inc": [ - 4821 + 4817 ], "_set": [ - 4835 + 4831 ], "where": [ - 4819, + 4815, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 4808, + 4804, { "_inc": [ - 4821 + 4817 ], "_set": [ - 4835 + 4831 ], "pk_columns": [ - 4831, + 4827, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 4827, + 4823, { "updates": [ - 4847, + 4843, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 4864, + 4860, { "_inc": [ - 4860 + 4856 ], "_set": [ - 4870 + 4866 ], "where": [ - 4858, + 4854, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 4854, + 4850, { "_inc": [ - 4860 + 4856 ], "_set": [ - 4870 + 4866 ], "pk_columns": [ - 4868, + 4864, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 4864, + 4860, { "updates": [ - 4878, + 4874, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 4892, + 4888, { "_inc": [ - 4888 + 4884 ], "_set": [ - 4897 + 4893 ], "where": [ - 4886, + 4882, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 4882, + 4878, { "_inc": [ - 4888 + 4884 ], "_set": [ - 4897 + 4893 ], "pk_columns": [ - 4895, + 4891, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 4892, + 4888, { "updates": [ - 4905, + 4901, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 4928, + 4924, { "_inc": [ - 4922 + 4918 ], "_set": [ - 4936 + 4932 ], "where": [ - 4920, + 4916, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 4909, + 4905, { "_inc": [ - 4922 + 4918 ], "_set": [ - 4936 + 4932 ], "pk_columns": [ - 4932, + 4928, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 4928, + 4924, { "updates": [ - 4948, + 4944, "[teams_updates!]!" ] } ], "update_tournament_awards": [ - 4977, + 4973, { "_inc": [ - 4971 + 4967 ], "_set": [ - 4983 + 4979 ], "where": [ - 4969, + 4965, "tournament_awards_bool_exp!" ] } ], "update_tournament_awards_by_pk": [ - 4960, + 4956, { "_inc": [ - 4971 + 4967 ], "_set": [ - 4983 + 4979 ], "pk_columns": [ - 4981, + 4977, "tournament_awards_pk_columns_input!" ] } ], "update_tournament_awards_many": [ - 4977, + 4973, { "updates": [ - 4995, + 4991, "[tournament_awards_updates!]!" ] } ], "update_tournament_brackets": [ - 5021, + 5017, { "_inc": [ - 5015 + 5011 ], "_set": [ - 5029 + 5025 ], "where": [ - 5013, + 5009, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 5002, + 4998, { "_inc": [ - 5015 + 5011 ], "_set": [ - 5029 + 5025 ], "pk_columns": [ - 5025, + 5021, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 5021, + 5017, { "updates": [ - 5041, + 5037, "[tournament_brackets_updates!]!" ] } ], "update_tournament_categories": [ - 5062, + 5058, { "_set": [ - 5067 + 5063 ], "where": [ - 5055, + 5051, "tournament_categories_bool_exp!" ] } ], "update_tournament_categories_by_pk": [ - 5048, + 5044, { "_set": [ - 5067 + 5063 ], "pk_columns": [ - 5065, + 5061, "tournament_categories_pk_columns_input!" ] } ], "update_tournament_categories_many": [ - 5062, + 5058, { "updates": [ - 5071, + 5067, "[tournament_categories_updates!]!" ] } ], "update_tournament_organizer_teams": [ - 5086, + 5082, { "_set": [ - 5091 + 5087 ], "where": [ - 5079, + 5075, "tournament_organizer_teams_bool_exp!" ] } ], "update_tournament_organizer_teams_by_pk": [ - 5072, + 5068, { "_set": [ - 5091 + 5087 ], "pk_columns": [ - 5089, + 5085, "tournament_organizer_teams_pk_columns_input!" ] } ], "update_tournament_organizer_teams_many": [ - 5086, + 5082, { "updates": [ - 5095, + 5091, "[tournament_organizer_teams_updates!]!" ] } ], "update_tournament_organizers": [ - 5113, + 5109, { "_inc": [ - 5107 + 5103 ], "_set": [ - 5118 + 5114 ], "where": [ - 5105, + 5101, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 5096, + 5092, { "_inc": [ - 5107 + 5103 ], "_set": [ - 5118 + 5114 ], "pk_columns": [ - 5116, + 5112, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 5113, + 5109, { "updates": [ - 5130, + 5126, "[tournament_organizers_updates!]!" ] } ], "update_tournament_prizes": [ - 5154, + 5150, { "_inc": [ - 5148 + 5144 ], "_set": [ - 5159 + 5155 ], "where": [ - 5146, + 5142, "tournament_prizes_bool_exp!" ] } ], "update_tournament_prizes_by_pk": [ - 5137, + 5133, { "_inc": [ - 5148 + 5144 ], "_set": [ - 5159 + 5155 ], "pk_columns": [ - 5157, + 5153, "tournament_prizes_pk_columns_input!" ] } ], "update_tournament_prizes_many": [ - 5154, + 5150, { "updates": [ - 5171, + 5167, "[tournament_prizes_updates!]!" ] } ], "update_tournament_stage_windows": [ - 5195, + 5191, { "_inc": [ - 5189 + 5185 ], "_set": [ - 5200 + 5196 ], "where": [ - 5187, + 5183, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 5178, + 5174, { "_inc": [ - 5189 + 5185 ], "_set": [ - 5200 + 5196 ], "pk_columns": [ - 5198, + 5194, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 5195, + 5191, { "updates": [ - 5212, + 5208, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 5242, + 5238, { "_append": [ - 5227 + 5223 ], "_delete_at_path": [ - 5233 + 5229 ], "_delete_elem": [ - 5234 + 5230 ], "_delete_key": [ - 5235 + 5231 ], "_inc": [ - 5236 + 5232 ], "_prepend": [ - 5247 + 5243 ], "_set": [ - 5251 + 5247 ], "where": [ - 5231, + 5227, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 5219, + 5215, { "_append": [ - 5227 + 5223 ], "_delete_at_path": [ - 5233 + 5229 ], "_delete_elem": [ - 5234 + 5230 ], "_delete_key": [ - 5235 + 5231 ], "_inc": [ - 5236 + 5232 ], "_prepend": [ - 5247 + 5243 ], "_set": [ - 5251 + 5247 ], "pk_columns": [ - 5246, + 5242, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 5242, + 5238, { "updates": [ - 5263, + 5259, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 5287, + 5283, { "_inc": [ - 5281 + 5277 ], "_set": [ - 5292 + 5288 ], "where": [ - 5279, + 5275, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 5270, + 5266, { "_inc": [ - 5281 + 5277 ], "_set": [ - 5292 + 5288 ], "pk_columns": [ - 5290, + 5286, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 5287, + 5283, { "updates": [ - 5304, + 5300, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 5328, + 5324, { "_inc": [ - 5322 + 5318 ], "_set": [ - 5333 + 5329 ], "where": [ - 5320, + 5316, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 5311, + 5307, { "_inc": [ - 5322 + 5318 ], "_set": [ - 5333 + 5329 ], "pk_columns": [ - 5331, + 5327, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 5328, + 5324, { "updates": [ - 5345, + 5341, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 5369, + 5365, { "_inc": [ - 5363 + 5359 ], "_set": [ - 5375 + 5371 ], "where": [ - 5361, + 5357, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 5352, + 5348, { "_inc": [ - 5363 + 5359 ], "_set": [ - 5375 + 5371 ], "pk_columns": [ - 5373, + 5369, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 5369, + 5365, { "updates": [ - 5387, + 5383, "[tournament_teams_updates!]!" ] } ], "update_tournaments": [ - 5423, + 5419, { "_inc": [ - 5417 + 5413 ], "_set": [ - 5439 + 5435 ], "where": [ - 5415, + 5411, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 5394, + 5390, { "_inc": [ - 5417 + 5413 ], "_set": [ - 5439 + 5435 ], "pk_columns": [ - 5427, + 5423, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 5423, + 5419, { "updates": [ - 5451, + 5447, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 5623, + 5619, { "_inc": [ - 5619 + 5615 ], "_set": [ - 5627 + 5623 ], "where": [ - 5618, + 5614, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 5623, + 5619, { "updates": [ - 5634, + 5630, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 5734, + 5730, { "_inc": [ - 5730 + 5726 ], "_set": [ - 5737 + 5733 ], "where": [ - 5729, + 5725, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 5734, + 5730, { "updates": [ - 5744, + 5740, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 5956, + 5952, { "_inc": [ - 5950 + 5946 ], "_set": [ - 5959 + 5955 ], "where": [ - 5949, + 5945, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 5956, + 5952, { "updates": [ - 5970, + 5966, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 6133, + 6129, { "_set": [ - 6138 + 6134 ], "where": [ - 6127, + 6123, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 6133, + 6129, { "updates": [ - 6141, + 6137, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 6227, + 6223, { "_inc": [ - 6221 + 6217 ], "_set": [ - 6241 + 6237 ], "where": [ - 6219, + 6215, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 6200, + 6196, { "_inc": [ - 6221 + 6217 ], "_set": [ - 6241 + 6237 ], "pk_columns": [ - 6231, + 6227, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 6227, + 6223, { "updates": [ - 6253, + 6249, "[v_team_stage_results_updates!]!" ] } ], "validateGamedata": [ - 86, + 87, { "game_server_node_id": [ - 5458, + 5454, "uuid!" ] } ], "watchDemo": [ - 108, + 109, { "match_map_demo_id": [ - 5458 + 5454 ], "match_map_id": [ - 5458, + 5454, "uuid!" ] } ], "writeServerFile": [ - 86, + 87, { "content": [ - 83, + 84, "String!" ], "file_path": [ - 83, + 84, "String!" ], "node_id": [ - 83, + 84, "String!" ], "server_id": [ - 83 + 84 ] } ], "__typename": [ - 83 + 84 ] }, "Subscription": { "_map_pool": [ - 111, + 112, { "distinct_on": [ - 123, + 124, "[_map_pool_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 121, + 122, "[_map_pool_order_by!]" ], "where": [ - 114 + 115 ] } ], "_map_pool_aggregate": [ - 112, + 113, { "distinct_on": [ - 123, + 124, "[_map_pool_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 121, + 122, "[_map_pool_order_by!]" ], "where": [ - 114 + 115 ] } ], "_map_pool_by_pk": [ - 111, + 112, { "map_id": [ - 5458, + 5454, "uuid!" ], "map_pool_id": [ - 5458, + 5454, "uuid!" ] } ], "_map_pool_stream": [ - 111, + 112, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 125, + 126, "[_map_pool_stream_cursor_input]!" ], "where": [ - 114 + 115 ] } ], "abandoned_matches": [ - 130, + 131, { "distinct_on": [ - 151, + 152, "[abandoned_matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 149, + 150, "[abandoned_matches_order_by!]" ], "where": [ - 139 + 140 ] } ], "abandoned_matches_aggregate": [ - 131, + 132, { "distinct_on": [ - 151, + 152, "[abandoned_matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 149, + 150, "[abandoned_matches_order_by!]" ], "where": [ - 139 + 140 ] } ], "abandoned_matches_by_pk": [ - 130, + 131, { "id": [ - 5458, + 5454, "uuid!" ] } ], "abandoned_matches_stream": [ - 130, + 131, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 159, + 160, "[abandoned_matches_stream_cursor_input]!" ], "where": [ - 139 + 140 ] } ], "api_keys": [ - 171, + 172, { "distinct_on": [ - 185, + 186, "[api_keys_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 183, + 184, "[api_keys_order_by!]" ], "where": [ - 175 + 176 ] } ], "api_keys_aggregate": [ - 172, + 173, { "distinct_on": [ - 185, + 186, "[api_keys_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 183, + 184, "[api_keys_order_by!]" ], "where": [ - 175 + 176 ] } ], "api_keys_by_pk": [ - 171, + 172, { "id": [ - 5458, + 5454, "uuid!" ] } ], "api_keys_stream": [ - 171, + 172, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 190, + 191, "[api_keys_stream_cursor_input]!" ], "where": [ - 175 + 176 ] } ], "award_recipients": [ - 199, + 200, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "award_recipients_aggregate": [ - 200, + 201, { "distinct_on": [ - 220, + 221, "[award_recipients_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 218, + 219, "[award_recipients_order_by!]" ], "where": [ - 208 + 209 ] } ], "award_recipients_by_pk": [ - 199, + 200, { "id": [ - 5458, + 5454, "uuid!" ] } ], "award_recipients_stream": [ - 199, + 200, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 228, + 229, "[award_recipients_stream_cursor_input]!" ], "where": [ - 208 + 209 ] } ], "awards": [ - 240, + 241, { "distinct_on": [ - 255, + 256, "[awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 253, + 254, "[awards_order_by!]" ], "where": [ - 244 + 245 ] } ], "awards_aggregate": [ - 241, + 242, { "distinct_on": [ - 255, + 256, "[awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 253, + 254, "[awards_order_by!]" ], "where": [ - 244 + 245 ] } ], "awards_by_pk": [ - 240, + 241, { "id": [ - 5458, + 5454, "uuid!" ] } ], "awards_stream": [ - 240, + 241, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 260, + 261, "[awards_stream_cursor_input]!" ], "where": [ - 244 + 245 ] } ], "chat_read_state": [ - 273, + 274, { "distinct_on": [ - 287, + 288, "[chat_read_state_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 285, + 286, "[chat_read_state_order_by!]" ], "where": [ - 277 + 278 ] } ], "chat_read_state_aggregate": [ - 274, + 275, { "distinct_on": [ - 287, + 288, "[chat_read_state_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 285, + 286, "[chat_read_state_order_by!]" ], "where": [ - 277 + 278 ] } ], "chat_read_state_by_pk": [ - 273, + 274, { "steam_id": [ - 268, + 269, "bigint!" ], "thread": [ - 83, + 84, "String!" ] } ], "chat_read_state_stream": [ - 273, + 274, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 292, + 293, "[chat_read_state_stream_cursor_input]!" ], "where": [ - 277 + 278 ] } ], "clip_render_jobs": [ - 300, + 301, { "distinct_on": [ - 328, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 325, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 312 + 313 ] } ], "clip_render_jobs_aggregate": [ - 301, + 302, { "distinct_on": [ - 328, + 329, "[clip_render_jobs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 325, + 326, "[clip_render_jobs_order_by!]" ], "where": [ - 312 + 313 ] } ], "clip_render_jobs_by_pk": [ - 300, + 301, { "id": [ - 5458, + 5454, "uuid!" ] } ], "clip_render_jobs_stream": [ - 300, + 301, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 338, + 339, "[clip_render_jobs_stream_cursor_input]!" ], "where": [ - 312 + 313 ] } ], "custom_pages": [ - 352, + 353, { "distinct_on": [ - 371, + 372, "[custom_pages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 368, + 369, "[custom_pages_order_by!]" ], "where": [ - 357 + 358 ] } ], "custom_pages_aggregate": [ - 353, + 354, { "distinct_on": [ - 371, + 372, "[custom_pages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 368, + 369, "[custom_pages_order_by!]" ], "where": [ - 357 + 358 ] } ], "custom_pages_by_pk": [ - 352, + 353, { "id": [ - 5458, + 5454, "uuid!" ] } ], "custom_pages_stream": [ - 352, + 353, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 376, + 377, "[custom_pages_stream_cursor_input]!" ], "where": [ - 357 + 358 ] } ], "db_backups": [ - 384, + 385, { "distinct_on": [ - 398, + 399, "[db_backups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 396, + 397, "[db_backups_order_by!]" ], "where": [ - 388 + 389 ] } ], "db_backups_aggregate": [ - 385, + 386, { "distinct_on": [ - 398, + 399, "[db_backups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 396, + 397, "[db_backups_order_by!]" ], "where": [ - 388 + 389 ] } ], "db_backups_by_pk": [ - 384, + 385, { "id": [ - 5458, + 5454, "uuid!" ] } ], "db_backups_stream": [ - 384, + 385, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 403, + 404, "[db_backups_stream_cursor_input]!" ], "where": [ - 388 + 389 ] } ], "direct_conversations": [ - 411, + 412, { "distinct_on": [ - 425, + 426, "[direct_conversations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 423, + 424, "[direct_conversations_order_by!]" ], "where": [ - 415 + 416 ] } ], "direct_conversations_aggregate": [ - 412, + 413, { "distinct_on": [ - 425, + 426, "[direct_conversations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 423, + 424, "[direct_conversations_order_by!]" ], "where": [ - 415 + 416 ] } ], "direct_conversations_by_pk": [ - 411, + 412, { "room_id": [ - 83, + 84, "String!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "direct_conversations_stream": [ - 411, + 412, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 430, + 431, "[direct_conversations_stream_cursor_input]!" ], "where": [ - 415 + 416 ] } ], "direct_messages": [ - 438, + 439, { "distinct_on": [ - 452, + 453, "[direct_messages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 450, + 451, "[direct_messages_order_by!]" ], "where": [ - 442 + 443 ] } ], "direct_messages_aggregate": [ - 439, + 440, { "distinct_on": [ - 452, + 453, "[direct_messages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 450, + 451, "[direct_messages_order_by!]" ], "where": [ - 442 + 443 ] } ], "direct_messages_by_pk": [ - 438, + 439, { "id": [ - 5458, + 5454, "uuid!" ] } ], "direct_messages_stream": [ - 438, + 439, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 457, + 458, "[direct_messages_stream_cursor_input]!" ], "where": [ - 442 + 443 ] } ], "draft_game_picks": [ - 465, + 466, { "distinct_on": [ - 488, + 489, "[draft_game_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 486, + 487, "[draft_game_picks_order_by!]" ], "where": [ - 476 + 477 ] } ], "draft_game_picks_aggregate": [ - 466, + 467, { "distinct_on": [ - 488, + 489, "[draft_game_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 486, + 487, "[draft_game_picks_order_by!]" ], "where": [ - 476 + 477 ] } ], "draft_game_picks_by_pk": [ - 465, + 466, { "id": [ - 5458, + 5454, "uuid!" ] } ], "draft_game_picks_stream": [ - 465, + 466, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 498, + 499, "[draft_game_picks_stream_cursor_input]!" ], "where": [ - 476 + 477 ] } ], "draft_game_players": [ - 510, + 511, { "distinct_on": [ - 533, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 531, + 532, "[draft_game_players_order_by!]" ], "where": [ - 521 + 522 ] } ], "draft_game_players_aggregate": [ - 511, + 512, { "distinct_on": [ - 533, + 534, "[draft_game_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 531, + 532, "[draft_game_players_order_by!]" ], "where": [ - 521 + 522 ] } ], "draft_game_players_by_pk": [ - 510, + 511, { "draft_game_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "draft_game_players_stream": [ - 510, + 511, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 543, + 544, "[draft_game_players_stream_cursor_input]!" ], "where": [ - 521 + 522 ] } ], "draft_games": [ - 555, + 556, { "distinct_on": [ - 579, + 580, "[draft_games_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 577, + 578, "[draft_games_order_by!]" ], "where": [ - 566 + 567 ] } ], "draft_games_aggregate": [ - 556, + 557, { "distinct_on": [ - 579, + 580, "[draft_games_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 577, + 578, "[draft_games_order_by!]" ], "where": [ - 566 + 567 ] } ], "draft_games_by_pk": [ - 555, + 556, { "id": [ - 5458, + 5454, "uuid!" ] } ], "draft_games_stream": [ - 555, + 556, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 589, + 590, "[draft_games_stream_cursor_input]!" ], "where": [ - 566 + 567 ] } ], "e_award_sources": [ - 601, + 602, { "distinct_on": [ - 615, + 616, "[e_award_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 613, + 614, "[e_award_sources_order_by!]" ], "where": [ - 604 + 605 ] } ], "e_award_sources_aggregate": [ - 602, + 603, { "distinct_on": [ - 615, + 616, "[e_award_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 613, + 614, "[e_award_sources_order_by!]" ], "where": [ - 604 + 605 ] } ], "e_award_sources_by_pk": [ - 601, + 602, { "value": [ - 83, + 84, "String!" ] } ], "e_award_sources_stream": [ - 601, + 602, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 617, + 618, "[e_award_sources_stream_cursor_input]!" ], "where": [ - 604 + 605 ] } ], "e_award_tiers": [ - 621, + 622, { "distinct_on": [ - 635, + 636, "[e_award_tiers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 633, + 634, "[e_award_tiers_order_by!]" ], "where": [ - 624 + 625 ] } ], "e_award_tiers_aggregate": [ - 622, + 623, { "distinct_on": [ - 635, + 636, "[e_award_tiers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 633, + 634, "[e_award_tiers_order_by!]" ], "where": [ - 624 + 625 ] } ], "e_award_tiers_by_pk": [ - 621, + 622, { "value": [ - 83, + 84, "String!" ] } ], "e_award_tiers_stream": [ - 621, + 622, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 637, + 638, "[e_award_tiers_stream_cursor_input]!" ], "where": [ - 624 + 625 ] } ], "e_check_in_settings": [ - 641, + 642, { "distinct_on": [ - 655, + 656, "[e_check_in_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 653, + 654, "[e_check_in_settings_order_by!]" ], "where": [ - 644 + 645 ] } ], "e_check_in_settings_aggregate": [ - 642, + 643, { "distinct_on": [ - 655, + 656, "[e_check_in_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 653, + 654, "[e_check_in_settings_order_by!]" ], "where": [ - 644 + 645 ] } ], "e_check_in_settings_by_pk": [ - 641, + 642, { "value": [ - 83, + 84, "String!" ] } ], "e_check_in_settings_stream": [ - 641, + 642, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 657, + 658, "[e_check_in_settings_stream_cursor_input]!" ], "where": [ - 644 + 645 ] } ], "e_draft_game_captain_selection": [ - 661, + 662, { "distinct_on": [ - 676, + 677, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 674, + 675, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 664 + 665 ] } ], "e_draft_game_captain_selection_aggregate": [ - 662, + 663, { "distinct_on": [ - 676, + 677, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 674, + 675, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 664 + 665 ] } ], "e_draft_game_captain_selection_by_pk": [ - 661, + 662, { "value": [ - 83, + 84, "String!" ] } ], "e_draft_game_captain_selection_stream": [ - 661, + 662, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 678, + 679, "[e_draft_game_captain_selection_stream_cursor_input]!" ], "where": [ - 664 + 665 ] } ], "e_draft_game_draft_order": [ - 682, + 683, { "distinct_on": [ - 697, + 698, "[e_draft_game_draft_order_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 695, + 696, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 685 + 686 ] } ], "e_draft_game_draft_order_aggregate": [ - 683, + 684, { "distinct_on": [ - 697, + 698, "[e_draft_game_draft_order_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 695, + 696, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 685 + 686 ] } ], "e_draft_game_draft_order_by_pk": [ - 682, + 683, { "value": [ - 83, + 84, "String!" ] } ], "e_draft_game_draft_order_stream": [ - 682, + 683, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 699, + 700, "[e_draft_game_draft_order_stream_cursor_input]!" ], "where": [ - 685 + 686 ] } ], "e_draft_game_mode": [ - 703, + 704, { "distinct_on": [ - 718, + 719, "[e_draft_game_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 716, + 717, "[e_draft_game_mode_order_by!]" ], "where": [ - 706 + 707 ] } ], "e_draft_game_mode_aggregate": [ - 704, + 705, { "distinct_on": [ - 718, + 719, "[e_draft_game_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 716, + 717, "[e_draft_game_mode_order_by!]" ], "where": [ - 706 + 707 ] } ], "e_draft_game_mode_by_pk": [ - 703, + 704, { "value": [ - 83, + 84, "String!" ] } ], "e_draft_game_mode_stream": [ - 703, + 704, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 720, + 721, "[e_draft_game_mode_stream_cursor_input]!" ], "where": [ - 706 + 707 ] } ], "e_draft_game_player_status": [ - 724, + 725, { "distinct_on": [ - 739, + 740, "[e_draft_game_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 737, + 738, "[e_draft_game_player_status_order_by!]" ], "where": [ - 727 + 728 ] } ], "e_draft_game_player_status_aggregate": [ - 725, + 726, { "distinct_on": [ - 739, + 740, "[e_draft_game_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 737, + 738, "[e_draft_game_player_status_order_by!]" ], "where": [ - 727 + 728 ] } ], "e_draft_game_player_status_by_pk": [ - 724, + 725, { "value": [ - 83, + 84, "String!" ] } ], "e_draft_game_player_status_stream": [ - 724, + 725, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 741, + 742, "[e_draft_game_player_status_stream_cursor_input]!" ], "where": [ - 727 + 728 ] } ], "e_draft_game_status": [ - 745, + 746, { "distinct_on": [ - 760, + 761, "[e_draft_game_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 758, + 759, "[e_draft_game_status_order_by!]" ], "where": [ - 748 + 749 ] } ], "e_draft_game_status_aggregate": [ - 746, + 747, { "distinct_on": [ - 760, + 761, "[e_draft_game_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 758, + 759, "[e_draft_game_status_order_by!]" ], "where": [ - 748 + 749 ] } ], "e_draft_game_status_by_pk": [ - 745, + 746, { "value": [ - 83, + 84, "String!" ] } ], "e_draft_game_status_stream": [ - 745, + 746, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 762, + 763, "[e_draft_game_status_stream_cursor_input]!" ], "where": [ - 748 + 749 ] } ], "e_event_media_access": [ - 766, + 767, { "distinct_on": [ - 780, + 781, "[e_event_media_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 778, + 779, "[e_event_media_access_order_by!]" ], "where": [ - 769 + 770 ] } ], "e_event_media_access_aggregate": [ - 767, + 768, { "distinct_on": [ - 780, + 781, "[e_event_media_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 778, + 779, "[e_event_media_access_order_by!]" ], "where": [ - 769 + 770 ] } ], "e_event_media_access_by_pk": [ - 766, + 767, { "value": [ - 83, + 84, "String!" ] } ], "e_event_media_access_stream": [ - 766, + 767, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 782, + 783, "[e_event_media_access_stream_cursor_input]!" ], "where": [ - 769 + 770 ] } ], "e_event_visibility": [ - 786, + 787, { "distinct_on": [ - 800, + 801, "[e_event_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 798, + 799, "[e_event_visibility_order_by!]" ], "where": [ - 789 + 790 ] } ], "e_event_visibility_aggregate": [ - 787, + 788, { "distinct_on": [ - 800, + 801, "[e_event_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 798, + 799, "[e_event_visibility_order_by!]" ], "where": [ - 789 + 790 ] } ], "e_event_visibility_by_pk": [ - 786, + 787, { "value": [ - 83, + 84, "String!" ] } ], "e_event_visibility_stream": [ - 786, + 787, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 802, + 803, "[e_event_visibility_stream_cursor_input]!" ], "where": [ - 789 + 790 ] } ], "e_friend_status": [ - 806, + 807, { "distinct_on": [ - 821, + 822, "[e_friend_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 819, + 820, "[e_friend_status_order_by!]" ], "where": [ - 809 + 810 ] } ], "e_friend_status_aggregate": [ - 807, + 808, { "distinct_on": [ - 821, + 822, "[e_friend_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 819, + 820, "[e_friend_status_order_by!]" ], "where": [ - 809 + 810 ] } ], "e_friend_status_by_pk": [ - 806, + 807, { "value": [ - 83, + 84, "String!" ] } ], "e_friend_status_stream": [ - 806, + 807, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 823, + 824, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 809 + 810 ] } ], "e_game_cfg_types": [ - 827, + 828, { "distinct_on": [ - 841, + 842, "[e_game_cfg_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 839, + 840, "[e_game_cfg_types_order_by!]" ], "where": [ - 830 + 831 ] } ], "e_game_cfg_types_aggregate": [ - 828, + 829, { "distinct_on": [ - 841, + 842, "[e_game_cfg_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 839, + 840, "[e_game_cfg_types_order_by!]" ], "where": [ - 830 + 831 ] } ], "e_game_cfg_types_by_pk": [ - 827, + 828, { "value": [ - 83, + 84, "String!" ] } ], "e_game_cfg_types_stream": [ - 827, + 828, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 843, + 844, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 830 + 831 ] } ], "e_game_plugin_channels": [ - 847, + 848, { "distinct_on": [ - 861, + 862, "[e_game_plugin_channels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 859, + 860, "[e_game_plugin_channels_order_by!]" ], "where": [ - 850 + 851 ] } ], "e_game_plugin_channels_aggregate": [ - 848, + 849, { "distinct_on": [ - 861, + 862, "[e_game_plugin_channels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 859, + 860, "[e_game_plugin_channels_order_by!]" ], "where": [ - 850 + 851 ] } ], "e_game_plugin_channels_by_pk": [ - 847, + 848, { "value": [ - 83, + 84, "String!" ] } ], "e_game_plugin_channels_stream": [ - 847, + 848, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 863, + 864, "[e_game_plugin_channels_stream_cursor_input]!" ], "where": [ - 850 + 851 ] } ], "e_game_plugin_install_statuses": [ - 867, + 868, { "distinct_on": [ - 881, + 882, "[e_game_plugin_install_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 879, + 880, "[e_game_plugin_install_statuses_order_by!]" ], "where": [ - 870 + 871 ] } ], "e_game_plugin_install_statuses_aggregate": [ - 868, + 869, { "distinct_on": [ - 881, + 882, "[e_game_plugin_install_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 879, + 880, "[e_game_plugin_install_statuses_order_by!]" ], "where": [ - 870 + 871 ] } ], "e_game_plugin_install_statuses_by_pk": [ - 867, + 868, { "value": [ - 83, + 84, "String!" ] } ], "e_game_plugin_install_statuses_stream": [ - 867, + 868, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 883, + 884, "[e_game_plugin_install_statuses_stream_cursor_input]!" ], "where": [ - 870 + 871 ] } ], "e_game_plugin_kinds": [ - 887, + 888, { "distinct_on": [ - 901, + 902, "[e_game_plugin_kinds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 899, + 900, "[e_game_plugin_kinds_order_by!]" ], "where": [ - 890 + 891 ] } ], "e_game_plugin_kinds_aggregate": [ - 888, + 889, { "distinct_on": [ - 901, + 902, "[e_game_plugin_kinds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 899, + 900, "[e_game_plugin_kinds_order_by!]" ], "where": [ - 890 + 891 ] } ], "e_game_plugin_kinds_by_pk": [ - 887, + 888, { "value": [ - 83, + 84, "String!" ] } ], "e_game_plugin_kinds_stream": [ - 887, + 888, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 903, + 904, "[e_game_plugin_kinds_stream_cursor_input]!" ], "where": [ - 890 + 891 ] } ], "e_game_server_node_statuses": [ - 907, + 908, { "distinct_on": [ - 922, + 923, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 920, + 921, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 910 + 911 ] } ], "e_game_server_node_statuses_aggregate": [ - 908, + 909, { "distinct_on": [ - 922, + 923, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 920, + 921, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 910 + 911 ] } ], "e_game_server_node_statuses_by_pk": [ - 907, + 908, { "value": [ - 83, + 84, "String!" ] } ], "e_game_server_node_statuses_stream": [ - 907, + 908, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 924, + 925, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 910 + 911 ] } ], "e_league_movement_types": [ - 928, + 929, { "distinct_on": [ - 943, + 944, "[e_league_movement_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 941, + 942, "[e_league_movement_types_order_by!]" ], "where": [ - 931 + 932 ] } ], "e_league_movement_types_aggregate": [ - 929, + 930, { "distinct_on": [ - 943, + 944, "[e_league_movement_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 941, + 942, "[e_league_movement_types_order_by!]" ], "where": [ - 931 + 932 ] } ], "e_league_movement_types_by_pk": [ - 928, + 929, { "value": [ - 83, + 84, "String!" ] } ], "e_league_movement_types_stream": [ - 928, + 929, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 945, + 946, "[e_league_movement_types_stream_cursor_input]!" ], "where": [ - 931 + 932 ] } ], "e_league_proposal_statuses": [ - 949, + 950, { "distinct_on": [ - 964, + 965, "[e_league_proposal_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 962, + 963, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 952 + 953 ] } ], "e_league_proposal_statuses_aggregate": [ - 950, + 951, { "distinct_on": [ - 964, + 965, "[e_league_proposal_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 962, + 963, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 952 + 953 ] } ], "e_league_proposal_statuses_by_pk": [ - 949, + 950, { "value": [ - 83, + 84, "String!" ] } ], "e_league_proposal_statuses_stream": [ - 949, + 950, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 966, + 967, "[e_league_proposal_statuses_stream_cursor_input]!" ], "where": [ - 952 + 953 ] } ], "e_league_registration_statuses": [ - 970, + 971, { "distinct_on": [ - 985, + 986, "[e_league_registration_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 983, + 984, "[e_league_registration_statuses_order_by!]" ], "where": [ - 973 + 974 ] } ], "e_league_registration_statuses_aggregate": [ - 971, + 972, { "distinct_on": [ - 985, + 986, "[e_league_registration_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 983, + 984, "[e_league_registration_statuses_order_by!]" ], "where": [ - 973 + 974 ] } ], "e_league_registration_statuses_by_pk": [ - 970, + 971, { "value": [ - 83, + 84, "String!" ] } ], "e_league_registration_statuses_stream": [ - 970, + 971, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 987, + 988, "[e_league_registration_statuses_stream_cursor_input]!" ], "where": [ - 973 + 974 ] } ], "e_league_season_statuses": [ - 991, + 992, { "distinct_on": [ - 1006, + 1007, "[e_league_season_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1004, + 1005, "[e_league_season_statuses_order_by!]" ], "where": [ - 994 + 995 ] } ], "e_league_season_statuses_aggregate": [ - 992, + 993, { "distinct_on": [ - 1006, + 1007, "[e_league_season_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1004, + 1005, "[e_league_season_statuses_order_by!]" ], "where": [ - 994 + 995 ] } ], "e_league_season_statuses_by_pk": [ - 991, + 992, { "value": [ - 83, + 84, "String!" ] } ], "e_league_season_statuses_stream": [ - 991, + 992, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1008, + 1009, "[e_league_season_statuses_stream_cursor_input]!" ], "where": [ - 994 + 995 ] } ], "e_lobby_access": [ - 1012, + 1013, { "distinct_on": [ - 1027, + 1028, "[e_lobby_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1025, + 1026, "[e_lobby_access_order_by!]" ], "where": [ - 1015 + 1016 ] } ], "e_lobby_access_aggregate": [ - 1013, + 1014, { "distinct_on": [ - 1027, + 1028, "[e_lobby_access_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1025, + 1026, "[e_lobby_access_order_by!]" ], "where": [ - 1015 + 1016 ] } ], "e_lobby_access_by_pk": [ - 1012, + 1013, { "value": [ - 83, + 84, "String!" ] } ], "e_lobby_access_stream": [ - 1012, + 1013, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1029, + 1030, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 1015 + 1016 ] } ], "e_lobby_player_status": [ - 1033, + 1034, { "distinct_on": [ - 1047, + 1048, "[e_lobby_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1045, + 1046, "[e_lobby_player_status_order_by!]" ], "where": [ - 1036 + 1037 ] } ], "e_lobby_player_status_aggregate": [ - 1034, + 1035, { "distinct_on": [ - 1047, + 1048, "[e_lobby_player_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1045, + 1046, "[e_lobby_player_status_order_by!]" ], "where": [ - 1036 + 1037 ] } ], "e_lobby_player_status_by_pk": [ - 1033, + 1034, { "value": [ - 83, + 84, "String!" ] } ], "e_lobby_player_status_stream": [ - 1033, + 1034, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1049, + 1050, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 1036 + 1037 ] } ], "e_map_pool_types": [ - 1053, + 1054, { "distinct_on": [ - 1068, + 1069, "[e_map_pool_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1066, + 1067, "[e_map_pool_types_order_by!]" ], "where": [ - 1056 + 1057 ] } ], "e_map_pool_types_aggregate": [ - 1054, + 1055, { "distinct_on": [ - 1068, + 1069, "[e_map_pool_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1066, + 1067, "[e_map_pool_types_order_by!]" ], "where": [ - 1056 + 1057 ] } ], "e_map_pool_types_by_pk": [ - 1053, + 1054, { "value": [ - 83, + 84, "String!" ] } ], "e_map_pool_types_stream": [ - 1053, + 1054, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1070, + 1071, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 1056 + 1057 ] } ], "e_match_clip_visibility": [ - 1074, + 1075, { "distinct_on": [ - 1088, + 1089, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1086, + 1087, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1077 + 1078 ] } ], "e_match_clip_visibility_aggregate": [ - 1075, + 1076, { "distinct_on": [ - 1088, + 1089, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1086, + 1087, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1077 + 1078 ] } ], "e_match_clip_visibility_by_pk": [ - 1074, + 1075, { "value": [ - 83, + 84, "String!" ] } ], "e_match_clip_visibility_stream": [ - 1074, + 1075, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1090, + 1091, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 1077 + 1078 ] } ], "e_match_map_status": [ - 1094, + 1095, { "distinct_on": [ - 1109, + 1110, "[e_match_map_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1107, + 1108, "[e_match_map_status_order_by!]" ], "where": [ - 1097 + 1098 ] } ], "e_match_map_status_aggregate": [ - 1095, + 1096, { "distinct_on": [ - 1109, + 1110, "[e_match_map_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1107, + 1108, "[e_match_map_status_order_by!]" ], "where": [ - 1097 + 1098 ] } ], "e_match_map_status_by_pk": [ - 1094, + 1095, { "value": [ - 83, + 84, "String!" ] } ], "e_match_map_status_stream": [ - 1094, + 1095, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1111, + 1112, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 1097 + 1098 ] } ], "e_match_mode": [ - 1115, + 1116, { "distinct_on": [ - 1129, + 1130, "[e_match_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1127, + 1128, "[e_match_mode_order_by!]" ], "where": [ - 1118 + 1119 ] } ], "e_match_mode_aggregate": [ - 1116, + 1117, { "distinct_on": [ - 1129, + 1130, "[e_match_mode_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1127, + 1128, "[e_match_mode_order_by!]" ], "where": [ - 1118 + 1119 ] } ], "e_match_mode_by_pk": [ - 1115, + 1116, { "value": [ - 83, + 84, "String!" ] } ], "e_match_mode_stream": [ - 1115, + 1116, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1131, + 1132, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 1118 + 1119 ] } ], "e_match_party_sources": [ - 1135, + 1136, { "distinct_on": [ - 1149, + 1150, "[e_match_party_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1147, + 1148, "[e_match_party_sources_order_by!]" ], "where": [ - 1138 + 1139 ] } ], "e_match_party_sources_aggregate": [ - 1136, + 1137, { "distinct_on": [ - 1149, + 1150, "[e_match_party_sources_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1147, + 1148, "[e_match_party_sources_order_by!]" ], "where": [ - 1138 + 1139 ] } ], "e_match_party_sources_by_pk": [ - 1135, + 1136, { "value": [ - 83, + 84, "String!" ] } ], "e_match_party_sources_stream": [ - 1135, + 1136, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1151, + 1152, "[e_match_party_sources_stream_cursor_input]!" ], "where": [ - 1138 + 1139 ] } ], "e_match_status": [ - 1155, + 1156, { "distinct_on": [ - 1170, + 1171, "[e_match_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1168, + 1169, "[e_match_status_order_by!]" ], "where": [ - 1158 + 1159 ] } ], "e_match_status_aggregate": [ - 1156, + 1157, { "distinct_on": [ - 1170, + 1171, "[e_match_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1168, + 1169, "[e_match_status_order_by!]" ], "where": [ - 1158 + 1159 ] } ], "e_match_status_by_pk": [ - 1155, + 1156, { "value": [ - 83, + 84, "String!" ] } ], "e_match_status_stream": [ - 1155, + 1156, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1172, + 1173, "[e_match_status_stream_cursor_input]!" ], "where": [ - 1158 + 1159 ] } ], "e_match_types": [ - 1176, + 1177, { "distinct_on": [ - 1191, + 1192, "[e_match_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1189, + 1190, "[e_match_types_order_by!]" ], "where": [ - 1179 + 1180 ] } ], "e_match_types_aggregate": [ - 1177, + 1178, { "distinct_on": [ - 1191, + 1192, "[e_match_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1189, + 1190, "[e_match_types_order_by!]" ], "where": [ - 1179 + 1180 ] } ], "e_match_types_by_pk": [ - 1176, + 1177, { "value": [ - 83, + 84, "String!" ] } ], "e_match_types_stream": [ - 1176, + 1177, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1193, + 1194, "[e_match_types_stream_cursor_input]!" ], "where": [ - 1179 + 1180 ] } ], "e_notification_types": [ - 1197, + 1198, { "distinct_on": [ - 1211, + 1212, "[e_notification_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1209, + 1210, "[e_notification_types_order_by!]" ], "where": [ - 1200 + 1201 ] } ], "e_notification_types_aggregate": [ - 1198, + 1199, { "distinct_on": [ - 1211, + 1212, "[e_notification_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1209, + 1210, "[e_notification_types_order_by!]" ], "where": [ - 1200 + 1201 ] } ], "e_notification_types_by_pk": [ - 1197, + 1198, { "value": [ - 83, + 84, "String!" ] } ], "e_notification_types_stream": [ - 1197, + 1198, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1213, + 1214, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 1200 + 1201 ] } ], "e_objective_types": [ - 1217, + 1218, { "distinct_on": [ - 1231, + 1232, "[e_objective_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1229, + 1230, "[e_objective_types_order_by!]" ], "where": [ - 1220 + 1221 ] } ], "e_objective_types_aggregate": [ - 1218, + 1219, { "distinct_on": [ - 1231, + 1232, "[e_objective_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1229, + 1230, "[e_objective_types_order_by!]" ], "where": [ - 1220 + 1221 ] } ], "e_objective_types_by_pk": [ - 1217, + 1218, { "value": [ - 83, + 84, "String!" ] } ], "e_objective_types_stream": [ - 1217, + 1218, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1233, + 1234, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 1220 + 1221 ] } ], "e_player_roles": [ - 1237, + 1238, { "distinct_on": [ - 1251, + 1252, "[e_player_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1249, + 1250, "[e_player_roles_order_by!]" ], "where": [ - 1240 + 1241 ] } ], "e_player_roles_aggregate": [ - 1238, + 1239, { "distinct_on": [ - 1251, + 1252, "[e_player_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1249, + 1250, "[e_player_roles_order_by!]" ], "where": [ - 1240 + 1241 ] } ], "e_player_roles_by_pk": [ - 1237, + 1238, { "value": [ - 83, + 84, "String!" ] } ], "e_player_roles_stream": [ - 1237, + 1238, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1253, + 1254, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 1240 + 1241 ] } ], "e_plugin_runtimes": [ - 1257, + 1258, { "distinct_on": [ - 1271, + 1272, "[e_plugin_runtimes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1269, + 1270, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1260 + 1261 ] } ], "e_plugin_runtimes_aggregate": [ - 1258, + 1259, { "distinct_on": [ - 1271, + 1272, "[e_plugin_runtimes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1269, + 1270, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1260 + 1261 ] } ], "e_plugin_runtimes_by_pk": [ - 1257, + 1258, { "value": [ - 83, + 84, "String!" ] } ], "e_plugin_runtimes_stream": [ - 1257, + 1258, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1273, + 1274, "[e_plugin_runtimes_stream_cursor_input]!" ], "where": [ - 1260 + 1261 ] } ], "e_ready_settings": [ - 1277, + 1278, { "distinct_on": [ - 1291, + 1292, "[e_ready_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1289, + 1290, "[e_ready_settings_order_by!]" ], "where": [ - 1280 + 1281 ] } ], "e_ready_settings_aggregate": [ - 1278, + 1279, { "distinct_on": [ - 1291, + 1292, "[e_ready_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1289, + 1290, "[e_ready_settings_order_by!]" ], "where": [ - 1280 + 1281 ] } ], "e_ready_settings_by_pk": [ - 1277, + 1278, { "value": [ - 83, + 84, "String!" ] } ], "e_ready_settings_stream": [ - 1277, + 1278, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1293, + 1294, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 1280 + 1281 ] } ], "e_sanction_types": [ - 1297, + 1298, { "distinct_on": [ - 1312, + 1313, "[e_sanction_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1310, + 1311, "[e_sanction_types_order_by!]" ], "where": [ - 1300 + 1301 ] } ], "e_sanction_types_aggregate": [ - 1298, + 1299, { "distinct_on": [ - 1312, + 1313, "[e_sanction_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1310, + 1311, "[e_sanction_types_order_by!]" ], "where": [ - 1300 + 1301 ] } ], "e_sanction_types_by_pk": [ - 1297, + 1298, { "value": [ - 83, + 84, "String!" ] } ], "e_sanction_types_stream": [ - 1297, + 1298, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1314, + 1315, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 1300 + 1301 ] } ], "e_scrim_request_statuses": [ - 1318, + 1319, { "distinct_on": [ - 1332, + 1333, "[e_scrim_request_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1330, + 1331, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1321 + 1322 ] } ], "e_scrim_request_statuses_aggregate": [ - 1319, + 1320, { "distinct_on": [ - 1332, + 1333, "[e_scrim_request_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1330, + 1331, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1321 + 1322 ] } ], "e_scrim_request_statuses_by_pk": [ - 1318, + 1319, { "value": [ - 83, + 84, "String!" ] } ], "e_scrim_request_statuses_stream": [ - 1318, + 1319, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1334, + 1335, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 1321 + 1322 ] } ], "e_server_types": [ - 1338, + 1339, { "distinct_on": [ - 1352, + 1353, "[e_server_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1350, + 1351, "[e_server_types_order_by!]" ], "where": [ - 1341 + 1342 ] } ], "e_server_types_aggregate": [ - 1339, + 1340, { "distinct_on": [ - 1352, + 1353, "[e_server_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1350, + 1351, "[e_server_types_order_by!]" ], "where": [ - 1341 + 1342 ] } ], "e_server_types_by_pk": [ - 1338, + 1339, { "value": [ - 83, + 84, "String!" ] } ], "e_server_types_stream": [ - 1338, + 1339, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1354, + 1355, "[e_server_types_stream_cursor_input]!" ], "where": [ - 1341 + 1342 ] } ], "e_sides": [ - 1358, + 1359, { "distinct_on": [ - 1372, + 1373, "[e_sides_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1370, + 1371, "[e_sides_order_by!]" ], "where": [ - 1361 + 1362 ] } ], "e_sides_aggregate": [ - 1359, + 1360, { "distinct_on": [ - 1372, + 1373, "[e_sides_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1370, + 1371, "[e_sides_order_by!]" ], "where": [ - 1361 + 1362 ] } ], "e_sides_by_pk": [ - 1358, + 1359, { "value": [ - 83, + 84, "String!" ] } ], "e_sides_stream": [ - 1358, + 1359, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1374, + 1375, "[e_sides_stream_cursor_input]!" ], "where": [ - 1361 + 1362 ] } ], "e_system_alert_types": [ - 1378, + 1379, { "distinct_on": [ - 1392, + 1393, "[e_system_alert_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1390, + 1391, "[e_system_alert_types_order_by!]" ], "where": [ - 1381 + 1382 ] } ], "e_system_alert_types_aggregate": [ - 1379, + 1380, { "distinct_on": [ - 1392, + 1393, "[e_system_alert_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1390, + 1391, "[e_system_alert_types_order_by!]" ], "where": [ - 1381 + 1382 ] } ], "e_system_alert_types_by_pk": [ - 1378, + 1379, { "value": [ - 83, + 84, "String!" ] } ], "e_system_alert_types_stream": [ - 1378, + 1379, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1394, + 1395, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 1381 + 1382 ] } ], "e_team_roles": [ - 1398, + 1399, { "distinct_on": [ - 1413, + 1414, "[e_team_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1411, + 1412, "[e_team_roles_order_by!]" ], "where": [ - 1401 + 1402 ] } ], "e_team_roles_aggregate": [ - 1399, + 1400, { "distinct_on": [ - 1413, + 1414, "[e_team_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1411, + 1412, "[e_team_roles_order_by!]" ], "where": [ - 1401 + 1402 ] } ], "e_team_roles_by_pk": [ - 1398, + 1399, { "value": [ - 83, + 84, "String!" ] } ], "e_team_roles_stream": [ - 1398, + 1399, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1415, + 1416, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 1401 + 1402 ] } ], "e_team_roster_statuses": [ - 1419, + 1420, { "distinct_on": [ - 1433, + 1434, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1431, + 1432, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1422 + 1423 ] } ], "e_team_roster_statuses_aggregate": [ - 1420, + 1421, { "distinct_on": [ - 1433, + 1434, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1431, + 1432, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1422 + 1423 ] } ], "e_team_roster_statuses_by_pk": [ - 1419, + 1420, { "value": [ - 83, + 84, "String!" ] } ], "e_team_roster_statuses_stream": [ - 1419, + 1420, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1435, + 1436, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 1422 + 1423 ] } ], "e_timeout_settings": [ - 1439, + 1440, { "distinct_on": [ - 1453, + 1454, "[e_timeout_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1451, + 1452, "[e_timeout_settings_order_by!]" ], "where": [ - 1442 + 1443 ] } ], "e_timeout_settings_aggregate": [ - 1440, + 1441, { "distinct_on": [ - 1453, + 1454, "[e_timeout_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1451, + 1452, "[e_timeout_settings_order_by!]" ], "where": [ - 1442 + 1443 ] } ], "e_timeout_settings_by_pk": [ - 1439, + 1440, { "value": [ - 83, + 84, "String!" ] } ], "e_timeout_settings_stream": [ - 1439, + 1440, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1455, + 1456, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 1442 + 1443 ] } ], "e_tournament_categories": [ - 1459, + 1460, { "distinct_on": [ - 1474, + 1475, "[e_tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1472, + 1473, "[e_tournament_categories_order_by!]" ], "where": [ - 1462 + 1463 ] } ], "e_tournament_categories_aggregate": [ - 1460, + 1461, { "distinct_on": [ - 1474, + 1475, "[e_tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1472, + 1473, "[e_tournament_categories_order_by!]" ], "where": [ - 1462 + 1463 ] } ], "e_tournament_categories_by_pk": [ - 1459, + 1460, { "value": [ - 83, + 84, "String!" ] } ], "e_tournament_categories_stream": [ - 1459, + 1460, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1476, + 1477, "[e_tournament_categories_stream_cursor_input]!" ], "where": [ - 1462 + 1463 ] } ], "e_tournament_stage_types": [ - 1480, + 1481, { "distinct_on": [ - 1495, + 1496, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1493, + 1494, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1483 + 1484 ] } ], "e_tournament_stage_types_aggregate": [ - 1481, + 1482, { "distinct_on": [ - 1495, + 1496, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1493, + 1494, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1483 + 1484 ] } ], "e_tournament_stage_types_by_pk": [ - 1480, + 1481, { "value": [ - 83, + 84, "String!" ] } ], "e_tournament_stage_types_stream": [ - 1480, + 1481, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1497, + 1498, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 1483 + 1484 ] } ], "e_tournament_status": [ - 1501, + 1502, { "distinct_on": [ - 1516, + 1517, "[e_tournament_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1514, + 1515, "[e_tournament_status_order_by!]" ], "where": [ - 1504 + 1505 ] } ], "e_tournament_status_aggregate": [ - 1502, + 1503, { "distinct_on": [ - 1516, + 1517, "[e_tournament_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1514, + 1515, "[e_tournament_status_order_by!]" ], "where": [ - 1504 + 1505 ] } ], "e_tournament_status_by_pk": [ - 1501, + 1502, { "value": [ - 83, + 84, "String!" ] } ], "e_tournament_status_stream": [ - 1501, + 1502, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1518, + 1519, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1504 + 1505 ] } ], "e_utility_types": [ - 1522, + 1523, { "distinct_on": [ - 1536, + 1537, "[e_utility_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1534, + 1535, "[e_utility_types_order_by!]" ], "where": [ - 1525 + 1526 ] } ], "e_utility_types_aggregate": [ - 1523, + 1524, { "distinct_on": [ - 1536, + 1537, "[e_utility_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1534, + 1535, "[e_utility_types_order_by!]" ], "where": [ - 1525 + 1526 ] } ], "e_utility_types_by_pk": [ - 1522, + 1523, { "value": [ - 83, + 84, "String!" ] } ], "e_utility_types_stream": [ - 1522, + 1523, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1538, + 1539, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1525 + 1526 ] } ], "e_veto_pick_types": [ - 1542, + 1543, { "distinct_on": [ - 1556, + 1557, "[e_veto_pick_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1554, + 1555, "[e_veto_pick_types_order_by!]" ], "where": [ - 1545 + 1546 ] } ], "e_veto_pick_types_aggregate": [ - 1543, + 1544, { "distinct_on": [ - 1556, + 1557, "[e_veto_pick_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1554, + 1555, "[e_veto_pick_types_order_by!]" ], "where": [ - 1545 + 1546 ] } ], "e_veto_pick_types_by_pk": [ - 1542, + 1543, { "value": [ - 83, + 84, "String!" ] } ], "e_veto_pick_types_stream": [ - 1542, + 1543, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1558, + 1559, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1545 + 1546 ] } ], "e_winning_reasons": [ - 1562, + 1563, { "distinct_on": [ - 1576, + 1577, "[e_winning_reasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1574, + 1575, "[e_winning_reasons_order_by!]" ], "where": [ - 1565 + 1566 ] } ], "e_winning_reasons_aggregate": [ - 1563, + 1564, { "distinct_on": [ - 1576, + 1577, "[e_winning_reasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1574, + 1575, "[e_winning_reasons_order_by!]" ], "where": [ - 1565 + 1566 ] } ], "e_winning_reasons_by_pk": [ - 1562, + 1563, { "value": [ - 83, + 84, "String!" ] } ], "e_winning_reasons_stream": [ - 1562, + 1563, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1578, + 1579, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1565 + 1566 ] } ], "event_match_links": [ - 1582, + 1583, { "distinct_on": [ - 1594, + 1595, "[event_match_links_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1592, + 1593, "[event_match_links_order_by!]" ], "where": [ - 1585 + 1586 ] } ], "event_match_links_aggregate": [ - 1583, + 1584, { "distinct_on": [ - 1594, + 1595, "[event_match_links_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1592, + 1593, "[event_match_links_order_by!]" ], "where": [ - 1585 + 1586 ] } ], "event_match_links_by_pk": [ - 1582, + 1583, { "event_id": [ - 5458, + 5454, "uuid!" ], "match_id": [ - 5458, + 5454, "uuid!" ] } ], "event_match_links_stream": [ - 1582, + 1583, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1596, + 1597, "[event_match_links_stream_cursor_input]!" ], "where": [ - 1585 + 1586 ] } ], "event_media": [ - 1600, + 1601, { "distinct_on": [ - 1663, + 1664, "[event_media_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1620, + 1621, "[event_media_order_by!]" ], "where": [ - 1609 + 1610 ] } ], "event_media_aggregate": [ - 1601, + 1602, { "distinct_on": [ - 1663, + 1664, "[event_media_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1620, + 1621, "[event_media_order_by!]" ], "where": [ - 1609 + 1610 ] } ], "event_media_by_pk": [ - 1600, + 1601, { "id": [ - 5458, + 5454, "uuid!" ] } ], "event_media_players": [ - 1622, + 1623, { "distinct_on": [ - 1643, + 1644, "[event_media_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1641, + 1642, "[event_media_players_order_by!]" ], "where": [ - 1631 + 1632 ] } ], "event_media_players_aggregate": [ - 1623, + 1624, { "distinct_on": [ - 1643, + 1644, "[event_media_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1641, + 1642, "[event_media_players_order_by!]" ], "where": [ - 1631 + 1632 ] } ], "event_media_players_by_pk": [ - 1622, + 1623, { "media_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "event_media_players_stream": [ - 1622, + 1623, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1651, + 1652, "[event_media_players_stream_cursor_input]!" ], "where": [ - 1631 + 1632 ] } ], "event_media_stream": [ - 1600, + 1601, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1671, + 1672, "[event_media_stream_cursor_input]!" ], "where": [ - 1609 + 1610 ] } ], "event_organizers": [ - 1683, + 1684, { "distinct_on": [ - 1704, + 1705, "[event_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1702, + 1703, "[event_organizers_order_by!]" ], "where": [ - 1692 + 1693 ] } ], "event_organizers_aggregate": [ - 1684, + 1685, { "distinct_on": [ - 1704, + 1705, "[event_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1702, + 1703, "[event_organizers_order_by!]" ], "where": [ - 1692 + 1693 ] } ], "event_organizers_by_pk": [ - 1683, + 1684, { "event_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "event_organizers_stream": [ - 1683, + 1684, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1712, + 1713, "[event_organizers_stream_cursor_input]!" ], "where": [ - 1692 + 1693 ] } ], "event_players": [ - 1724, + 1725, { "distinct_on": [ - 1745, + 1746, "[event_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1743, + 1744, "[event_players_order_by!]" ], "where": [ - 1733 + 1734 ] } ], "event_players_aggregate": [ - 1725, + 1726, { "distinct_on": [ - 1745, + 1746, "[event_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1743, + 1744, "[event_players_order_by!]" ], "where": [ - 1733 + 1734 ] } ], "event_players_by_pk": [ - 1724, + 1725, { "event_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "event_players_stream": [ - 1724, + 1725, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1753, + 1754, "[event_players_stream_cursor_input]!" ], "where": [ - 1733 + 1734 ] } ], "event_teams": [ - 1765, + 1766, { "distinct_on": [ - 1783, + 1784, "[event_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1781, + 1782, "[event_teams_order_by!]" ], "where": [ - 1772 + 1773 ] } ], "event_teams_aggregate": [ - 1766, + 1767, { "distinct_on": [ - 1783, + 1784, "[event_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1781, + 1782, "[event_teams_order_by!]" ], "where": [ - 1772 + 1773 ] } ], "event_teams_by_pk": [ - 1765, + 1766, { "event_id": [ - 5458, + 5454, "uuid!" ], "team_id": [ - 5458, + 5454, "uuid!" ] } ], "event_teams_stream": [ - 1765, + 1766, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1785, + 1786, "[event_teams_stream_cursor_input]!" ], "where": [ - 1772 + 1773 ] } ], "event_tournaments": [ - 1789, + 1790, { "distinct_on": [ - 1807, + 1808, "[event_tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1805, + 1806, "[event_tournaments_order_by!]" ], "where": [ - 1796 + 1797 ] } ], "event_tournaments_aggregate": [ - 1790, + 1791, { "distinct_on": [ - 1807, + 1808, "[event_tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1805, + 1806, "[event_tournaments_order_by!]" ], "where": [ - 1796 + 1797 ] } ], "event_tournaments_by_pk": [ - 1789, + 1790, { "event_id": [ - 5458, + 5454, "uuid!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "event_tournaments_stream": [ - 1789, + 1790, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1809, + 1810, "[event_tournaments_stream_cursor_input]!" ], "where": [ - 1796 + 1797 ] } ], "events": [ - 1813, + 1814, { "distinct_on": [ - 1828, + 1829, "[events_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1826, + 1827, "[events_order_by!]" ], "where": [ - 1817 + 1818 ] } ], "events_aggregate": [ - 1814, + 1815, { "distinct_on": [ - 1828, + 1829, "[events_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1826, + 1827, "[events_order_by!]" ], "where": [ - 1817 + 1818 ] } ], "events_by_pk": [ - 1813, + 1814, { "id": [ - 5458, + 5454, "uuid!" ] } ], "events_stream": [ - 1813, + 1814, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1833, + 1834, "[events_stream_cursor_input]!" ], "where": [ - 1817 + 1818 ] } ], "friends": [ - 1843, + 1844, { "distinct_on": [ - 1857, + 1858, "[friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1855, + 1856, "[friends_order_by!]" ], "where": [ - 1847 + 1848 ] } ], "friends_aggregate": [ - 1844, + 1845, { "distinct_on": [ - 1857, + 1858, "[friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1855, + 1856, "[friends_order_by!]" ], "where": [ - 1847 + 1848 ] } ], "friends_by_pk": [ - 1843, + 1844, { "other_player_steam_id": [ - 268, + 269, "bigint!" ], "player_steam_id": [ - 268, + 269, "bigint!" ] } ], "friends_stream": [ - 1843, + 1844, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1862, + 1863, "[friends_stream_cursor_input]!" ], "where": [ - 1847 + 1848 ] } ], "game_mode_plugins": [ - 1870, + 1871, { "distinct_on": [ - 1898, + 1899, "[game_mode_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1895, + 1896, "[game_mode_plugins_order_by!]" ], "where": [ - 1882 + 1883 ] } ], "game_mode_plugins_aggregate": [ - 1871, + 1872, { "distinct_on": [ - 1898, + 1899, "[game_mode_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1895, + 1896, "[game_mode_plugins_order_by!]" ], "where": [ - 1882 + 1883 ] } ], "game_mode_plugins_by_pk": [ - 1870, + 1871, { "game_mode_id": [ - 5458, + 5454, "uuid!" ], "plugin_slug": [ - 83, + 84, "String!" ] } ], "game_mode_plugins_stream": [ - 1870, + 1871, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1908, + 1909, "[game_mode_plugins_stream_cursor_input]!" ], "where": [ - 1882 + 1883 ] } ], "game_modes": [ - 1920, + 1921, { "distinct_on": [ - 1938, + 1934, "[game_modes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1935, + 1932, "[game_modes_order_by!]" ], "where": [ @@ -176957,20 +176921,20 @@ export default { } ], "game_modes_aggregate": [ - 1921, + 1922, { "distinct_on": [ - 1938, + 1934, "[game_modes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1935, + 1932, "[game_modes_order_by!]" ], "where": [ @@ -176979,23 +176943,23 @@ export default { } ], "game_modes_by_pk": [ - 1920, + 1921, { "id": [ - 5458, + 5454, "uuid!" ] } ], "game_modes_stream": [ - 1920, + 1921, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1940, + 1936, "[game_modes_stream_cursor_input]!" ], "where": [ @@ -177004,9050 +176968,9050 @@ export default { } ], "game_plugin_installs": [ - 1944, + 1940, { "distinct_on": [ - 1956, + 1952, "[game_plugin_installs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1954, + 1950, "[game_plugin_installs_order_by!]" ], "where": [ - 1947 + 1943 ] } ], "game_plugin_installs_aggregate": [ - 1945, + 1941, { "distinct_on": [ - 1956, + 1952, "[game_plugin_installs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1954, + 1950, "[game_plugin_installs_order_by!]" ], "where": [ - 1947 + 1943 ] } ], "game_plugin_installs_by_pk": [ - 1944, + 1940, { "plugin_slug": [ - 83, + 84, "String!" ] } ], "game_plugin_installs_stream": [ - 1944, + 1940, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1958, + 1954, "[game_plugin_installs_stream_cursor_input]!" ], "where": [ - 1947 + 1943 ] } ], "game_plugin_versions": [ - 1962, + 1958, { "distinct_on": [ - 1985, + 1981, "[game_plugin_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1983, + 1979, "[game_plugin_versions_order_by!]" ], "where": [ - 1973 + 1969 ] } ], "game_plugin_versions_aggregate": [ - 1963, + 1959, { "distinct_on": [ - 1985, + 1981, "[game_plugin_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 1983, + 1979, "[game_plugin_versions_order_by!]" ], "where": [ - 1973 + 1969 ] } ], "game_plugin_versions_by_pk": [ - 1962, + 1958, { "plugin_slug": [ - 83, + 84, "String!" ], "runtime": [ - 1262, + 1263, "e_plugin_runtimes_enum!" ], "version": [ - 83, + 84, "String!" ] } ], "game_plugin_versions_stream": [ - 1962, + 1958, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 1995, + 1991, "[game_plugin_versions_stream_cursor_input]!" ], "where": [ - 1973 + 1969 ] } ], "game_plugins": [ - 2007, + 2003, { "distinct_on": [ - 2026, + 2022, "[game_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2023, + 2019, "[game_plugins_order_by!]" ], "where": [ - 2012 + 2008 ] } ], "game_plugins_aggregate": [ - 2008, + 2004, { "distinct_on": [ - 2026, + 2022, "[game_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2023, + 2019, "[game_plugins_order_by!]" ], "where": [ - 2012 + 2008 ] } ], "game_plugins_by_pk": [ - 2007, + 2003, { "slug": [ - 83, + 84, "String!" ] } ], "game_plugins_stream": [ - 2007, + 2003, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2031, + 2027, "[game_plugins_stream_cursor_input]!" ], "where": [ - 2012 + 2008 ] } ], "game_server_node_plugins": [ - 2039, + 2035, { "distinct_on": [ - 2059, + 2055, "[game_server_node_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2057, + 2053, "[game_server_node_plugins_order_by!]" ], "where": [ - 2048 + 2044 ] } ], "game_server_node_plugins_aggregate": [ - 2040, + 2036, { "distinct_on": [ - 2059, + 2055, "[game_server_node_plugins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2057, + 2053, "[game_server_node_plugins_order_by!]" ], "where": [ - 2048 + 2044 ] } ], "game_server_node_plugins_by_pk": [ - 2039, + 2035, { "id": [ - 5458, + 5454, "uuid!" ] } ], "game_server_node_plugins_stream": [ - 2039, + 2035, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2063, + 2059, "[game_server_node_plugins_stream_cursor_input]!" ], "where": [ - 2048 + 2044 ] } ], "game_server_nodes": [ - 2067, + 2063, { "distinct_on": [ - 2096, + 2092, "[game_server_nodes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2093, + 2089, "[game_server_nodes_order_by!]" ], "where": [ - 2079 + 2075 ] } ], "game_server_nodes_aggregate": [ - 2068, + 2064, { "distinct_on": [ - 2096, + 2092, "[game_server_nodes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2093, + 2089, "[game_server_nodes_order_by!]" ], "where": [ - 2079 + 2075 ] } ], "game_server_nodes_by_pk": [ - 2067, + 2063, { "id": [ - 83, + 84, "String!" ] } ], "game_server_nodes_stream": [ - 2067, + 2063, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2106, + 2102, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 2079 + 2075 ] } ], "game_versions": [ - 2118, + 2114, { "distinct_on": [ - 2138, + 2134, "[game_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2135, + 2131, "[game_versions_order_by!]" ], "where": [ - 2123 + 2119 ] } ], "game_versions_aggregate": [ - 2119, + 2115, { "distinct_on": [ - 2138, + 2134, "[game_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2135, + 2131, "[game_versions_order_by!]" ], "where": [ - 2123 + 2119 ] } ], "game_versions_by_pk": [ - 2118, + 2114, { "build_id": [ - 40, + 41, "Int!" ] } ], "game_versions_stream": [ - 2118, + 2114, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2143, + 2139, "[game_versions_stream_cursor_input]!" ], "where": [ - 2123 + 2119 ] } ], "gamedata_signature_validations": [ - 2151, + 2147, { "distinct_on": [ - 2170, + 2166, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2167, + 2163, "[gamedata_signature_validations_order_by!]" ], "where": [ - 2156 + 2152 ] } ], "gamedata_signature_validations_aggregate": [ - 2152, + 2148, { "distinct_on": [ - 2170, + 2166, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2167, + 2163, "[gamedata_signature_validations_order_by!]" ], "where": [ - 2156 + 2152 ] } ], "gamedata_signature_validations_by_pk": [ - 2151, + 2147, { "id": [ - 5458, + 5454, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 2151, + 2147, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2175, + 2171, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 2156 + 2152 ] } ], "get_event_leaderboard": [ - 2194, + 2190, { "args": [ - 2183, + 2179, "get_event_leaderboard_args!" ], "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "get_event_leaderboard_aggregate": [ - 2195, + 2191, { "args": [ - 2183, + 2179, "get_event_leaderboard_args!" ], "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "get_leaderboard": [ - 2194, + 2190, { "args": [ - 2184, + 2180, "get_leaderboard_args!" ], "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "get_leaderboard_aggregate": [ - 2195, + 2191, { "args": [ - 2184, + 2180, "get_leaderboard_args!" ], "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "get_league_season_leaderboard": [ - 2194, + 2190, { "args": [ - 2185, + 2181, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "get_league_season_leaderboard_aggregate": [ - 2195, + 2191, { "args": [ - 2185, + 2181, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "get_player_leaderboard_rank": [ - 3818, + 3814, { "args": [ - 2186, + 2182, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3829, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3828, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3822 + 3818 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3819, + 3815, { "args": [ - 2186, + 2182, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3829, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3828, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3822 + 3818 ] } ], "leaderboard_entries": [ - 2194, + 2190, { "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "leaderboard_entries_aggregate": [ - 2195, + 2191, { "distinct_on": [ - 2205, + 2201, "[leaderboard_entries_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2204, + 2200, "[leaderboard_entries_order_by!]" ], "where": [ - 2198 + 2194 ] } ], "leaderboard_entries_stream": [ - 2194, + 2190, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2210, + 2206, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 2198 + 2194 ] } ], "league_divisions": [ - 2218, + 2214, { "distinct_on": [ - 2233, + 2229, "[league_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2231, + 2227, "[league_divisions_order_by!]" ], "where": [ - 2222 + 2218 ] } ], "league_divisions_aggregate": [ - 2219, + 2215, { "distinct_on": [ - 2233, + 2229, "[league_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2231, + 2227, "[league_divisions_order_by!]" ], "where": [ - 2222 + 2218 ] } ], "league_divisions_by_pk": [ - 2218, + 2214, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_divisions_stream": [ - 2218, + 2214, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2238, + 2234, "[league_divisions_stream_cursor_input]!" ], "where": [ - 2222 + 2218 ] } ], "league_match_weeks": [ - 2246, + 2242, { "distinct_on": [ - 2267, + 2263, "[league_match_weeks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2265, + 2261, "[league_match_weeks_order_by!]" ], "where": [ - 2255 + 2251 ] } ], "league_match_weeks_aggregate": [ - 2247, + 2243, { "distinct_on": [ - 2267, + 2263, "[league_match_weeks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2265, + 2261, "[league_match_weeks_order_by!]" ], "where": [ - 2255 + 2251 ] } ], "league_match_weeks_by_pk": [ - 2246, + 2242, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_match_weeks_stream": [ - 2246, + 2242, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2275, + 2271, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 2255 + 2251 ] } ], "league_relegation_playoffs": [ - 2287, + 2283, { "distinct_on": [ - 2308, + 2304, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2306, + 2302, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2296 + 2292 ] } ], "league_relegation_playoffs_aggregate": [ - 2288, + 2284, { "distinct_on": [ - 2308, + 2304, "[league_relegation_playoffs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2306, + 2302, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2296 + 2292 ] } ], "league_relegation_playoffs_by_pk": [ - 2287, + 2283, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 2287, + 2283, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2316, + 2312, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 2296 + 2292 ] } ], "league_scheduling_proposals": [ - 2328, + 2324, { "distinct_on": [ - 2349, + 2345, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2347, + 2343, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2337 + 2333 ] } ], "league_scheduling_proposals_aggregate": [ - 2329, + 2325, { "distinct_on": [ - 2349, + 2345, "[league_scheduling_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2347, + 2343, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2337 + 2333 ] } ], "league_scheduling_proposals_by_pk": [ - 2328, + 2324, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 2328, + 2324, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2357, + 2353, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 2337 + 2333 ] } ], "league_season_divisions": [ - 2369, + 2365, { "distinct_on": [ - 2388, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2386, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2376 + 2372 ] } ], "league_season_divisions_aggregate": [ - 2370, + 2366, { "distinct_on": [ - 2388, + 2384, "[league_season_divisions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2386, + 2382, "[league_season_divisions_order_by!]" ], "where": [ - 2376 + 2372 ] } ], "league_season_divisions_by_pk": [ - 2369, + 2365, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_season_divisions_stream": [ - 2369, + 2365, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2390, + 2386, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 2376 + 2372 ] } ], "league_seasons": [ - 2394, + 2390, { "distinct_on": [ - 2414, + 2410, "[league_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2411, + 2407, "[league_seasons_order_by!]" ], "where": [ - 2399 + 2395 ] } ], "league_seasons_aggregate": [ - 2395, + 2391, { "distinct_on": [ - 2414, + 2410, "[league_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2411, + 2407, "[league_seasons_order_by!]" ], "where": [ - 2399 + 2395 ] } ], "league_seasons_by_pk": [ - 2394, + 2390, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_seasons_stream": [ - 2394, + 2390, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2419, + 2415, "[league_seasons_stream_cursor_input]!" ], "where": [ - 2399 + 2395 ] } ], "league_team_movements": [ - 2427, + 2423, { "distinct_on": [ - 2448, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2446, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2436 + 2432 ] } ], "league_team_movements_aggregate": [ - 2428, + 2424, { "distinct_on": [ - 2448, + 2444, "[league_team_movements_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2446, + 2442, "[league_team_movements_order_by!]" ], "where": [ - 2436 + 2432 ] } ], "league_team_movements_by_pk": [ - 2427, + 2423, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_team_movements_stream": [ - 2427, + 2423, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2456, + 2452, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 2436 + 2432 ] } ], "league_team_rosters": [ - 2468, + 2464, { "distinct_on": [ - 2489, + 2485, "[league_team_rosters_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2487, + 2483, "[league_team_rosters_order_by!]" ], "where": [ - 2477 + 2473 ] } ], "league_team_rosters_aggregate": [ - 2469, + 2465, { "distinct_on": [ - 2489, + 2485, "[league_team_rosters_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2487, + 2483, "[league_team_rosters_order_by!]" ], "where": [ - 2477 + 2473 ] } ], "league_team_rosters_by_pk": [ - 2468, + 2464, { "league_team_season_id": [ - 5458, + 5454, "uuid!" ], "player_steam_id": [ - 268, + 269, "bigint!" ] } ], "league_team_rosters_stream": [ - 2468, + 2464, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2497, + 2493, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 2477 + 2473 ] } ], "league_team_seasons": [ - 2509, + 2505, { "distinct_on": [ - 2531, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2529, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2518 + 2514 ] } ], "league_team_seasons_aggregate": [ - 2510, + 2506, { "distinct_on": [ - 2531, + 2527, "[league_team_seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2529, + 2525, "[league_team_seasons_order_by!]" ], "where": [ - 2518 + 2514 ] } ], "league_team_seasons_by_pk": [ - 2509, + 2505, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_team_seasons_stream": [ - 2509, + 2505, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2539, + 2535, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 2518 + 2514 ] } ], "league_teams": [ - 2551, + 2547, { "distinct_on": [ - 2564, + 2560, "[league_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2562, + 2558, "[league_teams_order_by!]" ], "where": [ - 2554 + 2550 ] } ], "league_teams_aggregate": [ - 2552, + 2548, { "distinct_on": [ - 2564, + 2560, "[league_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2562, + 2558, "[league_teams_order_by!]" ], "where": [ - 2554 + 2550 ] } ], "league_teams_by_pk": [ - 2551, + 2547, { "id": [ - 5458, + 5454, "uuid!" ] } ], "league_teams_stream": [ - 2551, + 2547, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2566, + 2562, "[league_teams_stream_cursor_input]!" ], "where": [ - 2554 + 2550 ] } ], "lobbies": [ - 2570, + 2566, { "distinct_on": [ - 2583, + 2579, "[lobbies_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2581, + 2577, "[lobbies_order_by!]" ], "where": [ - 2573 + 2569 ] } ], "lobbies_aggregate": [ - 2571, + 2567, { "distinct_on": [ - 2583, + 2579, "[lobbies_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2581, + 2577, "[lobbies_order_by!]" ], "where": [ - 2573 + 2569 ] } ], "lobbies_by_pk": [ - 2570, + 2566, { "id": [ - 5458, + 5454, "uuid!" ] } ], "lobbies_stream": [ - 2570, + 2566, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2585, + 2581, "[lobbies_stream_cursor_input]!" ], "where": [ - 2573 + 2569 ] } ], "lobby_players": [ - 2589, + 2585, { "distinct_on": [ - 2612, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2610, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2600 + 2596 ] } ], "lobby_players_aggregate": [ - 2590, + 2586, { "distinct_on": [ - 2612, + 2608, "[lobby_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2610, + 2606, "[lobby_players_order_by!]" ], "where": [ - 2600 + 2596 ] } ], "lobby_players_by_pk": [ - 2589, + 2585, { "lobby_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "lobby_players_stream": [ - 2589, + 2585, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2622, + 2618, "[lobby_players_stream_cursor_input]!" ], "where": [ - 2600 + 2596 ] } ], "map_pools": [ - 2634, + 2630, { "distinct_on": [ - 2647, + 2643, "[map_pools_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2645, + 2641, "[map_pools_order_by!]" ], "where": [ - 2637 + 2633 ] } ], "map_pools_aggregate": [ - 2635, + 2631, { "distinct_on": [ - 2647, + 2643, "[map_pools_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2645, + 2641, "[map_pools_order_by!]" ], "where": [ - 2637 + 2633 ] } ], "map_pools_by_pk": [ - 2634, + 2630, { "id": [ - 5458, + 5454, "uuid!" ] } ], "map_pools_stream": [ - 2634, + 2630, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2649, + 2645, "[map_pools_stream_cursor_input]!" ], "where": [ - 2637 + 2633 ] } ], "maps": [ - 2653, + 2649, { "distinct_on": [ - 2674, + 2670, "[maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2672, + 2668, "[maps_order_by!]" ], "where": [ - 2662 + 2658 ] } ], "maps_aggregate": [ - 2654, + 2650, { "distinct_on": [ - 2674, + 2670, "[maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2672, + 2668, "[maps_order_by!]" ], "where": [ - 2662 + 2658 ] } ], "maps_by_pk": [ - 2653, + 2649, { "id": [ - 5458, + 5454, "uuid!" ] } ], "maps_stream": [ - 2653, + 2649, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2678, + 2674, "[maps_stream_cursor_input]!" ], "where": [ - 2662 + 2658 ] } ], "match_clips": [ - 2682, + 2678, { "distinct_on": [ - 2704, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2702, + 2698, "[match_clips_order_by!]" ], "where": [ - 2691 + 2687 ] } ], "match_clips_aggregate": [ - 2683, + 2679, { "distinct_on": [ - 2704, + 2700, "[match_clips_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2702, + 2698, "[match_clips_order_by!]" ], "where": [ - 2691 + 2687 ] } ], "match_clips_by_pk": [ - 2682, + 2678, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_clips_stream": [ - 2682, + 2678, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2712, + 2708, "[match_clips_stream_cursor_input]!" ], "where": [ - 2691 + 2687 ] } ], "match_demo_sessions": [ - 2724, + 2720, { "distinct_on": [ - 2750, + 2746, "[match_demo_sessions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2747, + 2743, "[match_demo_sessions_order_by!]" ], "where": [ - 2734 + 2730 ] } ], "match_demo_sessions_aggregate": [ - 2725, + 2721, { "distinct_on": [ - 2750, + 2746, "[match_demo_sessions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2747, + 2743, "[match_demo_sessions_order_by!]" ], "where": [ - 2734 + 2730 ] } ], "match_demo_sessions_by_pk": [ - 2724, + 2720, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_demo_sessions_stream": [ - 2724, + 2720, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2758, + 2754, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 2734 + 2730 ] } ], "match_lineup_players": [ - 2770, + 2766, { "distinct_on": [ - 2793, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2791, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2781 + 2777 ] } ], "match_lineup_players_aggregate": [ - 2771, + 2767, { "distinct_on": [ - 2793, + 2789, "[match_lineup_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2791, + 2787, "[match_lineup_players_order_by!]" ], "where": [ - 2781 + 2777 ] } ], "match_lineup_players_by_pk": [ - 2770, + 2766, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_lineup_players_stream": [ - 2770, + 2766, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2803, + 2799, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 2781 + 2777 ] } ], "match_lineups": [ - 2815, + 2811, { "distinct_on": [ - 2837, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2835, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2824 + 2820 ] } ], "match_lineups_aggregate": [ - 2816, + 2812, { "distinct_on": [ - 2837, + 2833, "[match_lineups_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2835, + 2831, "[match_lineups_order_by!]" ], "where": [ - 2824 + 2820 ] } ], "match_lineups_by_pk": [ - 2815, + 2811, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_lineups_stream": [ - 2815, + 2811, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2845, + 2841, "[match_lineups_stream_cursor_input]!" ], "where": [ - 2824 + 2820 ] } ], "match_map_demos": [ - 2857, + 2853, { "distinct_on": [ - 2886, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2883, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2869 + 2865 ] } ], "match_map_demos_aggregate": [ - 2858, + 2854, { "distinct_on": [ - 2886, + 2882, "[match_map_demos_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2883, + 2879, "[match_map_demos_order_by!]" ], "where": [ - 2869 + 2865 ] } ], "match_map_demos_by_pk": [ - 2857, + 2853, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_map_demos_stream": [ - 2857, + 2853, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2896, + 2892, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2869 + 2865 ] } ], "match_map_rounds": [ - 2908, + 2904, { "distinct_on": [ - 2929, + 2925, "[match_map_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2927, + 2923, "[match_map_rounds_order_by!]" ], "where": [ - 2917 + 2913 ] } ], "match_map_rounds_aggregate": [ - 2909, + 2905, { "distinct_on": [ - 2929, + 2925, "[match_map_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2927, + 2923, "[match_map_rounds_order_by!]" ], "where": [ - 2917 + 2913 ] } ], "match_map_rounds_by_pk": [ - 2908, + 2904, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_map_rounds_stream": [ - 2908, + 2904, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2937, + 2933, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2917 + 2913 ] } ], "match_map_veto_picks": [ - 2949, + 2945, { "distinct_on": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2967, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2958 + 2954 ] } ], "match_map_veto_picks_aggregate": [ - 2950, + 2946, { "distinct_on": [ - 2969, + 2965, "[match_map_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2967, + 2963, "[match_map_veto_picks_order_by!]" ], "where": [ - 2958 + 2954 ] } ], "match_map_veto_picks_by_pk": [ - 2949, + 2945, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2949, + 2945, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 2973, + 2969, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2958 + 2954 ] } ], "match_maps": [ - 2977, + 2973, { "distinct_on": [ - 2999, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2997, + 2993, "[match_maps_order_by!]" ], "where": [ - 2986 + 2982 ] } ], "match_maps_aggregate": [ - 2978, + 2974, { "distinct_on": [ - 2999, + 2995, "[match_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 2997, + 2993, "[match_maps_order_by!]" ], "where": [ - 2986 + 2982 ] } ], "match_maps_by_pk": [ - 2977, + 2973, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_maps_stream": [ - 2977, + 2973, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3007, + 3003, "[match_maps_stream_cursor_input]!" ], "where": [ - 2986 + 2982 ] } ], "match_options": [ - 3019, + 3015, { "distinct_on": [ - 3043, + 3039, "[match_options_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3041, + 3037, "[match_options_order_by!]" ], "where": [ - 3030 + 3026 ] } ], "match_options_aggregate": [ - 3020, + 3016, { "distinct_on": [ - 3043, + 3039, "[match_options_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3041, + 3037, "[match_options_order_by!]" ], "where": [ - 3030 + 3026 ] } ], "match_options_by_pk": [ - 3019, + 3015, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_options_stream": [ - 3019, + 3015, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3053, + 3049, "[match_options_stream_cursor_input]!" ], "where": [ - 3030 + 3026 ] } ], "match_region_veto_picks": [ - 3065, + 3061, { "distinct_on": [ - 3085, + 3081, "[match_region_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3083, + 3079, "[match_region_veto_picks_order_by!]" ], "where": [ - 3074 + 3070 ] } ], "match_region_veto_picks_aggregate": [ - 3066, + 3062, { "distinct_on": [ - 3085, + 3081, "[match_region_veto_picks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3083, + 3079, "[match_region_veto_picks_order_by!]" ], "where": [ - 3074 + 3070 ] } ], "match_region_veto_picks_by_pk": [ - 3065, + 3061, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 3065, + 3061, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3089, + 3085, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 3074 + 3070 ] } ], "match_streams": [ - 3093, + 3089, { "distinct_on": [ - 3121, + 3117, "[match_streams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3118, + 3114, "[match_streams_order_by!]" ], "where": [ - 3105 + 3101 ] } ], "match_streams_aggregate": [ - 3094, + 3090, { "distinct_on": [ - 3121, + 3117, "[match_streams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3118, + 3114, "[match_streams_order_by!]" ], "where": [ - 3105 + 3101 ] } ], "match_streams_by_pk": [ - 3093, + 3089, { "id": [ - 5458, + 5454, "uuid!" ] } ], "match_streams_stream": [ - 3093, + 3089, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3131, + 3127, "[match_streams_stream_cursor_input]!" ], "where": [ - 3105 + 3101 ] } ], "match_type_cfgs": [ - 3143, + 3139, { "distinct_on": [ - 3155, + 3151, "[match_type_cfgs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3153, + 3149, "[match_type_cfgs_order_by!]" ], "where": [ - 3146 + 3142 ] } ], "match_type_cfgs_aggregate": [ - 3144, + 3140, { "distinct_on": [ - 3155, + 3151, "[match_type_cfgs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3153, + 3149, "[match_type_cfgs_order_by!]" ], "where": [ - 3146 + 3142 ] } ], "match_type_cfgs_by_pk": [ - 3143, + 3139, { "type": [ - 832, + 833, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 3143, + 3139, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3157, + 3153, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 3146 + 3142 ] } ], "matches": [ - 3161, + 3157, { "distinct_on": [ - 3185, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3183, + 3179, "[matches_order_by!]" ], "where": [ - 3172 + 3168 ] } ], "matches_aggregate": [ - 3162, + 3158, { "distinct_on": [ - 3185, + 3181, "[matches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3183, + 3179, "[matches_order_by!]" ], "where": [ - 3172 + 3168 ] } ], "matches_by_pk": [ - 3161, + 3157, { "id": [ - 5458, + 5454, "uuid!" ] } ], "matches_stream": [ - 3161, + 3157, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3195, + 3191, "[matches_stream_cursor_input]!" ], "where": [ - 3172 + 3168 ] } ], "migration_hashes_hashes": [ - 3207, + 3203, { "distinct_on": [ - 3219, + 3215, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3217, + 3213, "[migration_hashes_hashes_order_by!]" ], "where": [ - 3210 + 3206 ] } ], "migration_hashes_hashes_aggregate": [ - 3208, + 3204, { "distinct_on": [ - 3219, + 3215, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3217, + 3213, "[migration_hashes_hashes_order_by!]" ], "where": [ - 3210 + 3206 ] } ], "migration_hashes_hashes_by_pk": [ - 3207, + 3203, { "name": [ - 83, + 84, "String!" ] } ], "migration_hashes_hashes_stream": [ - 3207, + 3203, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3221, + 3217, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 3210 + 3206 ] } ], "my_friends": [ - 3225, + 3221, { "distinct_on": [ - 3250, + 3246, "[my_friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3248, + 3244, "[my_friends_order_by!]" ], "where": [ - 3237 + 3233 ] } ], "my_friends_aggregate": [ - 3226, + 3222, { "distinct_on": [ - 3250, + 3246, "[my_friends_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3248, + 3244, "[my_friends_order_by!]" ], "where": [ - 3237 + 3233 ] } ], "my_friends_stream": [ - 3225, + 3221, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3260, + 3256, "[my_friends_stream_cursor_input]!" ], "where": [ - 3237 + 3233 ] } ], "news_articles": [ - 3271, + 3267, { "distinct_on": [ - 3285, + 3281, "[news_articles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3283, + 3279, "[news_articles_order_by!]" ], "where": [ - 3275 + 3271 ] } ], "news_articles_aggregate": [ - 3272, + 3268, { "distinct_on": [ - 3285, + 3281, "[news_articles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3283, + 3279, "[news_articles_order_by!]" ], "where": [ - 3275 + 3271 ] } ], "news_articles_by_pk": [ - 3271, + 3267, { "id": [ - 5458, + 5454, "uuid!" ] } ], "news_articles_stream": [ - 3271, + 3267, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3290, + 3286, "[news_articles_stream_cursor_input]!" ], "where": [ - 3275 + 3271 ] } ], "notification_preferences": [ - 3298, + 3294, { "distinct_on": [ - 3312, + 3308, "[notification_preferences_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3310, + 3306, "[notification_preferences_order_by!]" ], "where": [ - 3302 + 3298 ] } ], "notification_preferences_aggregate": [ - 3299, + 3295, { "distinct_on": [ - 3312, + 3308, "[notification_preferences_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3310, + 3306, "[notification_preferences_order_by!]" ], "where": [ - 3302 + 3298 ] } ], "notification_preferences_by_pk": [ - 3298, + 3294, { "channel": [ - 83, + 84, "String!" ], "key": [ - 83, + 84, "String!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "notification_preferences_stream": [ - 3298, + 3294, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3317, + 3313, "[notification_preferences_stream_cursor_input]!" ], "where": [ - 3302 + 3298 ] } ], "notifications": [ - 3325, + 3321, { "distinct_on": [ - 3353, + 3349, "[notifications_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3350, + 3346, "[notifications_order_by!]" ], "where": [ - 3337 + 3333 ] } ], "notifications_aggregate": [ - 3326, + 3322, { "distinct_on": [ - 3353, + 3349, "[notifications_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3350, + 3346, "[notifications_order_by!]" ], "where": [ - 3337 + 3333 ] } ], "notifications_by_pk": [ - 3325, + 3321, { "id": [ - 5458, + 5454, "uuid!" ] } ], "notifications_stream": [ - 3325, + 3321, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3363, + 3359, "[notifications_stream_cursor_input]!" ], "where": [ - 3337 + 3333 ] } ], "pending_match_import_players": [ - 3378, + 3374, { "distinct_on": [ - 3399, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3397, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3387 + 3383 ] } ], "pending_match_import_players_aggregate": [ - 3379, + 3375, { "distinct_on": [ - 3399, + 3395, "[pending_match_import_players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3397, + 3393, "[pending_match_import_players_order_by!]" ], "where": [ - 3387 + 3383 ] } ], "pending_match_import_players_by_pk": [ - 3378, + 3374, { "steam_id": [ - 268, + 269, "bigint!" ], "valve_match_id": [ - 3375, + 3371, "numeric!" ] } ], "pending_match_import_players_stream": [ - 3378, + 3374, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3407, + 3403, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 3387 + 3383 ] } ], "pending_match_imports": [ - 3419, + 3415, { "distinct_on": [ - 3434, + 3430, "[pending_match_imports_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3432, + 3428, "[pending_match_imports_order_by!]" ], "where": [ - 3423 + 3419 ] } ], "pending_match_imports_aggregate": [ - 3420, + 3416, { "distinct_on": [ - 3434, + 3430, "[pending_match_imports_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3432, + 3428, "[pending_match_imports_order_by!]" ], "where": [ - 3423 + 3419 ] } ], "pending_match_imports_by_pk": [ - 3419, + 3415, { "valve_match_id": [ - 3375, + 3371, "numeric!" ] } ], "pending_match_imports_stream": [ - 3419, + 3415, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3439, + 3435, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 3423 + 3419 ] } ], "player_aim_stats_demo": [ - 3447, + 3443, { "distinct_on": [ - 3461, + 3457, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3459, + 3455, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3451 + 3447 ] } ], "player_aim_stats_demo_aggregate": [ - 3448, + 3444, { "distinct_on": [ - 3461, + 3457, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3459, + 3455, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3451 + 3447 ] } ], "player_aim_stats_demo_by_pk": [ - 3447, + 3443, { "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 3447, + 3443, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3466, + 3462, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 3451 + 3447 ] } ], "player_aim_weapon_stats": [ - 3474, + 3470, { "distinct_on": [ - 3495, + 3491, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3493, + 3489, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3483 + 3479 ] } ], "player_aim_weapon_stats_aggregate": [ - 3475, + 3471, { "distinct_on": [ - 3495, + 3491, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3493, + 3489, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3483 + 3479 ] } ], "player_aim_weapon_stats_by_pk": [ - 3474, + 3470, { "match_map_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ], "weapon_class": [ - 83, + 84, "String!" ] } ], "player_aim_weapon_stats_stream": [ - 3474, + 3470, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3503, + 3499, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 3483 + 3479 ] } ], "player_assists": [ - 3515, + 3511, { "distinct_on": [ - 3538, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3536, + 3532, "[player_assists_order_by!]" ], "where": [ - 3526 + 3522 ] } ], "player_assists_aggregate": [ - 3516, + 3512, { "distinct_on": [ - 3538, + 3534, "[player_assists_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3536, + 3532, "[player_assists_order_by!]" ], "where": [ - 3526 + 3522 ] } ], "player_assists_by_pk": [ - 3515, + 3511, { "attacked_steam_id": [ - 268, + 269, "bigint!" ], "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "player_assists_stream": [ - 3515, + 3511, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3548, + 3544, "[player_assists_stream_cursor_input]!" ], "where": [ - 3526 + 3522 ] } ], "player_career_stats_v": [ - 3560, + 3556, { "distinct_on": [ - 3568, + 3564, "[player_career_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3567, + 3563, "[player_career_stats_v_order_by!]" ], "where": [ - 3564 + 3560 ] } ], "player_career_stats_v_aggregate": [ - 3561, + 3557, { "distinct_on": [ - 3568, + 3564, "[player_career_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3567, + 3563, "[player_career_stats_v_order_by!]" ], "where": [ - 3564 + 3560 ] } ], "player_career_stats_v_stream": [ - 3560, + 3556, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3572, + 3568, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 3564 + 3560 ] } ], "player_damages": [ - 3578, + 3574, { "distinct_on": [ - 3599, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3597, + 3593, "[player_damages_order_by!]" ], "where": [ - 3587 + 3583 ] } ], "player_damages_aggregate": [ - 3579, + 3575, { "distinct_on": [ - 3599, + 3595, "[player_damages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3597, + 3593, "[player_damages_order_by!]" ], "where": [ - 3587 + 3583 ] } ], "player_damages_by_pk": [ - 3578, + 3574, { "id": [ - 5458, + 5454, "uuid!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "player_damages_stream": [ - 3578, + 3574, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3607, + 3603, "[player_damages_stream_cursor_input]!" ], "where": [ - 3587 + 3583 ] } ], "player_elo": [ - 3619, + 3615, { "distinct_on": [ - 3633, + 3629, "[player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3631, + 3627, "[player_elo_order_by!]" ], "where": [ - 3623 + 3619 ] } ], "player_elo_aggregate": [ - 3620, + 3616, { "distinct_on": [ - 3633, + 3629, "[player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3631, + 3627, "[player_elo_order_by!]" ], "where": [ - 3623 + 3619 ] } ], "player_elo_by_pk": [ - 3619, + 3615, { "match_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ], "type": [ - 1181, + 1182, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 3619, + 3615, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3638, + 3634, "[player_elo_stream_cursor_input]!" ], "where": [ - 3623 + 3619 ] } ], "player_faceit_rank_history": [ - 3646, + 3642, { "distinct_on": [ - 3667, + 3663, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3665, + 3661, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3655 + 3651 ] } ], "player_faceit_rank_history_aggregate": [ - 3647, + 3643, { "distinct_on": [ - 3667, + 3663, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3665, + 3661, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3655 + 3651 ] } ], "player_faceit_rank_history_by_pk": [ - 3646, + 3642, { "id": [ - 5458, + 5454, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 3646, + 3642, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3675, + 3671, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 3655 + 3651 ] } ], "player_flashes": [ - 3687, + 3683, { "distinct_on": [ - 3710, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3708, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3698 + 3694 ] } ], "player_flashes_aggregate": [ - 3688, + 3684, { "distinct_on": [ - 3710, + 3706, "[player_flashes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3708, + 3704, "[player_flashes_order_by!]" ], "where": [ - 3698 + 3694 ] } ], "player_flashes_by_pk": [ - 3687, + 3683, { "attacked_steam_id": [ - 268, + 269, "bigint!" ], "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "player_flashes_stream": [ - 3687, + 3683, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3720, + 3716, "[player_flashes_stream_cursor_input]!" ], "where": [ - 3698 + 3694 ] } ], "player_kills": [ - 3732, + 3728, { "distinct_on": [ - 3796, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3794, + 3790, "[player_kills_order_by!]" ], "where": [ - 3743 + 3739 ] } ], "player_kills_aggregate": [ - 3733, + 3729, { "distinct_on": [ - 3796, + 3792, "[player_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3794, + 3790, "[player_kills_order_by!]" ], "where": [ - 3743 + 3739 ] } ], "player_kills_by_pk": [ - 3732, + 3728, { "attacked_steam_id": [ - 268, + 269, "bigint!" ], "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3744, + 3740, { "distinct_on": [ - 3765, + 3761, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3763, + 3759, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3753 + 3749 ] } ], "player_kills_by_weapon_aggregate": [ - 3745, + 3741, { "distinct_on": [ - 3765, + 3761, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3763, + 3759, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3753 + 3749 ] } ], "player_kills_by_weapon_by_pk": [ - 3744, + 3740, { "player_steam_id": [ - 268, + 269, "bigint!" ], "with": [ - 83, + 84, "String!" ] } ], "player_kills_by_weapon_stream": [ - 3744, + 3740, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3773, + 3769, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 3753 + 3749 ] } ], "player_kills_stream": [ - 3732, + 3728, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3806, + 3802, "[player_kills_stream_cursor_input]!" ], "where": [ - 3743 + 3739 ] } ], "player_leaderboard_rank": [ - 3818, + 3814, { "distinct_on": [ - 3829, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3828, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3822 + 3818 ] } ], "player_leaderboard_rank_aggregate": [ - 3819, + 3815, { "distinct_on": [ - 3829, + 3825, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3828, + 3824, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3822 + 3818 ] } ], "player_leaderboard_rank_stream": [ - 3818, + 3814, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3834, + 3830, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 3822 + 3818 ] } ], "player_match_map_stats": [ - 3841, + 3837, { "distinct_on": [ - 3862, + 3858, "[player_match_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3860, + 3856, "[player_match_map_stats_order_by!]" ], "where": [ - 3850 + 3846 ] } ], "player_match_map_stats_aggregate": [ - 3842, + 3838, { "distinct_on": [ - 3862, + 3858, "[player_match_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3860, + 3856, "[player_match_map_stats_order_by!]" ], "where": [ - 3850 + 3846 ] } ], "player_match_map_stats_by_pk": [ - 3841, + 3837, { "match_map_id": [ - 5458, + 5454, "uuid!" ], "steam_id": [ - 268, + 269, "bigint!" ] } ], "player_match_map_stats_stream": [ - 3841, + 3837, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3870, + 3866, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 3850 + 3846 ] } ], "player_match_performance_v": [ - 3882, + 3878, { "distinct_on": [ - 3890, + 3886, "[player_match_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3889, + 3885, "[player_match_performance_v_order_by!]" ], "where": [ - 3886 + 3882 ] } ], "player_match_performance_v_aggregate": [ - 3883, + 3879, { "distinct_on": [ - 3890, + 3886, "[player_match_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3889, + 3885, "[player_match_performance_v_order_by!]" ], "where": [ - 3886 + 3882 ] } ], "player_match_performance_v_stream": [ - 3882, + 3878, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3894, + 3890, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 3886 + 3882 ] } ], "player_match_stats_v": [ - 3900, + 3896, { "distinct_on": [ - 3916, + 3912, "[player_match_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3915, + 3911, "[player_match_stats_v_order_by!]" ], "where": [ - 3909 + 3905 ] } ], "player_match_stats_v_aggregate": [ - 3901, + 3897, { "distinct_on": [ - 3916, + 3912, "[player_match_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3915, + 3911, "[player_match_stats_v_order_by!]" ], "where": [ - 3909 + 3905 ] } ], "player_match_stats_v_stream": [ - 3900, + 3896, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3923, + 3919, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3909 + 3905 ] } ], "player_objectives": [ - 3933, + 3929, { "distinct_on": [ - 3954, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3952, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3942 + 3938 ] } ], "player_objectives_aggregate": [ - 3934, + 3930, { "distinct_on": [ - 3954, + 3950, "[player_objectives_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3952, + 3948, "[player_objectives_order_by!]" ], "where": [ - 3942 + 3938 ] } ], "player_objectives_by_pk": [ - 3933, + 3929, { "match_map_id": [ - 5458, + 5454, "uuid!" ], "player_steam_id": [ - 268, + 269, "bigint!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "player_objectives_stream": [ - 3933, + 3929, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3962, + 3958, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3942 + 3938 ] } ], "player_performance_v": [ - 3974, + 3970, { "distinct_on": [ - 3982, + 3978, "[player_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3981, + 3977, "[player_performance_v_order_by!]" ], "where": [ - 3978 + 3974 ] } ], "player_performance_v_aggregate": [ - 3975, + 3971, { "distinct_on": [ - 3982, + 3978, "[player_performance_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 3981, + 3977, "[player_performance_v_order_by!]" ], "where": [ - 3978 + 3974 ] } ], "player_performance_v_stream": [ - 3974, + 3970, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 3986, + 3982, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3978 + 3974 ] } ], "player_premier_rank_history": [ - 3992, + 3988, { "distinct_on": [ - 4013, + 4009, "[player_premier_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4011, + 4007, "[player_premier_rank_history_order_by!]" ], "where": [ - 4001 + 3997 ] } ], "player_premier_rank_history_aggregate": [ - 3993, + 3989, { "distinct_on": [ - 4013, + 4009, "[player_premier_rank_history_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4011, + 4007, "[player_premier_rank_history_order_by!]" ], "where": [ - 4001 + 3997 ] } ], "player_premier_rank_history_by_pk": [ - 3992, + 3988, { "id": [ - 5458, + 5454, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3992, + 3988, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4021, + 4017, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 4001 + 3997 ] } ], "player_sanctions": [ - 4033, + 4029, { "distinct_on": [ - 4054, + 4050, "[player_sanctions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4052, + 4048, "[player_sanctions_order_by!]" ], "where": [ - 4042 + 4038 ] } ], "player_sanctions_aggregate": [ - 4034, + 4030, { "distinct_on": [ - 4054, + 4050, "[player_sanctions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4052, + 4048, "[player_sanctions_order_by!]" ], "where": [ - 4042 + 4038 ] } ], "player_sanctions_by_pk": [ - 4033, + 4029, { "created_at": [ - 4958, + 4954, "timestamptz!" ], "id": [ - 5458, + 5454, "uuid!" ] } ], "player_sanctions_stream": [ - 4033, + 4029, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4062, + 4058, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 4042 + 4038 ] } ], "player_season_stats": [ - 4074, + 4070, { "distinct_on": [ - 4105, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4103, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 4093 + 4089 ] } ], "player_season_stats_aggregate": [ - 4075, + 4071, { "distinct_on": [ - 4105, + 4101, "[player_season_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4103, + 4099, "[player_season_stats_order_by!]" ], "where": [ - 4093 + 4089 ] } ], "player_season_stats_by_pk": [ - 4074, + 4070, { "player_steam_id": [ - 268, + 269, "bigint!" ], "season_id": [ - 5458, + 5454, "uuid!" ] } ], "player_season_stats_stream": [ - 4074, + 4070, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4121, + 4117, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 4093 + 4089 ] } ], "player_stats": [ - 4133, + 4129, { "distinct_on": [ - 4148, + 4144, "[player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4146, + 4142, "[player_stats_order_by!]" ], "where": [ - 4137 + 4133 ] } ], "player_stats_aggregate": [ - 4134, + 4130, { "distinct_on": [ - 4148, + 4144, "[player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4146, + 4142, "[player_stats_order_by!]" ], "where": [ - 4137 + 4133 ] } ], "player_stats_by_pk": [ - 4133, + 4129, { "player_steam_id": [ - 268, + 269, "bigint!" ] } ], "player_stats_stream": [ - 4133, + 4129, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4153, + 4149, "[player_stats_stream_cursor_input]!" ], "where": [ - 4137 + 4133 ] } ], "player_steam_bot_friend": [ - 4161, + 4157, { "distinct_on": [ - 4180, + 4176, "[player_steam_bot_friend_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4177, + 4173, "[player_steam_bot_friend_order_by!]" ], "where": [ - 4166 + 4162 ] } ], "player_steam_bot_friend_aggregate": [ - 4162, + 4158, { "distinct_on": [ - 4180, + 4176, "[player_steam_bot_friend_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4177, + 4173, "[player_steam_bot_friend_order_by!]" ], "where": [ - 4166 + 4162 ] } ], "player_steam_bot_friend_by_pk": [ - 4161, + 4157, { "steam_id": [ - 268, + 269, "bigint!" ] } ], "player_steam_bot_friend_stream": [ - 4161, + 4157, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4185, + 4181, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 4166 + 4162 ] } ], "player_steam_match_auth": [ - 4193, + 4189, { "distinct_on": [ - 4207, + 4203, "[player_steam_match_auth_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4205, + 4201, "[player_steam_match_auth_order_by!]" ], "where": [ - 4197 + 4193 ] } ], "player_steam_match_auth_aggregate": [ - 4194, + 4190, { "distinct_on": [ - 4207, + 4203, "[player_steam_match_auth_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4205, + 4201, "[player_steam_match_auth_order_by!]" ], "where": [ - 4197 + 4193 ] } ], "player_steam_match_auth_by_pk": [ - 4193, + 4189, { "steam_id": [ - 268, + 269, "bigint!" ] } ], "player_steam_match_auth_stream": [ - 4193, + 4189, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4212, + 4208, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 4197 + 4193 ] } ], "player_unused_utility": [ - 4220, + 4216, { "distinct_on": [ - 4241, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4239, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 4229 + 4225 ] } ], "player_unused_utility_aggregate": [ - 4221, + 4217, { "distinct_on": [ - 4241, + 4237, "[player_unused_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4239, + 4235, "[player_unused_utility_order_by!]" ], "where": [ - 4229 + 4225 ] } ], "player_unused_utility_by_pk": [ - 4220, + 4216, { "match_map_id": [ - 5458, + 5454, "uuid!" ], "player_steam_id": [ - 268, + 269, "bigint!" ] } ], "player_unused_utility_stream": [ - 4220, + 4216, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4249, + 4245, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 4229 + 4225 ] } ], "player_utility": [ - 4261, + 4257, { "distinct_on": [ - 4282, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4280, + 4276, "[player_utility_order_by!]" ], "where": [ - 4270 + 4266 ] } ], "player_utility_aggregate": [ - 4262, + 4258, { "distinct_on": [ - 4282, + 4278, "[player_utility_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4280, + 4276, "[player_utility_order_by!]" ], "where": [ - 4270 + 4266 ] } ], "player_utility_by_pk": [ - 4261, + 4257, { "attacker_steam_id": [ - 268, + 269, "bigint!" ], "match_map_id": [ - 5458, + 5454, "uuid!" ], "time": [ - 4958, + 4954, "timestamptz!" ] } ], "player_utility_stream": [ - 4261, + 4257, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4290, + 4286, "[player_utility_stream_cursor_input]!" ], "where": [ - 4270 + 4266 ] } ], "player_weapon_stats_v": [ - 4302, + 4298, { "distinct_on": [ - 4318, + 4314, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4317, + 4313, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4311 + 4307 ] } ], "player_weapon_stats_v_aggregate": [ - 4303, + 4299, { "distinct_on": [ - 4318, + 4314, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4317, + 4313, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4311 + 4307 ] } ], "player_weapon_stats_v_stream": [ - 4302, + 4298, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4325, + 4321, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 4311 + 4307 ] } ], "players": [ - 4335, + 4331, { "distinct_on": [ - 4350, + 4346, "[players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4348, + 4344, "[players_order_by!]" ], "where": [ - 4339 + 4335 ] } ], "players_aggregate": [ - 4336, + 4332, { "distinct_on": [ - 4350, + 4346, "[players_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4348, + 4344, "[players_order_by!]" ], "where": [ - 4339 + 4335 ] } ], "players_by_pk": [ - 4335, + 4331, { "steam_id": [ - 268, + 269, "bigint!" ] } ], "players_stream": [ - 4335, + 4331, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4355, + 4351, "[players_stream_cursor_input]!" ], "where": [ - 4339 + 4335 ] } ], "plugin_versions": [ - 4363, + 4359, { "distinct_on": [ - 4377, + 4373, "[plugin_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4375, + 4371, "[plugin_versions_order_by!]" ], "where": [ - 4367 + 4363 ] } ], "plugin_versions_aggregate": [ - 4364, + 4360, { "distinct_on": [ - 4377, + 4373, "[plugin_versions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4375, + 4371, "[plugin_versions_order_by!]" ], "where": [ - 4367 + 4363 ] } ], "plugin_versions_by_pk": [ - 4363, + 4359, { "runtime": [ - 1262, + 1263, "e_plugin_runtimes_enum!" ], "version": [ - 83, + 84, "String!" ] } ], "plugin_versions_stream": [ - 4363, + 4359, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4382, + 4378, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 4367 + 4363 ] } ], "push_subscriptions": [ - 4390, + 4386, { "distinct_on": [ - 4404, + 4400, "[push_subscriptions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4402, + 4398, "[push_subscriptions_order_by!]" ], "where": [ - 4394 + 4390 ] } ], "push_subscriptions_aggregate": [ - 4391, + 4387, { "distinct_on": [ - 4404, + 4400, "[push_subscriptions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4402, + 4398, "[push_subscriptions_order_by!]" ], "where": [ - 4394 + 4390 ] } ], "push_subscriptions_by_pk": [ - 4390, + 4386, { "id": [ - 5458, + 5454, "uuid!" ] } ], "push_subscriptions_stream": [ - 4390, + 4386, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4409, + 4405, "[push_subscriptions_stream_cursor_input]!" ], "where": [ - 4394 + 4390 ] } ], "seasons": [ - 4421, + 4417, { "distinct_on": [ - 4436, + 4432, "[seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4434, + 4430, "[seasons_order_by!]" ], "where": [ - 4425 + 4421 ] } ], "seasons_aggregate": [ - 4422, + 4418, { "distinct_on": [ - 4436, + 4432, "[seasons_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4434, + 4430, "[seasons_order_by!]" ], "where": [ - 4425 + 4421 ] } ], "seasons_by_pk": [ - 4421, + 4417, { "id": [ - 5458, + 5454, "uuid!" ] } ], "seasons_stream": [ - 4421, + 4417, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4441, + 4437, "[seasons_stream_cursor_input]!" ], "where": [ - 4425 + 4421 ] } ], "server_regions": [ - 4449, + 4445, { "distinct_on": [ - 4463, + 4459, "[server_regions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4461, + 4457, "[server_regions_order_by!]" ], "where": [ - 4453 + 4449 ] } ], "server_regions_aggregate": [ - 4450, + 4446, { "distinct_on": [ - 4463, + 4459, "[server_regions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4461, + 4457, "[server_regions_order_by!]" ], "where": [ - 4453 + 4449 ] } ], "server_regions_by_pk": [ - 4449, + 4445, { "value": [ - 83, + 84, "String!" ] } ], "server_regions_stream": [ - 4449, + 4445, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4468, + 4464, "[server_regions_stream_cursor_input]!" ], "where": [ - 4453 + 4449 ] } ], "servers": [ - 4476, + 4472, { "distinct_on": [ - 4505, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4502, + 4498, "[servers_order_by!]" ], "where": [ - 4488 + 4484 ] } ], "servers_aggregate": [ - 4477, + 4473, { "distinct_on": [ - 4505, + 4501, "[servers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4502, + 4498, "[servers_order_by!]" ], "where": [ - 4488 + 4484 ] } ], "servers_by_pk": [ - 4476, + 4472, { "id": [ - 5458, + 5454, "uuid!" ] } ], "servers_stream": [ - 4476, + 4472, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4515, + 4511, "[servers_stream_cursor_input]!" ], "where": [ - 4488 + 4484 ] } ], "settings": [ - 4527, + 4523, { "distinct_on": [ - 4539, + 4535, "[settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4537, + 4533, "[settings_order_by!]" ], "where": [ - 4530 + 4526 ] } ], "settings_aggregate": [ - 4528, + 4524, { "distinct_on": [ - 4539, + 4535, "[settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4537, + 4533, "[settings_order_by!]" ], "where": [ - 4530 + 4526 ] } ], "settings_by_pk": [ - 4527, + 4523, { "name": [ - 83, + 84, "String!" ] } ], "settings_stream": [ - 4527, + 4523, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4541, + 4537, "[settings_stream_cursor_input]!" ], "where": [ - 4530 + 4526 ] } ], "steam_account_claims": [ - 4547, + 4543, { "distinct_on": [ - 4565, + 4561, "[steam_account_claims_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4563, + 4559, "[steam_account_claims_order_by!]" ], "where": [ - 4554 + 4550 ] } ], "steam_account_claims_aggregate": [ - 4548, + 4544, { "distinct_on": [ - 4565, + 4561, "[steam_account_claims_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4563, + 4559, "[steam_account_claims_order_by!]" ], "where": [ - 4554 + 4550 ] } ], "steam_account_claims_by_pk": [ - 4547, + 4543, { "id": [ - 5458, + 5454, "uuid!" ] } ], "steam_account_claims_stream": [ - 4547, + 4543, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4567, + 4563, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 4554 + 4550 ] } ], "steam_accounts": [ - 4571, + 4567, { "distinct_on": [ - 4586, + 4582, "[steam_accounts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4584, + 4580, "[steam_accounts_order_by!]" ], "where": [ - 4575 + 4571 ] } ], "steam_accounts_aggregate": [ - 4572, + 4568, { "distinct_on": [ - 4586, + 4582, "[steam_accounts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4584, + 4580, "[steam_accounts_order_by!]" ], "where": [ - 4575 + 4571 ] } ], "steam_accounts_by_pk": [ - 4571, + 4567, { "id": [ - 5458, + 5454, "uuid!" ] } ], "steam_accounts_stream": [ - 4571, + 4567, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4591, + 4587, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 4575 + 4571 ] } ], "system_alerts": [ - 4599, + 4595, { "distinct_on": [ - 4613, + 4609, "[system_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4611, + 4607, "[system_alerts_order_by!]" ], "where": [ - 4603 + 4599 ] } ], "system_alerts_aggregate": [ - 4600, + 4596, { "distinct_on": [ - 4613, + 4609, "[system_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4611, + 4607, "[system_alerts_order_by!]" ], "where": [ - 4603 + 4599 ] } ], "system_alerts_by_pk": [ - 4599, + 4595, { "id": [ - 5458, + 5454, "uuid!" ] } ], "system_alerts_stream": [ - 4599, + 4595, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4618, + 4614, "[system_alerts_stream_cursor_input]!" ], "where": [ - 4603 + 4599 ] } ], "team_invites": [ - 4626, + 4622, { "distinct_on": [ - 4647, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4645, + 4641, "[team_invites_order_by!]" ], "where": [ - 4635 + 4631 ] } ], "team_invites_aggregate": [ - 4627, + 4623, { "distinct_on": [ - 4647, + 4643, "[team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4645, + 4641, "[team_invites_order_by!]" ], "where": [ - 4635 + 4631 ] } ], "team_invites_by_pk": [ - 4626, + 4622, { "id": [ - 5458, + 5454, "uuid!" ] } ], "team_invites_stream": [ - 4626, + 4622, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4655, + 4651, "[team_invites_stream_cursor_input]!" ], "where": [ - 4635 + 4631 ] } ], "team_roster": [ - 4667, + 4663, { "distinct_on": [ - 4690, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4688, + 4684, "[team_roster_order_by!]" ], "where": [ - 4678 + 4674 ] } ], "team_roster_aggregate": [ - 4668, + 4664, { "distinct_on": [ - 4690, + 4686, "[team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4688, + 4684, "[team_roster_order_by!]" ], "where": [ - 4678 + 4674 ] } ], "team_roster_by_pk": [ - 4667, + 4663, { "player_steam_id": [ - 268, + 269, "bigint!" ], "team_id": [ - 5458, + 5454, "uuid!" ] } ], "team_roster_stream": [ - 4667, + 4663, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4700, + 4696, "[team_roster_stream_cursor_input]!" ], "where": [ - 4678 + 4674 ] } ], "team_scrim_alerts": [ - 4712, + 4708, { "distinct_on": [ - 4726, + 4722, "[team_scrim_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4724, + 4720, "[team_scrim_alerts_order_by!]" ], "where": [ - 4716 + 4712 ] } ], "team_scrim_alerts_aggregate": [ - 4713, + 4709, { "distinct_on": [ - 4726, + 4722, "[team_scrim_alerts_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4724, + 4720, "[team_scrim_alerts_order_by!]" ], "where": [ - 4716 + 4712 ] } ], "team_scrim_alerts_by_pk": [ - 4712, + 4708, { "id": [ - 5458, + 5454, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 4712, + 4708, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4731, + 4727, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 4716 + 4712 ] } ], "team_scrim_availability": [ - 4739, + 4735, { "distinct_on": [ - 4759, + 4755, "[team_scrim_availability_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4757, + 4753, "[team_scrim_availability_order_by!]" ], "where": [ - 4748 + 4744 ] } ], "team_scrim_availability_aggregate": [ - 4740, + 4736, { "distinct_on": [ - 4759, + 4755, "[team_scrim_availability_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4757, + 4753, "[team_scrim_availability_order_by!]" ], "where": [ - 4748 + 4744 ] } ], "team_scrim_availability_by_pk": [ - 4739, + 4735, { "id": [ - 5458, + 5454, "uuid!" ] } ], "team_scrim_availability_stream": [ - 4739, + 4735, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4763, + 4759, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 4748 + 4744 ] } ], "team_scrim_request_proposals": [ - 4767, + 4763, { "distinct_on": [ - 4788, + 4784, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4786, + 4782, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4776 + 4772 ] } ], "team_scrim_request_proposals_aggregate": [ - 4768, + 4764, { "distinct_on": [ - 4788, + 4784, "[team_scrim_request_proposals_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4786, + 4782, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4776 + 4772 ] } ], "team_scrim_request_proposals_by_pk": [ - 4767, + 4763, { "id": [ - 5458, + 5454, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 4767, + 4763, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4796, + 4792, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 4776 + 4772 ] } ], "team_scrim_requests": [ - 4808, + 4804, { "distinct_on": [ - 4832, + 4828, "[team_scrim_requests_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4830, + 4826, "[team_scrim_requests_order_by!]" ], "where": [ - 4819 + 4815 ] } ], "team_scrim_requests_aggregate": [ - 4809, + 4805, { "distinct_on": [ - 4832, + 4828, "[team_scrim_requests_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4830, + 4826, "[team_scrim_requests_order_by!]" ], "where": [ - 4819 + 4815 ] } ], "team_scrim_requests_by_pk": [ - 4808, + 4804, { "id": [ - 5458, + 5454, "uuid!" ] } ], "team_scrim_requests_stream": [ - 4808, + 4804, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4842, + 4838, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 4819 + 4815 ] } ], "team_scrim_settings": [ - 4854, + 4850, { "distinct_on": [ - 4869, + 4865, "[team_scrim_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4867, + 4863, "[team_scrim_settings_order_by!]" ], "where": [ - 4858 + 4854 ] } ], "team_scrim_settings_aggregate": [ - 4855, + 4851, { "distinct_on": [ - 4869, + 4865, "[team_scrim_settings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4867, + 4863, "[team_scrim_settings_order_by!]" ], "where": [ - 4858 + 4854 ] } ], "team_scrim_settings_by_pk": [ - 4854, + 4850, { "id": [ - 5458, + 5454, "uuid!" ] } ], "team_scrim_settings_stream": [ - 4854, + 4850, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4874, + 4870, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 4858 + 4854 ] } ], "team_suggestions": [ - 4882, + 4878, { "distinct_on": [ - 4896, + 4892, "[team_suggestions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4894, + 4890, "[team_suggestions_order_by!]" ], "where": [ - 4886 + 4882 ] } ], "team_suggestions_aggregate": [ - 4883, + 4879, { "distinct_on": [ - 4896, + 4892, "[team_suggestions_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4894, + 4890, "[team_suggestions_order_by!]" ], "where": [ - 4886 + 4882 ] } ], "team_suggestions_by_pk": [ - 4882, + 4878, { "id": [ - 5458, + 5454, "uuid!" ] } ], "team_suggestions_stream": [ - 4882, + 4878, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4901, + 4897, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 4886 + 4882 ] } ], "teams": [ - 4909, + 4905, { "distinct_on": [ - 4933, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4931, + 4927, "[teams_order_by!]" ], "where": [ - 4920 + 4916 ] } ], "teams_aggregate": [ - 4910, + 4906, { "distinct_on": [ - 4933, + 4929, "[teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4931, + 4927, "[teams_order_by!]" ], "where": [ - 4920 + 4916 ] } ], "teams_by_pk": [ - 4909, + 4905, { "id": [ - 5458, + 5454, "uuid!" ] } ], "teams_stream": [ - 4909, + 4905, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4943, + 4939, "[teams_stream_cursor_input]!" ], "where": [ - 4920 + 4916 ] } ], "tournament_awards": [ - 4960, + 4956, { "distinct_on": [ - 4982, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4980, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4969 + 4965 ] } ], "tournament_awards_aggregate": [ - 4961, + 4957, { "distinct_on": [ - 4982, + 4978, "[tournament_awards_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 4980, + 4976, "[tournament_awards_order_by!]" ], "where": [ - 4969 + 4965 ] } ], "tournament_awards_by_pk": [ - 4960, + 4956, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_awards_stream": [ - 4960, + 4956, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 4990, + 4986, "[tournament_awards_stream_cursor_input]!" ], "where": [ - 4969 + 4965 ] } ], "tournament_brackets": [ - 5002, + 4998, { "distinct_on": [ - 5026, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5024, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 5013 + 5009 ] } ], "tournament_brackets_aggregate": [ - 5003, + 4999, { "distinct_on": [ - 5026, + 5022, "[tournament_brackets_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5024, + 5020, "[tournament_brackets_order_by!]" ], "where": [ - 5013 + 5009 ] } ], "tournament_brackets_by_pk": [ - 5002, + 4998, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_brackets_stream": [ - 5002, + 4998, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5036, + 5032, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 5013 + 5009 ] } ], "tournament_categories": [ - 5048, + 5044, { "distinct_on": [ - 5066, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5064, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 5055 + 5051 ] } ], "tournament_categories_aggregate": [ - 5049, + 5045, { "distinct_on": [ - 5066, + 5062, "[tournament_categories_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5064, + 5060, "[tournament_categories_order_by!]" ], "where": [ - 5055 + 5051 ] } ], "tournament_categories_by_pk": [ - 5048, + 5044, { "category": [ - 1464, + 1465, "e_tournament_categories_enum!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_categories_stream": [ - 5048, + 5044, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5068, + 5064, "[tournament_categories_stream_cursor_input]!" ], "where": [ - 5055 + 5051 ] } ], "tournament_organizer_teams": [ - 5072, + 5068, { "distinct_on": [ - 5090, + 5086, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5088, + 5084, "[tournament_organizer_teams_order_by!]" ], "where": [ - 5079 + 5075 ] } ], "tournament_organizer_teams_aggregate": [ - 5073, + 5069, { "distinct_on": [ - 5090, + 5086, "[tournament_organizer_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5088, + 5084, "[tournament_organizer_teams_order_by!]" ], "where": [ - 5079 + 5075 ] } ], "tournament_organizer_teams_by_pk": [ - 5072, + 5068, { "team_id": [ - 5458, + 5454, "uuid!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_organizer_teams_stream": [ - 5072, + 5068, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5092, + 5088, "[tournament_organizer_teams_stream_cursor_input]!" ], "where": [ - 5079 + 5075 ] } ], "tournament_organizers": [ - 5096, + 5092, { "distinct_on": [ - 5117, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5115, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 5105 + 5101 ] } ], "tournament_organizers_aggregate": [ - 5097, + 5093, { "distinct_on": [ - 5117, + 5113, "[tournament_organizers_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5115, + 5111, "[tournament_organizers_order_by!]" ], "where": [ - 5105 + 5101 ] } ], "tournament_organizers_by_pk": [ - 5096, + 5092, { "steam_id": [ - 268, + 269, "bigint!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_organizers_stream": [ - 5096, + 5092, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5125, + 5121, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 5105 + 5101 ] } ], "tournament_prizes": [ - 5137, + 5133, { "distinct_on": [ - 5158, + 5154, "[tournament_prizes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5156, + 5152, "[tournament_prizes_order_by!]" ], "where": [ - 5146 + 5142 ] } ], "tournament_prizes_aggregate": [ - 5138, + 5134, { "distinct_on": [ - 5158, + 5154, "[tournament_prizes_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5156, + 5152, "[tournament_prizes_order_by!]" ], "where": [ - 5146 + 5142 ] } ], "tournament_prizes_by_pk": [ - 5137, + 5133, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_prizes_stream": [ - 5137, + 5133, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5166, + 5162, "[tournament_prizes_stream_cursor_input]!" ], "where": [ - 5146 + 5142 ] } ], "tournament_stage_windows": [ - 5178, + 5174, { "distinct_on": [ - 5199, + 5195, "[tournament_stage_windows_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5197, + 5193, "[tournament_stage_windows_order_by!]" ], "where": [ - 5187 + 5183 ] } ], "tournament_stage_windows_aggregate": [ - 5179, + 5175, { "distinct_on": [ - 5199, + 5195, "[tournament_stage_windows_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5197, + 5193, "[tournament_stage_windows_order_by!]" ], "where": [ - 5187 + 5183 ] } ], "tournament_stage_windows_by_pk": [ - 5178, + 5174, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 5178, + 5174, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5207, + 5203, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 5187 + 5183 ] } ], "tournament_stages": [ - 5219, + 5215, { "distinct_on": [ - 5248, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5245, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 5231 + 5227 ] } ], "tournament_stages_aggregate": [ - 5220, + 5216, { "distinct_on": [ - 5248, + 5244, "[tournament_stages_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5245, + 5241, "[tournament_stages_order_by!]" ], "where": [ - 5231 + 5227 ] } ], "tournament_stages_by_pk": [ - 5219, + 5215, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_stages_stream": [ - 5219, + 5215, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5258, + 5254, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 5231 + 5227 ] } ], "tournament_team_invites": [ - 5270, + 5266, { "distinct_on": [ - 5291, + 5287, "[tournament_team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5289, + 5285, "[tournament_team_invites_order_by!]" ], "where": [ - 5279 + 5275 ] } ], "tournament_team_invites_aggregate": [ - 5271, + 5267, { "distinct_on": [ - 5291, + 5287, "[tournament_team_invites_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5289, + 5285, "[tournament_team_invites_order_by!]" ], "where": [ - 5279 + 5275 ] } ], "tournament_team_invites_by_pk": [ - 5270, + 5266, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_team_invites_stream": [ - 5270, + 5266, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5299, + 5295, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 5279 + 5275 ] } ], "tournament_team_roster": [ - 5311, + 5307, { "distinct_on": [ - 5332, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5330, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5320 + 5316 ] } ], "tournament_team_roster_aggregate": [ - 5312, + 5308, { "distinct_on": [ - 5332, + 5328, "[tournament_team_roster_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5330, + 5326, "[tournament_team_roster_order_by!]" ], "where": [ - 5320 + 5316 ] } ], "tournament_team_roster_by_pk": [ - 5311, + 5307, { "player_steam_id": [ - 268, + 269, "bigint!" ], "tournament_id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_team_roster_stream": [ - 5311, + 5307, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5340, + 5336, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 5320 + 5316 ] } ], "tournament_teams": [ - 5352, + 5348, { "distinct_on": [ - 5374, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5372, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5361 + 5357 ] } ], "tournament_teams_aggregate": [ - 5353, + 5349, { "distinct_on": [ - 5374, + 5370, "[tournament_teams_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5372, + 5368, "[tournament_teams_order_by!]" ], "where": [ - 5361 + 5357 ] } ], "tournament_teams_by_pk": [ - 5352, + 5348, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournament_teams_stream": [ - 5352, + 5348, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5382, + 5378, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 5361 + 5357 ] } ], "tournaments": [ - 5394, + 5390, { "distinct_on": [ - 5428, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5426, + 5422, "[tournaments_order_by!]" ], "where": [ - 5415 + 5411 ] } ], "tournaments_aggregate": [ - 5395, + 5391, { "distinct_on": [ - 5428, + 5424, "[tournaments_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5426, + 5422, "[tournaments_order_by!]" ], "where": [ - 5415 + 5411 ] } ], "tournaments_by_pk": [ - 5394, + 5390, { "id": [ - 5458, + 5454, "uuid!" ] } ], "tournaments_stream": [ - 5394, + 5390, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5446, + 5442, "[tournaments_stream_cursor_input]!" ], "where": [ - 5415 + 5411 ] } ], "v_event_player_stats": [ - 5461, + 5457, { "distinct_on": [ - 5487, + 5483, "[v_event_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5486, + 5482, "[v_event_player_stats_order_by!]" ], "where": [ - 5480 + 5476 ] } ], "v_event_player_stats_aggregate": [ - 5462, + 5458, { "distinct_on": [ - 5487, + 5483, "[v_event_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5486, + 5482, "[v_event_player_stats_order_by!]" ], "where": [ - 5480 + 5476 ] } ], "v_event_player_stats_stream": [ - 5461, + 5457, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5502, + 5498, "[v_event_player_stats_stream_cursor_input]!" ], "where": [ - 5480 + 5476 ] } ], "v_gpu_pool_status": [ - 5512, + 5508, { "distinct_on": [ - 5520, + 5516, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5519, + 5515, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5516 + 5512 ] } ], "v_gpu_pool_status_aggregate": [ - 5513, + 5509, { "distinct_on": [ - 5520, + 5516, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5519, + 5515, "[v_gpu_pool_status_order_by!]" ], "where": [ - 5516 + 5512 ] } ], "v_gpu_pool_status_stream": [ - 5512, + 5508, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5524, + 5520, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 5516 + 5512 ] } ], "v_league_division_standings": [ - 5530, + 5526, { "distinct_on": [ - 5546, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5545, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5539 + 5535 ] } ], "v_league_division_standings_aggregate": [ - 5531, + 5527, { "distinct_on": [ - 5546, + 5542, "[v_league_division_standings_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5545, + 5541, "[v_league_division_standings_order_by!]" ], "where": [ - 5539 + 5535 ] } ], "v_league_division_standings_stream": [ - 5530, + 5526, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5553, + 5549, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 5539 + 5535 ] } ], "v_league_season_player_stats": [ - 5563, + 5559, { "distinct_on": [ - 5589, + 5585, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5588, + 5584, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5582 + 5578 ] } ], "v_league_season_player_stats_aggregate": [ - 5564, + 5560, { "distinct_on": [ - 5589, + 5585, "[v_league_season_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5588, + 5584, "[v_league_season_player_stats_order_by!]" ], "where": [ - 5582 + 5578 ] } ], "v_league_season_player_stats_stream": [ - 5563, + 5559, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5604, + 5600, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 5582 + 5578 ] } ], "v_match_captains": [ - 5614, + 5610, { "distinct_on": [ - 5626, + 5622, "[v_match_captains_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5625, + 5621, "[v_match_captains_order_by!]" ], "where": [ - 5618 + 5614 ] } ], "v_match_captains_aggregate": [ - 5615, + 5611, { "distinct_on": [ - 5626, + 5622, "[v_match_captains_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5625, + 5621, "[v_match_captains_order_by!]" ], "where": [ - 5618 + 5614 ] } ], "v_match_captains_stream": [ - 5614, + 5610, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5631, + 5627, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 5618 + 5614 ] } ], "v_match_clutches": [ - 5638, + 5634, { "distinct_on": [ - 5654, + 5650, "[v_match_clutches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5653, + 5649, "[v_match_clutches_order_by!]" ], "where": [ - 5647 + 5643 ] } ], "v_match_clutches_aggregate": [ - 5639, + 5635, { "distinct_on": [ - 5654, + 5650, "[v_match_clutches_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5653, + 5649, "[v_match_clutches_order_by!]" ], "where": [ - 5647 + 5643 ] } ], "v_match_clutches_stream": [ - 5638, + 5634, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5661, + 5657, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 5647 + 5643 ] } ], "v_match_kill_pairs": [ - 5671, + 5667, { "distinct_on": [ - 5679, + 5675, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5678, + 5674, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5675 + 5671 ] } ], "v_match_kill_pairs_aggregate": [ - 5672, + 5668, { "distinct_on": [ - 5679, + 5675, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5678, + 5674, "[v_match_kill_pairs_order_by!]" ], "where": [ - 5675 + 5671 ] } ], "v_match_kill_pairs_stream": [ - 5671, + 5667, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5683, + 5679, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 5675 + 5671 ] } ], "v_match_lineup_buy_types": [ - 5689, + 5685, { "distinct_on": [ - 5697, + 5693, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5696, + 5692, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5693 + 5689 ] } ], "v_match_lineup_buy_types_aggregate": [ - 5690, + 5686, { "distinct_on": [ - 5697, + 5693, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5696, + 5692, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 5693 + 5689 ] } ], "v_match_lineup_buy_types_stream": [ - 5689, + 5685, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5701, + 5697, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 5693 + 5689 ] } ], "v_match_lineup_map_stats": [ - 5707, + 5703, { "distinct_on": [ - 5715, + 5711, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5714, + 5710, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5711 + 5707 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5708, + 5704, { "distinct_on": [ - 5715, + 5711, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5714, + 5710, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5711 + 5707 ] } ], "v_match_lineup_map_stats_stream": [ - 5707, + 5703, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5719, + 5715, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 5711 + 5707 ] } ], "v_match_map_backup_rounds": [ - 5725, + 5721, { "distinct_on": [ - 5736, + 5732, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5735, + 5731, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5729 + 5725 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5726, + 5722, { "distinct_on": [ - 5736, + 5732, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5735, + 5731, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5729 + 5725 ] } ], "v_match_map_backup_rounds_stream": [ - 5725, + 5721, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5741, + 5737, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 5729 + 5725 ] } ], "v_match_player_buy_types": [ - 5748, + 5744, { "distinct_on": [ - 5756, + 5752, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5755, + 5751, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5752 + 5748 ] } ], "v_match_player_buy_types_aggregate": [ - 5749, + 5745, { "distinct_on": [ - 5756, + 5752, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5755, + 5751, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5752 + 5748 ] } ], "v_match_player_buy_types_stream": [ - 5748, + 5744, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5760, + 5756, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 5752 + 5748 ] } ], "v_match_player_opening_duels": [ - 5766, + 5762, { "distinct_on": [ - 5782, + 5778, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5781, + 5777, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5775 + 5771 ] } ], "v_match_player_opening_duels_aggregate": [ - 5767, + 5763, { "distinct_on": [ - 5782, + 5778, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5781, + 5777, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5775 + 5771 ] } ], "v_match_player_opening_duels_stream": [ - 5766, + 5762, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5789, + 5785, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 5775 + 5771 ] } ], "v_player_arch_nemesis": [ - 5799, + 5795, { "distinct_on": [ - 5807, + 5803, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5806, + 5802, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5803 + 5799 ] } ], "v_player_arch_nemesis_aggregate": [ - 5800, + 5796, { "distinct_on": [ - 5807, + 5803, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5806, + 5802, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5803 + 5799 ] } ], "v_player_arch_nemesis_stream": [ - 5799, + 5795, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5811, + 5807, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 5803 + 5799 ] } ], "v_player_damage": [ - 5817, + 5813, { "distinct_on": [ - 5825, + 5821, "[v_player_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5824, + 5820, "[v_player_damage_order_by!]" ], "where": [ - 5821 + 5817 ] } ], "v_player_damage_aggregate": [ - 5818, + 5814, { "distinct_on": [ - 5825, + 5821, "[v_player_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5824, + 5820, "[v_player_damage_order_by!]" ], "where": [ - 5821 + 5817 ] } ], "v_player_damage_stream": [ - 5817, + 5813, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5829, + 5825, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 5821 + 5817 ] } ], "v_player_elo": [ - 5835, + 5831, { "distinct_on": [ - 5861, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5860, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5854 + 5850 ] } ], "v_player_elo_aggregate": [ - 5836, + 5832, { "distinct_on": [ - 5861, + 5857, "[v_player_elo_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5860, + 5856, "[v_player_elo_order_by!]" ], "where": [ - 5854 + 5850 ] } ], "v_player_elo_stream": [ - 5835, + 5831, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5876, + 5872, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 5854 + 5850 ] } ], "v_player_map_losses": [ - 5886, + 5882, { "distinct_on": [ - 5894, + 5890, "[v_player_map_losses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5893, + 5889, "[v_player_map_losses_order_by!]" ], "where": [ - 5890 + 5886 ] } ], "v_player_map_losses_aggregate": [ - 5887, + 5883, { "distinct_on": [ - 5894, + 5890, "[v_player_map_losses_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5893, + 5889, "[v_player_map_losses_order_by!]" ], "where": [ - 5890 + 5886 ] } ], "v_player_map_losses_stream": [ - 5886, + 5882, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5898, + 5894, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 5890 + 5886 ] } ], "v_player_map_wins": [ - 5904, + 5900, { "distinct_on": [ - 5912, + 5908, "[v_player_map_wins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5911, + 5907, "[v_player_map_wins_order_by!]" ], "where": [ - 5908 + 5904 ] } ], "v_player_map_wins_aggregate": [ - 5905, + 5901, { "distinct_on": [ - 5912, + 5908, "[v_player_map_wins_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5911, + 5907, "[v_player_map_wins_order_by!]" ], "where": [ - 5908 + 5904 ] } ], "v_player_map_wins_stream": [ - 5904, + 5900, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5916, + 5912, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 5908 + 5904 ] } ], "v_player_match_head_to_head": [ - 5922, + 5918, { "distinct_on": [ - 5930, + 5926, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5929, + 5925, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5926 + 5922 ] } ], "v_player_match_head_to_head_aggregate": [ - 5923, + 5919, { "distinct_on": [ - 5930, + 5926, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5929, + 5925, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5926 + 5922 ] } ], "v_player_match_head_to_head_stream": [ - 5922, + 5918, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5934, + 5930, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 5926 + 5922 ] } ], "v_player_match_map_hltv": [ - 5940, + 5936, { "distinct_on": [ - 5958, + 5954, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5957, + 5953, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5949 + 5945 ] } ], "v_player_match_map_hltv_aggregate": [ - 5941, + 5937, { "distinct_on": [ - 5958, + 5954, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5957, + 5953, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5949 + 5945 ] } ], "v_player_match_map_hltv_stream": [ - 5940, + 5936, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5966, + 5962, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 5949 + 5945 ] } ], "v_player_match_map_roles": [ - 5977, + 5973, { "distinct_on": [ - 5985, + 5981, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5984, + 5980, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5981 + 5977 ] } ], "v_player_match_map_roles_aggregate": [ - 5978, + 5974, { "distinct_on": [ - 5985, + 5981, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 5984, + 5980, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5981 + 5977 ] } ], "v_player_match_map_roles_stream": [ - 5977, + 5973, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 5989, + 5985, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 5981 + 5977 ] } ], "v_player_match_performance": [ - 5995, + 5991, { "distinct_on": [ - 6003, + 5999, "[v_player_match_performance_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6002, + 5998, "[v_player_match_performance_order_by!]" ], "where": [ - 5999 + 5995 ] } ], "v_player_match_performance_aggregate": [ - 5996, + 5992, { "distinct_on": [ - 6003, + 5999, "[v_player_match_performance_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6002, + 5998, "[v_player_match_performance_order_by!]" ], "where": [ - 5999 + 5995 ] } ], "v_player_match_performance_stream": [ - 5995, + 5991, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6007, + 6003, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 5999 + 5995 ] } ], "v_player_match_rating": [ - 6013, + 6009, { "distinct_on": [ - 6021, + 6017, "[v_player_match_rating_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6020, + 6016, "[v_player_match_rating_order_by!]" ], "where": [ - 6017 + 6013 ] } ], "v_player_match_rating_aggregate": [ - 6014, + 6010, { "distinct_on": [ - 6021, + 6017, "[v_player_match_rating_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6020, + 6016, "[v_player_match_rating_order_by!]" ], "where": [ - 6017 + 6013 ] } ], "v_player_match_rating_stream": [ - 6013, + 6009, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6025, + 6021, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 6017 + 6013 ] } ], "v_player_multi_kills": [ - 6031, + 6027, { "distinct_on": [ - 6047, + 6043, "[v_player_multi_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6046, + 6042, "[v_player_multi_kills_order_by!]" ], "where": [ - 6040 + 6036 ] } ], "v_player_multi_kills_aggregate": [ - 6032, + 6028, { "distinct_on": [ - 6047, + 6043, "[v_player_multi_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6046, + 6042, "[v_player_multi_kills_order_by!]" ], "where": [ - 6040 + 6036 ] } ], "v_player_multi_kills_stream": [ - 6031, + 6027, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6054, + 6050, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 6040 + 6036 ] } ], "v_player_queue_partners": [ - 6064, + 6060, { "distinct_on": [ - 6072, + 6068, "[v_player_queue_partners_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6071, + 6067, "[v_player_queue_partners_order_by!]" ], "where": [ - 6068 + 6064 ] } ], "v_player_queue_partners_aggregate": [ - 6065, + 6061, { "distinct_on": [ - 6072, + 6068, "[v_player_queue_partners_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6071, + 6067, "[v_player_queue_partners_order_by!]" ], "where": [ - 6068 + 6064 ] } ], "v_player_queue_partners_stream": [ - 6064, + 6060, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6076, + 6072, "[v_player_queue_partners_stream_cursor_input]!" ], "where": [ - 6068 + 6064 ] } ], "v_player_weapon_damage": [ - 6082, + 6078, { "distinct_on": [ - 6090, + 6086, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6089, + 6085, "[v_player_weapon_damage_order_by!]" ], "where": [ - 6086 + 6082 ] } ], "v_player_weapon_damage_aggregate": [ - 6083, + 6079, { "distinct_on": [ - 6090, + 6086, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6089, + 6085, "[v_player_weapon_damage_order_by!]" ], "where": [ - 6086 + 6082 ] } ], "v_player_weapon_damage_stream": [ - 6082, + 6078, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6094, + 6090, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 6086 + 6082 ] } ], "v_player_weapon_kills": [ - 6100, + 6096, { "distinct_on": [ - 6108, + 6104, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6107, + 6103, "[v_player_weapon_kills_order_by!]" ], "where": [ - 6104 + 6100 ] } ], "v_player_weapon_kills_aggregate": [ - 6101, + 6097, { "distinct_on": [ - 6108, + 6104, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6107, + 6103, "[v_player_weapon_kills_order_by!]" ], "where": [ - 6104 + 6100 ] } ], "v_player_weapon_kills_stream": [ - 6100, + 6096, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6112, + 6108, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 6104 + 6100 ] } ], "v_pool_maps": [ - 6118, + 6114, { "distinct_on": [ - 6135, + 6131, "[v_pool_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6134, + 6130, "[v_pool_maps_order_by!]" ], "where": [ - 6127 + 6123 ] } ], "v_pool_maps_aggregate": [ - 6119, + 6115, { "distinct_on": [ - 6135, + 6131, "[v_pool_maps_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6134, + 6130, "[v_pool_maps_order_by!]" ], "where": [ - 6127 + 6123 ] } ], "v_pool_maps_stream": [ - 6118, + 6114, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6139, + 6135, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 6127 + 6123 ] } ], "v_steam_account_pool_status": [ - 6142, + 6138, { "distinct_on": [ - 6150, + 6146, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6149, + 6145, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 6146 + 6142 ] } ], "v_steam_account_pool_status_aggregate": [ - 6143, + 6139, { "distinct_on": [ - 6150, + 6146, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6149, + 6145, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 6146 + 6142 ] } ], "v_steam_account_pool_status_stream": [ - 6142, + 6138, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6154, + 6150, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 6146 + 6142 ] } ], "v_team_ranks": [ - 6160, + 6156, { "distinct_on": [ - 6170, + 6166, "[v_team_ranks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6169, + 6165, "[v_team_ranks_order_by!]" ], "where": [ - 6164 + 6160 ] } ], "v_team_ranks_aggregate": [ - 6161, + 6157, { "distinct_on": [ - 6170, + 6166, "[v_team_ranks_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6169, + 6165, "[v_team_ranks_order_by!]" ], "where": [ - 6164 + 6160 ] } ], "v_team_ranks_stream": [ - 6160, + 6156, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6174, + 6170, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 6164 + 6160 ] } ], "v_team_reputation": [ - 6180, + 6176, { "distinct_on": [ - 6190, + 6186, "[v_team_reputation_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6189, + 6185, "[v_team_reputation_order_by!]" ], "where": [ - 6184 + 6180 ] } ], "v_team_reputation_aggregate": [ - 6181, + 6177, { "distinct_on": [ - 6190, + 6186, "[v_team_reputation_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6189, + 6185, "[v_team_reputation_order_by!]" ], "where": [ - 6184 + 6180 ] } ], "v_team_reputation_stream": [ - 6180, + 6176, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6194, + 6190, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 6184 + 6180 ] } ], "v_team_stage_results": [ - 6200, + 6196, { "distinct_on": [ - 6232, + 6228, "[v_team_stage_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6230, + 6226, "[v_team_stage_results_order_by!]" ], "where": [ - 6219 + 6215 ] } ], "v_team_stage_results_aggregate": [ - 6201, + 6197, { "distinct_on": [ - 6232, + 6228, "[v_team_stage_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6230, + 6226, "[v_team_stage_results_order_by!]" ], "where": [ - 6219 + 6215 ] } ], "v_team_stage_results_by_pk": [ - 6200, + 6196, { "tournament_stage_id": [ - 5458, + 5454, "uuid!" ], "tournament_team_id": [ - 5458, + 5454, "uuid!" ] } ], "v_team_stage_results_stream": [ - 6200, + 6196, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6248, + 6244, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 6219 + 6215 ] } ], "v_team_tournament_results": [ - 6260, + 6256, { "distinct_on": [ - 6286, + 6282, "[v_team_tournament_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6285, + 6281, "[v_team_tournament_results_order_by!]" ], "where": [ - 6279 + 6275 ] } ], "v_team_tournament_results_aggregate": [ - 6261, + 6257, { "distinct_on": [ - 6286, + 6282, "[v_team_tournament_results_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6285, + 6281, "[v_team_tournament_results_order_by!]" ], "where": [ - 6279 + 6275 ] } ], "v_team_tournament_results_stream": [ - 6260, + 6256, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6301, + 6297, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 6279 + 6275 ] } ], "v_tournament_player_stats": [ - 6311, + 6307, { "distinct_on": [ - 6337, + 6333, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6336, + 6332, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6330 + 6326 ] } ], "v_tournament_player_stats_aggregate": [ - 6312, + 6308, { "distinct_on": [ - 6337, + 6333, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 40 + 41 ], "offset": [ - 40 + 41 ], "order_by": [ - 6336, + 6332, "[v_tournament_player_stats_order_by!]" ], "where": [ - 6330 + 6326 ] } ], "v_tournament_player_stats_stream": [ - 6311, + 6307, { "batch_size": [ - 40, + 41, "Int!" ], "cursor": [ - 6352, + 6348, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 6330 + 6326 ] } ], "__typename": [ - 83 + 84 ] } }